This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo -n 0 >> /proc/acpi/fan/FANG/state # turn it on | |
echo -n 3 >> /proc/acpi/fan/FANG/state # turn it off |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
adb shell pm setInstallLocation 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd $DIR_TO_SERVE_FROM; | |
python -m SimpleHTTPServer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
java -cp /home/nico.kruger/.m2/repository/org/hsqldb/hsqldb/2.1.0/hsqldb-2.1.0.jar org.hsqldb.util.DatabaseManagerSwing | |
# jdbc:hsqldb:hsql://localhost:9005/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo -n 24 > /sys/class/backlight/acpi_video0/brightness |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
vmware-modconfig --console --install-all |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -d "username=c&password=c&email=c" http://localhost:8080/admin/add # post data |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var exec = require("child_process").exec, | |
spawn = require("child_process").spawn, | |
command = "mocha -R json tests/*-test.js", | |
_ = require("underscore"); | |
var child = exec(command, function (error, stdout, stderr) { | |
var output, STATUS, ICON, status; | |
if (stderr) { | |
STATUS="BROKEN"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
guard 'shell' do | |
watch(%r"tests/.*test\..*") {|m| | |
`node bgtests.js` | |
} | |
watch(%r"js/.*js") {|m| | |
`node bgtests.js` | |
} | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import tempfile | |
import os | |
import libxml2 | |
RECIPIENTS="[email protected]" | |
for line in [x.strip() for x in open("projects.list").readlines()]: | |
GIT_URL = "git://git.rorotika/" + line | |
GROUP_ID = "A" | |
ARTIFACT_ID = "A" |
OlderNewer