Using Azure DocDB with Node.js

Submitted by admin on
Moving your project to a cloud might be a difficult task especially since there are so many different cloud services out there. AWS is the most popular one and Azure is a very close competitor. In this article I will show you how to start using Azure, namely its NoSQL database service - DocDB. NOTE: Azure is a great platform, however it has significantly less tutorials and examples available online (compared to AWS). Before we start to write the code we will need to prepare the dependencies.

How to Do Pattern Matching in VB.NET

Submitted by ashok05 on
HOW TO DO PATTERN MATCHING IN VB.NET Searching for a particular text is one of the important applications in text processing. Searching becomes more difficult when the size of text increases. Regular expression is a method used to reduce the time and complexity of searching. Regular expressions also called as RegEX which describes the pattern (set of strings which needs to be searched). HOW TO

Programmer's Joke

Submitted by coderz on
It's a common thing as a programmer to run into some weird code that non-programmers are having difficulty to comprehend. Take for example the above-shown code where a single character can totally change what the code means. This is just one of the few instances that only C language based coder can understand.

Learn How to Create Video Game with Unity and C#

Submitted by admin on
Learn to Code by Making Games - The Complete Unity Developer Have you also experience exerting all efforts on finding for a course that will teach you to develop a game and end up not wanting to continue it anymore? We’ve been through the same boat. For years, I can always find myself surfing through the internet while I’m having my morning coffee until late night when the lights are already down

Convert Bootstrap into WordPress Theme and Earn Thousands of Dollars

Submitted by admin on
WordPress Theme is a multi-million business on the net. According to the WordPress Commerce report published by the WP Engine, out of over $267,000,000 WordPress Marketplace revenue, WordPress Theme has a total of $232,541,864 revenue generated. A huge potential for all programmers to create and sell their Theme products and take a good slice of this very lucrative market. Are you a programmer

Implementation of Data Structures and Algorithms

Submitted by Solomon Yaw on
This program was developed during my one semester course in Data Structures and Algorithms. It was developed with Microsoft Visual Studio 2012. It provides a GUI implementation of sorting searching algorithms, stacks, queues and binary tree. This program will be relevant to computer science students around the world who want to know how data structures and algorithms are implemented using

Uploading data to Amazon S3 from Node.js

Submitted by admin on
What can be simpler than uploading file to the server and saving it to hard drive, right? Open read stream, read bytes, open write stream, write bytes, done. Now let's explore the same question but from a high-load high-availability service perspective. You're designing new Instagram, where will you store the photos? Remember, at a bare minimum you need to make sure that a failure to a single node in a data center will not interrupt your service (you can't allow to lose those precious cat pictures that your users are uploading).