Skip to content

Instantly share code, notes, and snippets.

View sassembla's full-sized avatar
😍
be gentle.

Toru sassembla

😍
be gentle.
View GitHub Profile
@sassembla
sassembla / gwtOptionInstructions.txt
Created July 14, 2012 16:33
GWT 2.5rc commandline options
//gwt option instructions of gwt 2.5rc
-port Specifies the TCP port for the embedded web server (defaults to 8888)
-whitelist Allows the user to browse URLs that match the specified regexes (comma or space separated)
-blacklist Prevents the user browsing URLs that match the specified regexes (comma or space separated)
-logdir Logs to a file in the given directory, as well as graphically
-logLevel The level of logging detail: ERROR, WARN, INFO, TRACE, DEBUG, SPAM, or ALL
-gen Debugging: causes normally-transient generated types to be saved in the specified directory
-codeServerPort Specifies the TCP port for the code server (defaults to 9997)
-war The directory into which deployable output files will be written (defaults to 'war')
@sassembla
sassembla / RubyTest
Created October 29, 2011 01:26
Simple TestUnit(will evaluate when run)
require 'test/unit'
class MyTest < Test::Unit::TestCase
def test_myTestCase
test = "here comes"
# test = nil
assert(test, msg = (nomsg = true;nil))
end