Post archive for ‘Technology’
Evaluating JSON Data
Evaluating JSON data is the most fundamental and common use-case for any modern ajax based web application. The most commonly used method to evaluate json strings has always been eval() but there are few other methodologies that I have learnt recently.
1. eval()
var jsonData = window["eval"]( "(" + jsonString + ")" );
Support: All Browsers variants
2. new Function()
var [...]
Apple iPhone launches on Aug 22nd ???
New Delhi, Aug 6 (PTI) Apple’s iPhone, the touch screen handset that acquired a cult status in the US and other western countries, will be available to Indian mobile users through Bharti Airtel at the stroke of midnight on August 21, giving competitors like Nokia, Samsung and others a run for their money.
Millions [...]
30 Best CSS Examples
The best way to learn CSS is through trying out or learning from what others have tried. Recently, I chose the later to understand CSS better. Of the many lying out there on the internet, I found this link the best suited for different approaches of modern CSS techniques
30 Exceptional CSS Techniques and Examples
Hope these [...]
Compiled PHP Applications
As the Web has evolved, it has changed from a collection of static pages to an environment filled with randomly and dynamically changing content. In producing dynamic content among all the web technologies PHP has been the most developer-friendly programming language. PHP generally runs in a web-server taking PHP code as its input and creating [...]
CSS Position-ing
I always was ambiguous on how css position property actually work. I went on a journey on the internet to find answears for some of my questions. Here is where I landed
Learn CSS Positioning in Ten Steps
The modern design techniques like these have made the internet page lot lighter with just using div’s. I would [...]