Category Archives: Technology

LRU Cache implementation using ActionScript

0  

BioShock Infinite Gameplay!

Best 10 minutes of gameplay footage I’ve seen in a long, long time. 🙂

0  

My take on Java 7 features

No wonder the features look quite impressive indeed. Use of “String” in switch statement was long due! 🙂 InvokeDynamic is also a very useful feature. I have been using C# for quite some time and InvokeDynamic has certainly saved lot of time and improved readability of the code. 1) var foo = new List<int>(); 2) […]

0  

I love you, Google!

That’s just Google propagating the most popular link on that page and providing easier access to it, as opposed to intelligently realizing it’s an intro page and providing a way to skip it. Interesting concept! Now I am looking for an option to make this the default behavior! 😛

0  

Possible Concurrency solution in n-tier Web Applications

Concurrency is one of the major issues during development of n-tier Web Applications since Client-side & Server-side work independently. Concurrency is typically handled on the Server-side. We can either keep a version number or maintain a timestamp for every record. Handle Concurrency by maintaining a timestamp (Shown visually below) Handle Concurrency by maintaining a version […]

0