Changes between Version 7 and Version 8 of HowtoGoodProgrammingTechniques
- Timestamp:
- Apr 2, 2012, 11:10:49 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
HowtoGoodProgrammingTechniques
v7 v8 70 70 * trap signals, like exit errors etc 71 71 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 72 74 * 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 73 75