Changes between Version 7 and Version 8 of HowtoGoodProgrammingTechniques


Ignore:
Timestamp:
Apr 2, 2012, 11:10:49 AM (13 years ago)
Author:
Thanatermesis
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • HowtoGoodProgrammingTechniques

    v7 v8  
    7070* trap signals, like exit errors etc
    7171
     72* the simplest procedure/option is the best, do not think in complex ways to do supa-dupa-intelligent-features if they are not needed
     73
    7274* Think on multi-work, if you use a temporal directory called /tmp/myapp, you could have conflict when another user try to use the same application which will point to the same location (so /tmp/user-myapp is a good option). Or also including the ID of the process is also a good method for avoid re-using the same directory if the application can be launched multiple times
    7375