Tag: programming

  • Setup a Django VM with Vagrant, VirtualBox, and Chef

    If you’ve decided that you want to learn the Django framework, but you don’t know where to begin, you’ve come to the right place. In this guide we’ll be walking step-by-step through the setup of a Django development VM. By the time we’re done we’ll have used a variety of amazing open-source tools to create a…

  • Tip: Easily Find Files In The Current Directory

    If we insert the following function into our .bashrc or .zshrc we can then easily run what I call a “quick find” on the current working directory. # qfind – used to quickly find files that contain a string in a directory qfind () { find . -exec grep -l $1 {} \; return 0…

  • Install CakePHP on Ubuntu 10.10 and 11.10

    CakePHP is a framework that allows for rapid PHP development. I recently installed it on one of my home test servers and there were a few steps specific to an Ubuntu install that were required but that were not clearly outlined in the official documentation. The version of the Apache web server that gets installed…

  • Download the Linux Source Code

    It is said that the best way to learn how to program is to read and modify other people’s code. Through an open, relatively uninhibited distribution of code, the open source community inherently promotes this learning method. The C programming language is arguably the most archetypal of programming languages, in the sense that seemingly all…

  • The Art and Balancing Act of Flexibility

    The programs that run on our computers are dynamic.  Rather quickly, they can be shaped and formed to suit the needs of end users. As long as software bloat/feature creep is kept under control, customization and modification remain two critical ingredients in the evolution of any application.  Who will make these changes, and how easy will…