I hereby claim:
- I am bakerolls on github.
- I am bake (https://keybase.io/bake) on keybase.
- I have a public key whose fingerprint is E7A1 0752 4BD5 957A A6BA DC9F E801 1559 C2C2 761E
To claim this, I am signing this object:
| #!/usr/bin/fish | |
| set normal '%{F#ffffff}' | |
| set urgent '%{F#e8586e}' | |
| set good '%{F#00ff00}' | |
| set inactive '%{F#616161}' | |
| set separator $inactive' / '$normal | |
| function workspace | |
| set -l length (i3-msg -t get_workspaces | jq -r '. | length') |
I hereby claim:
To claim this, I am signing this object:
| var http = require('http'); | |
| var moment = require('moment'); | |
| var sha1h = require('sha1-hex'); | |
| var rand = function(num) { | |
| return Math.random().toString(36).slice(num); | |
| }; | |
| var base64encode = function(str) { | |
| return new Buffer(str).toString('base64') |
| function 1337wall | |
| set -l path "$HOME/.1337walls/" | |
| set -l image (curl -s 'http://1337walls.w8l.org/api/?rows=1080p&count=1&format=raw&client=de.bakerolls.osxcli') | |
| wget -q $image -P $path | |
| set -l image (basename $image) | |
| osascript -e "tell application \"Finder\" to set desktop picture to POSIX file \"$path$image\"" | |
| end |
| http = require 'http' | |
| itunes = require 'playback' | |
| entities = require 'entities' | |
| size = process.stdout.getWindowSize() | |
| api = 'http://lyrics.wikia.com/api.php' | |
| itunes.on 'playing', (track) -> | |
| search track.artist, track.name |
| <?php | |
| class Config { | |
| public static $paths = [ | |
| 'base' => '/index.php', | |
| 'views' => 'views/', | |
| 'foo' => 'bar' | |
| ]; | |
| public static function path($path) { | |
| return static::$paths[$path]; | |
| } |