Recent Posts

HTTrack Website Copier

Download The Entire Website HTTrack is a free (GPL, libre/free software) and easy-to-use offline browser utility. It allows you to download a World Wide Web site from the Internet to a local directory, building recursively all directories, getting HTML, images, and other files from the server to your computer. https://www.httrack.com/page/2/

Continue Reading

Brainwave Entrainment – Yet Undiscovered Panacea

Our brain has nerve cells that trigger electrical signals all the time, forming distinct arrangements which are called brainwave patterns. These eminently unique patterns are closely connected to our thoughts, moods, emotions, concentration, biological chemistry, almost everything we do, and everything that we are. Our body contains an autonomic entrainment system that synchronizes our brainwaves […]

Continue Reading

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