Monthly Archive: August 2011

Aug 21

Export Mysql data to CSV with PHP

Want to export your Mysql data to a CSV(comma seperated value) file? In this tutorial learn how to export your data from Mysql into a CSV file. Fist off we start by creating the connection to the Mysql database: $host: this is the location for the Mysql server it can be a hostname or an …

Continue reading »

Aug 21

Win32 Multithreading and Synchronization

Introduction: This tutorial will explain how to create and manage multiple threads in Windows. This is an advanced tutorial; the reader should be familiar with Win32 programming. The need for responsive user-centric programs is a good reason to create programs that use multiple threads. By creating multiple threads, a program can seem to do many …

Continue reading »

Aug 19

QuickSort algorithm, code for Java, C++

Quick Sort at work

Quicksort is a fast sorting algorithm, which is used not only for educational purposes, but widely applied in practice. On the average, it has O(n log n) complexity, making quicksort suitable for sorting big data volumes. The idea of the algorithm is quite simple and once you realize it, you can write quicksort as fast …

Continue reading »

Aug 14

Snow Theme Website design with Photoshop

31

Get your Photoshop on and follow this step by step tutorial of building a snowboarding themed website layout. The design we’ll be creating takes inspiration from the typical style of the snowboarding culture, with grungy textures and distressed brush marks adding detail to the design. We’ll start by producing a core grid to base the …

Continue reading »

Aug 10

How To Get Traffic To Your Website With Backlinks

You want to start building a business online so you have a website but you don’t have enough visitors and that’s where backlinks comes in. Backlinks are a great, low budget way to get more eyes on your websites or capture pages. First of all what are backlinks? You can think of a backlink like …

Continue reading »

Aug 10

Top Tips For Building A Website

To create a successful website, there are many things to consider in order for things to run smoothly, get the most out of your website and optimize your web presence. Before building your site or getting a designer to build it, you have to make sure you plan it properly, poor planning of a website …

Continue reading »

Aug 10

Create a Captcha with PHP

captch_generation_and_matching_STEPS

We’re going to learn how how CAPTCHA (CompletelyAutomated Public Turing test to tell Computers and Humans Apart) works and how it minimizes automatic sign-up of forms. We will also be creating a simple CAPTCHA script in PHP to illustrate this. Basically CAPTCHA works in the following manner: Create Random Value: Some random string is generated, random values are often hard to guess …

Continue reading »

Aug 10

5 Reasons To Use A Content Management System

The contemporary times have witnessed the new trends when it comes to web designs and creating a web site. Gone are the days when the building of a website is done through hard coding. Today, all roads point to Content Management Systems (CMS) as the new way website building should go. Content Management Systems (CMS) …

Continue reading »