/**#@+ * Comment encapsulating both CONST_1 and CONST_2 */ const CONST_1 = 'some-text' const CONST_2 = 'some-two-text' /**#@-*/
Category: Snippet
Darkening/Brightening a per channel byte packed hex color
darkerColor = (color & 0xfefefe) >> 1; brighterColor = (color & 0x7f7f7f) << 1;
SVN log for a specific user
svn log URL -v | sed -n '/USER/,/-----$/ p'
Recursively remove SVN folders
find . -name .svn -exec rm -rf {} \;