Skip to content

Instantly share code, notes, and snippets.

View budhash's full-sized avatar

Budhaditya budhash

  • San Francisco Bay Area
View GitHub Profile
@budhash
budhash / org.eclipse.jetty.plist
Created October 23, 2012 05:20 — forked from mystix/org.eclipse.jetty.plist
Jetty 6 & 7 launchd plists for OSX
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0"><!-- NOTE: place this file in /Library/LaunchDaemons -->
<dict>
<key>Disabled</key>
<false/>
<key>Label</key>
<string>org.eclipse.jetty</string>
<key>ServiceDescription</key>
<string>Jetty 7</string>
@budhash
budhash / CodeDocumentJava.links
Created September 13, 2012 22:37
Links for Java Code Documentation
@budhash
budhash / Trace.aj
Created June 6, 2012 17:28
AspectJ trace
import java.io.PrintStream;
/**
*
* This class provides support for printing trace messages into a stream.
* Trace messages are printed before and after constructors and methods
* are executed.
* The messages are appended with the string representation of the objects
* whose constructors and methods are being traced.
* It defines one abstract pointcut for injecting that tracing functionality