Sunday, February 26, 2012

Beginning iOS Application Development with HTML and JavaScript

Game and Graphics Programming for iOS and Android with OpenGL ES 2.0




MonoTouch.Dialog


http://docs.xamarin.com/ios/tutorials/MonoTouch.Dialog

Nice option implemented in MonoTouch 5 to auto generate iPhone dialog controllers & views. All UI features like descriptions, input types are defined either by attributes or in Linq.XML fasion.

Wednesday, August 10, 2011

Google search options: [allintitle:]

http://www.google.com/intl/gn/help/operators.html

allintitle:

If you start a query with [allintitle:], Google will restrict the results to those with all of the query words in the title. For instance, [allintitle: google search] will return only documents that have both "google" and "search" in the title.

This functionality is also available through Advanced Search page, under Advanced Web Search > Occurrences.

intitle:

If you include [intitle:] in your query, Google will restrict the results to documents containing that word in the title. For instance, [intitle:google search] will return documents that mention the word "google" in their title, and mention the word "search" anywhere in the document (title or no). Note there can be no space between the "intitle:" and the following word.

Putting [intitle:] in front of every word in your query is equivalent to putting [allintitle:] at the front of your query: [intitle:google intitle:search] is the same as [allintitle: google search].

Tuesday, August 31, 2010

Razor Syntax in ASP.NET MVC

ScottGu has nice article "Introducing “Razor” – a new view engine for ASP.NET"
It all looks cool in VS2010 with syntax highlighting but I wonder how readable this style is in text viewer...

Should try it in next ASP.NET project.