Posts

Showing posts from January, 2016

The 10 Best Gadgets and New Tech of CES 2016

Image
By All Tricks CES 2016, the first and debatably most important consumer technology show of the year, is over. We’ve already gone over some of the  weirdest  technology from the show (and there was plenty to choose from), but now we’re going to list off the stuff from CES that actually got us excited about the future. There are some mainstays of the show such as the Oculus Rift, the HTC Vive, and new ultra super definition massive televisions—but also a lot of new stuff that was a complete surprise. These are the 10 gadgets and pieces of new technology that stood out from the bunch for us: 10. Segway Advanced Personal Robot Segways were already a little ridiculous, but now they have a robotic face on them—but hey, no CES is complete without some old fashioned robotics. This new product from Segway is somewhere between a personal assistant and a mode of transportation, which isn’t the craziest thing in the world when you think about it. Much of the potential behind such

What is Node.js?

Image
Node.js is a server side platform built on Google Chrome's JavaScript Engine (V8 Engine). Node.js was developed by Ryan Dahl in 2009 and its latest version is v0.10.36. The definition of Node.js as supplied by its  official documentation  is as follows − Node.js is a platform built on  Chrome's JavaScript runtime  for easily building fast and scalable network applications. Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient, perfect for data-intensive real-time applications that run across distributed devices. Node.js is an open source, cross-platform runtime environment for developing server-side and networking applications. Node.js applications are written in JavaScript, and can be run within the Node.js runtime on OS X, Microsoft Windows, and Linux. Node.js also provides a rich library of various JavaScript modules which simplifies the development of web applications using Node.js to a great extent. Node.js = Runtime Envi

Automatically Refresh HTML page or div after specific time Interval

There are several ways to refresh a complete HTML page after specific time interval, and same is the case with any specific Div or Span or any HTML element on a page, that we can refresh any specific part/element of HTML page without reloading the complete page. First let’s take a look at refreshing HTML page after specific time interval, this can be achieved using either JavaScript or by meta tags. A) Using Javascript: You can use either of the following scripts to refresh after every 5 secounds, say: Code I: 1 2 3 4 5 6 7 8 9 OR Code II: 1 2 3 4 5 6 7 8 9 B) Refresh page using Meta tags Its very easy, you just have to put a meta tag in head tag as follows: 1 2 3 4 5 < head >   < meta http - equiv = "refresh" content = "5" / >      < ! -- This will refresh page in every 5 seconds , change content = x to refresh page afte