Technical stuff Requirements are like water. They're easier to build on when they're frozen.

Archive for the ‘Resources’ Category

List of Emacs Commands

08.14.2011 · Posted in Resources

C = Control M = Meta = Alt|Esc Basics C-x C-f “find” file i.e. open/create a file in buffer C-x C-s save the file C-x C-w write the text to an alternate name C-x C-v find alternate file C-x i insert file at cursor position C-x b create/switch buffers C-x C-b show buffer list C-x ...

hCard brief introduction

11.19.2010 · Posted in Quick and dirty, Resources

Below you can find a brief list to get you started. reading start point, have a look at some examples, or simply generate yours for more advanced information, refer to the semanticweb.org validate it place a link to http://h2vx.com/vcf/your.website.com/contact-page/ or to http://feeds.technorati.com/contacts/http://your.website.com/contact-page/ , replacing your.website.com/contact-page/ with your correct online URL discover hCards in the web ...

The PHP code conventions I use

05.22.2009 · Posted in Resources

<?php // Did you notice the full-style opening PHP tags? /************************************************************** * Variable Naming conventions ************************************************************* * - Use data type as prefix inside the name * Eg: $sName instead of just $name * - Try to use as descriptive names as possible * Eg: $arProductList instead of just $arList **************************************************************/ /************************************************************** * Basic Datatypes ...

Writing code is an art, not a simple day-job

12.01.2008 · Posted in Methodology, Resources

If builders built buildings the way programmers wrote programs, then the first woodpecker that came along would destroy civilization. Gerald Weinberg Copy and paste is a design error. David Parnas   Think about how you develop your own code. Do you rush into writing a piece of code and use comments later, if you have ...