Python Archive

  • Learn CouchDB by Doing

    CouchDB Surfing: Learn by Doing Apache CouchDB

    Get up to speed quickly with simple installation, configuration, and code examples. There are some great books on how to get under the hood of CouchDB, but for now I’m going to just get in and get my hands dirty.

    Full Story

  • linux, apache2, mysql5, php, perl, python

    Install Apache, MySQL, PHP, and PHPMyAdmin

    Anyone under the sun who wants/needs a development platform for themselves should be using (imo) a LAMP server. It's fast, easy and can grow with you and your projects regardless of your choice of distribution.

    Full Story

  • Practical Python Programming #1

    Practical Python Programming #1

    Welcome to my Practical Python Programming post, hopefully this will be the first of many. If you have been following my 'An Introduction to Python Programming' posts series, then you may already know that in this post we are going to be having some fun. We are going to be creating a text based 'Guess the Number' game.

    Full Story

  • An Introduction to Python Programming #4

    An Introduction to Python Programming #4

    Welcome to my forth Python Programming introduction post. In this post we are going to be looking at lists and random numbers.If you have used another programming language before, then you have probably heard of an array, well, a python list is just an array, and in the same way you can have multi dimensional lists.

    Full Story

  • An Introduction to Python Programming #3

    An Introduction to Python Programming #3

    Hi, welcome to my third Python programming introduction post. In post #2 we looked at the basics of flow control using conditional statements. In this post we will be taking a look at another fundamental aspect of flow control; loops. A loop is a way of running a particular block of code more than once [...]

    Full Story

  • An Introduction to Python Programming #2

    An Introduction to Python Programming #2

    Welcome to my second python programming post. In the first post we looked at the print statement used to print to the screen, and we also looked at basic user input via the raw_input() function. We also looked at basic variable declaration and useage. In this post we will be taking a look at some [...]

    Full Story