This latest version of GoogleTranslator utilizes Google Translate's AJAX APIs to translate text and retrieves the translation by parsing the returned JSON content. What is it? Sample Application beta Version GoogleTranslator is an object that allows you to translate text using the power of Google's online language tools. This demo allows you to easily perform a reverse translation. The app can be used as a poor man's resource translator for simple phrases, but you'd be wise to confirm the translation with a native speaker before using the results. How do I create it? You use Google Api to get translated text to Target language you specify. string sourceLanguage =sourceLang; string targetLanguage = targetLang; string urlNew = string.Format("https://translate.googleapis.com/translate_a/single?client=gtx&sl={0}&tl={1}&dt=t&q={2}", sourceLanguage, ...
Do you know Solution Tree Explorer are Searchable !!! Below ones are a saver . There's a lot of little tricks like this in Visual Studio that even the most seasoned developers sometimes miss. This phenomenon isn't limited to Visual Studio, of course. It's all software ! Here's some exceedingly useful stuff in Visual Studio (It's free to download and use, BTW) that folks often miss. SEARCH SOLUTION EXPLORER WITH CTRL+; You can just click the text box above the Solution Explorer to search all the nodes - visible or hidden. Or, press "Ctrl + ;" Type in anything and this shows results which match Even stuff that's DEEP in the beast. The resulting view is filtered and will remain that way until you clear the search. QUICK LAUNCH - CTRL+Q If there is one feature that no one uses and everyone should use, it's Quick Launch. Some blogs tell us the internal telemetry numbers show that usage of Quick Launch in the single digits or lower. Do you know...
Having worked on and with AngularJS for short period thou , here are some of the time-saving tips at the top of my mind , Just go ahead and comment out if you find it wrong or if you have any : At a high / architecture level: 1) Write your tests ! - Stop, right now.I mean it !!!. ;) Don't Ever go by this Saying !!! You can never be 100% right Always write your unit tests. In Javascript, you don't have the compiler to hand hold you and tell you did something wrong. And you will want to pull your hair out the next time your app is broken because of a missing letter.And the larger your application gets, having the comfort of making large scale changes and refactorings without worrying about broken functionality is amazing! And writing your unit tests is the only way to get there! 2) Don't put too many things on the scope . The scope is expensive, as it is the one that undergoes dirty checks. Just put exactly what will be di...
Comments
Post a Comment