Simple Select Option Search Box with MySQLi Using Chosen.js

Submitted by razormist on
This is a Simple Select Option Search Box created using chosen.js and MySqli. A simple select option element become more cool using this plugin.Just try it yourself, and use it to your project. Just download the source code below, Enjoy Coding! For more information about chosen.js, click here

The Unreal Engine Developer Course - Learn C++ & Make Games

Submitted by admin on
Would you like to learn to code from scratch and to do it the fun way by making computer games in Unreal Engine using C++, the industry standard language? This course The Unreal Engine Developer Course - Learn C++ & Make Games has over 36,000 students enrolled. In the first section you’re going to start with a game called bulls and cows. A fun and addictive word guessing game. It will focused

Teach Yourself and Become a Professional Web Developer

Submitted by admin on
The Best Way to Learn Is By Doing Do you want to build great looking interactive website that your users will love? This course The Complete Web Developer take you step-by-step with no coding experience. First you will learn the basic of creating a web page using HTML, CSS and JavaScript. Next you will learn more advanced coding like jQuery, Bootstrap and WordPress. For the server side, you’re

Clustering Node.js

Submitted by admin on
Node.js is single-threaded. As every design decision this one has its benefits and drawbacks. A benefit is - it is significantly harder to "shoot yourself in a foot" with multithreaded code. With languages like C++ or Java, multithreading is a separate subject that is rather advanced and even considered to be a form of a black magic by some developers. So in JavaScript you don't even have to think about scary terms like "deadlock", "race condition" or "memory barrier". What's the downside?

Complete Python Bootcamp: Go From Zero to Hero in Python

Submitted by admin on
For a developer like me, it’s a must to maintain what we already know while learning new things at the same time. I've been a PHP developer for many years and more language has now been developed and developers of different groups opted on using what they can adapt into. Generally speaking, Python language remarks with this. For years, Python seems to overlap PHP more especially in developing

Writing UDP Client/Server Application with Node.js

Submitted by admin on
Writing UDP server with Node.js Different application require different design of networking protocols. Everything that is built for web is using HTTP (recently WebSockets and WebRTC too for real-time data). If your clients are not browsers and you need reliable and guaranteed channel your choice is TCP/IP. There's however one more protocol that is often used for the cases when the speed is more important that delivery guarantees and ordering: UDP. UDP stands for Unified Datagram Protocol and it shines in the applications like fast-paced online gaming.

Building TCP/IP Applications with Node.js

Submitted by admin on
Most of the times Node.js is used for HTTP-based servers. There are times however when you need to go one level deeper, and write your software based on TCP/IP protocol instead of HTTP. Indeed, HTTP was originally designed as a request-response protocol, and it is text-based. TCP/IP is more "raw": it is binary (meaning, more effective) and also it is full-duplex persistent connectinon (which again means it is more effective). If you are building an application that is not targeted specifically at browsers, there's a good chance that TCP/IP will be a better choice to you than HTTP.

Real-time Geographical Data Visualization with Node.js, Socket.IO and Leaflet

Submitted by admin on
Data visualisation is becoming an increasingly important subject. As the complexity an volumes of data increase, it is getting harder and harder to make sense of bare arrays of numbers without relevant visualisation models. Let me give you a good example. Right now I work in China. Few months ago there appeared a new startup: bycicle sharing service that used GPS sensors on each bike to track it in the city. Now let's imagine, you need analyse how evenly your bikes are distributed around the city and how many of them are in motion right now.