I hereby claim:
- I am orangetux on github.
- I am orangetux (https://keybase.io/orangetux) on keybase.
- I have a public key whose fingerprint is CC0D F424 ECB6 C985 2EA0 9A14 F5FA 76D1 CCBC 6F0B
To claim this, I am signing this object:
$ activator test | |
[info] Loading project definition from /home/auke/projects/virtualtherapist-web/project | |
[info] Set current project to virtualcoach-web (in build file:/home/auke/projects/virtualtherapist-web/) | |
[ERROR] [10/20/2014 12:16:11.216] [sbt-web-akka.actor.default-dispatcher-2] [akka://sbt-web/user/$a/process] null | |
akka.actor.ActorInitializationException: exception during creation | |
at akka.actor.ActorInitializationException$.apply(Actor.scala:164) | |
at akka.actor.ActorCell.create(ActorCell.scala:596) | |
at akka.actor.ActorCell.invokeAll$1(ActorCell.scala:456) | |
at akka.actor.ActorCell.systemInvoke(ActorCell.scala:478) | |
at akka.dispatch.Mailbox.processAllSystemMessages(Mailbox.scala:263) |
#!/usr/bin/env bash | |
# | |
# Increase or decrease brightness of screen. | |
# | |
# Example usage: | |
# | |
# $ edit_brightness -50 | |
# $ edit_brightness 10 | |
# | |
# Make sure /sys/class/backlight/radeaon_b10/brightness is writable. This can |
class MySocket(socket): | |
def close(self): | |
""" Closes socket and pushes the destroy button. """ | |
super(MySocket, self).close() | |
del self |
# Send notification when command has finished. | |
# Usage: | |
# n <command> | |
# | |
# Lets say you want to build something that takes a certain time: | |
# n make | |
n() { | |
"$@" | |
RETVAL=$? | |
URGENCY="normal" |
I hereby claim:
To claim this, I am signing this object:
def on_fail(func): | |
""" Return decorator which executes callback if wrapped tasks failes. | |
Usage: | |
def log_failure(): | |
print('Some failure.') | |
@task | |
@on_fail(log_failure): | |
def git_fetch(): |
# docker-compose.yml | |
app: | |
build: app/ | |
webserver: | |
image: nginx | |
links: | |
- app:app | |
# dev.yml |
I hereby claim:
To claim this, I am signing this object:
class Zone | |
def __init__(self, damper=0): | |
self.damper = damper | |
Zone() # zone.damper is 0 | |
Zone(1) # zone.damper is 1 | |
Zone(damper=2) # zone.damper is 2 |
map h goBack | |
map l <CR> | |
site '*://*.news.hackernews.com/*' { | |
unmap j | |
unmap k | |
} | |
site '*://*.reddit.com/*' { | |
unmap j |