Feb 172013
 

Actually the complete title of this blog entry should be “The most popular programming languages on GitHub”. I was reading an excellent post on 2012 Language correlation on GitHub and I was surprise to see couple of language names, which I never heard before. Anyways, give a try to this list here and lets see how many you know?

Feb 062013
 

Few days back, while discussing Win8 Apps with a colleague, we came across these pretty known yet confusing words  – Globalization and Localization. And today while reading this blog, I got the clear understanding of these words.

  • Globalization: The process of designing and developing an app to function in multiple geographic areas and languages.
  • Localization: The process of adapting your app (including text and non-text elements) to meet the language, cultural, and political expectations of a specific local market.

 

Read the above blog for better understanding on these two topics (with respect to Windows 8).

 Posted by at 10:13 pm
Feb 062013
 

Few days back, while discussing Win8 Apps with a colleague, we came across these pretty known yet confusing words  – Globalization and Localization. And today while reading this blog, I got the clear understanding of these words. Globalization: The process of designing and developing an app to function in multiple geographic areas and languages. Localization: [ more.....]

 Posted by at 10:13 pm
Dec 172012
 
Thesaurus files for Full Text Search in SQL

Recently I was working on an assignment where I need to implement Full text search in SQL. I found this feature quite interesting as well as powerful. Full-text queries can search not only the words you provide in a query but they can search for synonyms as well (Search engine way). No need to use [ more.....]

 Posted by at 12:38 pm  Tagged with:
Dec 162012
 

Today while surfing stackoverflow, I found an interesting thread on the usage of Enumerable.Range and an interesting code stuff. The Enumerable class is having lots of interesting static methods. One such method is Range which returns a sequence of int within the specified range. So now you can write the old for loops like (Copied [ more.....]