Divide and conquer is algorithmic design pattern, to explained it as quickly as possible without getting too deep into the mathematical proofing and development of this type of algorithms it breaks down as follows. Divide: Break down the … [Read more...] about What are divide and conquer algorithms?
How to setup monoDevelop for ASP.NET applications in Linux / Ubuntu?
sudo apt-add-repository ppa:directhex/ppa sudo apt-get update sudo apt-get install monodevelop sudo apt-get install mono-xsp What just happened? Simply, added an external package, updated those packages, then installed mono develop then finally last part install … [Read more...] about How to setup monoDevelop for ASP.NET applications in Linux / Ubuntu?
How to count all the words in a directory recursively?
Find the location that you want to search in, change into that location. wc -w **/*.md This will do a word count recursively over the directory and count all the words in files with the extension of .md. How to count how many lines are in a git project? The … [Read more...] about How to count all the words in a directory recursively?
How to setup MySQL with java using ubuntu in netbeans?
Assumptions Virtual Ubuntu box is reachable (IE. Network) MySQL setup is running correctly Root password is available! Let's get started | Download jdbc connector Go ahead and get the jdbc connector here or just run the following command Setup … [Read more...] about How to setup MySQL with java using ubuntu in netbeans?
How to get the source code for any website using C# Video
How to get the source code for any website using C#
Here is a small console application that will read any URL, and return back the source code for that page, in this example, we are fetching the source code from coding horror. Let's get started with some shell commands Let's go ahead and save this class but let's … [Read more...] about How to get the source code for any website using C#
Screenkey – Screencast Your Keys – Ubuntu 13.04 Customizing python script with elementary OS
Why choose TDD (Test Driven Development) in a nutshell
What can go wrong with my program and how to handle it?
What are some of the problems that my program will encounter well there are some that will be at runtime an other that will be at the logic level. Here is some of the problem that might happen. IO Errors Environment Errors Logic Errors IO Errors: … [Read more...] about What can go wrong with my program and how to handle it?
Getting started with git and github on Windows
Get an username and account here Download git for windows here Get to know the command line! here … [Read more...] about Getting started with git and github on Windows