Last Thing you copied and pasted.

Adil

DevBest CEO
May 28, 2011
1,276
714
web: target/start -Dhttp.port=${PORT} ${JAVA_OPTS} -DapplyEvolutions.default=true -Ddb.default.driver=org.postgresql.Driver -Ddb.default.url=${DATABASE_URL}
 

Sway

Ruby and Python are married.
Dec 19, 2010
194
76
db = MySQLdb.connect(host='localhost', port=3306, user="root", passwd="x3ju4k4me", db="_p")
 

Ecko

23:37 [autobots] -!- eckostylez [[email protected]]
Nov 25, 2012
1,396
960
recording = !recording;
if (recording) {
try {
frames.clear();
File file = getEmptyFile(true);
Recorder recorder = new Recorder(windowWidth, windowHeight + 11, Config.MOVIE_FPS, frames, file.getAbsolutePath(), "video.quicktime");
displayMessage("Recording movie to " + file.getName(), 3, 0);
new Thread(recorder).start();
}
catch (Exception e) {
}
} else {
frames.add(null);
displayMessage("Movie saved.", 3, 0);
}
 

Users who are viewing this thread

Top