Quantum Computing – The Big Wave

There is a lot of hum about Quantum Computing in the tech. world, peculiarly since the last decade. Before we describe what actually Quantum computing is lets comprehend the traditional computing systems. Limitation of Traditional a.k.a. Classical Computers Traditional computers, the machines we use (or take advantage of) in our daily life including our laptops, […]

Continue Reading

Windows Command Prompt Tricks

Enter multiple commands at onceAdding && between commands will let you enter multiple lines at once to be executed in succession. e.g, tasklist && netstat -b List every device driver on your PCThe following command line displays the list of device drivers on your PC driverquery /FO list /v Output results to text file or […]

Continue Reading

JQuery Technique: Parse JSON data

A couple of very simple and intuitive code examples to parse data received in JSON format: var resultJSON = ‘{“FirstName”:”John”,”LastName”:”Doe”,”Email”:”johndoe@johndoe.com”,”Address”:”123 dead drive”}’;var result = $.parseJSON(resultJSON);$.each(result, function(k, v) { //display the key and value pair alert(k + ‘ is ‘ + v);}); Or var obj = $.parseJSON(resultJSON);for (var prop in obj) { alert(prop + ” is […]

Continue Reading

Top 5 PHP Frameworks

PHP, being the most powerful and popular Server-side Scripting Language in the world, which provides large spectrum of Frameworks. These Frameworks come with different advantages and functionalities for developers having different levels of expertise and ‘taste’. Furthermore, the most popular PHP Frameworks have significantly evolved only in the last a few years. It’s not really […]

Continue Reading