Kelly O'Hair's Weblog (blogs.sun.com)
Monday Apr 13, 2009
JavaOne 2009 is coming soon...
Don't forget to sign up for JavaOne 2009! You can browse the Online Catalog and see the huge list of talks and sessions this year.
Just a few technical sessions on my list:
- Return of the Puzzlers: Schlock and Awe
- Asynchronous I/O Tricks and Tips
- Continuous Integration in the Cloud with Hudson
- The Modular Java™ Platform and Project Jigsaw
- "Effective Java": Still Effective After All These Years
- Debugging Your Production JVM™ Machine
- Java™ Technology Inside-Out
- Hacking the File System with JDK™ Release 7
- Defective Java™ Code: Mistakes That Matter
- DTrace and Java™ Technology: Taking Observability to the Next Dimension
- Getting More Out of the Java™ VisualVM Tool
- Object-Oriented Ant Scripts for the Enterprise
-kto
Posted at 06:20PM Apr 13, 2009 by kto in Java |
Source Repository Rules
A few commandments for dealing with Software repositories (source bases) and the build results of those repositories.
- There shalt not be binary files in the repository.
Binary files (executables, native libraries, zip files, jar files, etc.) are NOT source and should not be managed in a source repository.- Keep thy path names simple.
Directory names and filenames in the repositories should never contain blanks or non-printing characters. Certain characters such as '$' should also be avoided.- There shall be one newline convention.
The contents of all source files should follow the standard unix conventions on newlines (no ^M's).- Generated source files shall not be added as managed files.
Source files generated during the build process should not be managed files in a repository.- All output from the build shall be kept separated from the source.
All files generated during the build should land in a well defined output only directory such as build/ or dist/. The src/ directory should never get written to during the build process.
Of course the commandments will change from time to time.
Reminds me of this scene in Mel Brooks
"History of the World Part II"
movie, loved the ending "These 15 Commandments... oops... 10 Commandments!". ;^)
-kto
Posted at 09:58AM Apr 13, 2009 by kto in Java | Comments[7]











