Category Archives: CODEX

Install setuptools for django

settools在https://pypi.python.org/pypi/setuptools/
  1. wget http://pypi.python.org/packages/source/s/setuptools/setuptools-0.6c11.tar.gz
  2. tar zxvf setuptools-0.6c11.tar.gz
  3. cd setuptools-0.6c11
  4. sudo python setup.py build
  5. sudo python setup.py install

 

Notes on Programming in C by Rob Pike

Notes on Programming in C

    Rob Pike                  
February 21, 1989

Introduction

     Kernighan and Plauger’s The Elements of Programming Style was an important and rightly influential book.  But sometimes I feel its concise rules were taken as a cookbook approach to good style instead of the succinct expression of a philosophy they were meant to be.  If the book claims that variable names should be chosen meaningfully, doesn’t it then follow that variables whose names are small essays on their use are even better?  Isn’t MaximumValueUntilOverflow a better name than maxval I don’t think so.
Continue reading Notes on Programming in C by Rob Pike