f0g.blogspot.com
-- FoG: Unknown videos
http://f0g.blogspot.com/2008/03/unknown-videos.html
Saturday, March 22, 2008. Just found this in Orkut, it is showing double the number of your actual favorite videos. Subscribe to: Post Comments (Atom). View my complete profile. Variable code, language, concepts, etc;}.
f0g.blogspot.com
-- FoG: Google Reader
http://f0g.blogspot.com/2006/11/google-reader.html
Friday, November 24, 2006. Yesterday was "yet another day" of revelation for me. I finally decided fiddling with. And obviously the experience was "wow". This is the first aggregator I am using, but again I dont think I would look around for anything more. I have my shared articles. Subscribe to: Post Comments (Atom). View my complete profile. Variable code, language, concepts, etc;}.
f0g.blogspot.com
-- FoG: Trends and Zeitgeist
http://f0g.blogspot.com/2006/11/trends-and-zeitgeist.html
Friday, November 03, 2006. Having come across these two features of Google called me to start up a new log of my google discoveries. Lists some of the top (key)words that the world is hunting for. A look at . 160;will always give a better idea of the feature. Is one of the several other innovative offerings by the research labs of google. Subscribe to: Post Comments (Atom). View my complete profile. Variable code, language, concepts, etc;}.
f0g.blogspot.com
-- FoG: Orkut - Not meant for kids
http://f0g.blogspot.com/2006/11/orkut-not-meant-for-kids.html
Sunday, November 12, 2006. Orkut - Not meant for kids. You must be 18 years or older to use the orkut.com service. By registering for the orkut.com service, you represent and warrant that you are 18 or older and that you have the capacity to understand, agree to and comply with these Terms of Service. So, all those who are not 18 may have to look into some other site for socializing. Http:/ blog.outer-court.com/archive/2006-11-10.html#n44. Subscribe to: Post Comments (Atom). View my complete profile.
f0g.blogspot.com
-- FoG: Customizable Google
http://f0g.blogspot.com/2006/11/customizable-google.html
Wednesday, November 08, 2006. Yesterday I have been googling whole day for Web 2.0 sites and the sites tracking . The activities in these "2.0" portals. Having joined late into the foray, i discovered. A lot of active participation by different vendors. Some of the sites i personally found interesting were yoono, grazr, reddit, digg, . Technorati etc. However coming back to "Google" i found a new feature of Google . Monikered " Google Co-op. I personally found this Web2.0 search. View my complete profile.
varuntechlog.blogspot.com
{variable code, maths, language, concepts, puzzles, etc;}: February 2008
http://varuntechlog.blogspot.com/2008_02_01_archive.html
Variable code, maths, language, concepts, puzzles, etc;}. Tuesday, February 12, 2008. Tiger(JDK 5) has introduced a lot of features and in turn lots more to dig into. Here I want to explain the issues that arise due to equality comparisons and Autoboxing/Auto-unboxing. Since, equality operator (= ) can be used with reference variables and primitive types, the first question is what happens when we equate reference wrapper variable with its corresponding primitive type. Integer iObj = new Integer(i);.
varuntechlog.blogspot.com
{variable code, maths, language, concepts, puzzles, etc;}: April 2008
http://varuntechlog.blogspot.com/2008_04_01_archive.html
Variable code, maths, language, concepts, puzzles, etc;}. Tuesday, April 8, 2008. Good read on IoC and DI. Http:/ martinfowler.com/bliki/InversionOfControl.html. Http:/ martinfowler.com/articles/injection.html. Something that cleared my thought process (an excerpt from one of the articles). Inversion of Control is a key part of what makes a framework different to a library. Subscribe to: Posts (Atom). View my complete profile. Travel template. Template images by enot-poloskun.
varuntechlog.blogspot.com
{variable code, maths, language, concepts, puzzles, etc;}: Array Product
http://varuntechlog.blogspot.com/2012/06/array-product.html
Variable code, maths, language, concepts, puzzles, etc;}. Sunday, June 3, 2012. Q: Given an unsorted array of I of N integers, find an array O of N integers such that O[i] is the product of all integers in I except I[i]. Solve without using division. 1 Break the product into two parts as O[i] = (I[0] * I[1] * . * I[i-1]) * (I[i 1] * . * I[N-1]). 2 Calculate first part by iterating over I from 0 to N-1. 3 Multiply the values from step 2 with the second part by iterating over I from N-1 to 0.
varuntechlog.blogspot.com
{variable code, maths, language, concepts, puzzles, etc;}: June 2012
http://varuntechlog.blogspot.com/2012_06_01_archive.html
Variable code, maths, language, concepts, puzzles, etc;}. Thursday, June 28, 2012. Given a string of length N, rotate the string by K units. Eg. rotation of abcdef by 2 units will result in cdefab. 1) Using a temp Array. 2) 1 shift at a time. 3) Juggling algorithm - uses GCD(N,K) outer loop and inner loop till cycle is encountered. 4) Gries algorithm - divide and conquer. 5) Reversal algorithm - revert individual blocks and then revert the full string. The first multiple (also known as LCM – least ...