I hereby claim:
- I am pyrho on github.
- I am pyrho (https://keybase.io/pyrho) on keybase.
- I have a public key whose fingerprint is 5713 1F64 2829 BC4C 20EE 44F2 643C 9F9C E508
To claim this, I am signing this object:
| # vim:fileencoding=utf-8:ft=conf | |
| # You can include secondary config files via the "include" directive. | |
| # If you use a relative path for include, it is resolved with respect to the | |
| # location of the current config file. Note that environment variables | |
| # are expanded, so ${USER}.conf becomes name.conf if USER=name | |
| # For example: | |
| # include other.conf | |
| # Fonts {{{ |
| on alfred_script(q) | |
| do shell script "/Applications/Kitty.app/Contents/MacOS/kitty @ --to unix:/tmp/mykitty new-window --new-tab" | |
| tell application "kitty" to activate | |
| tell application "System Events" to keystroke q | |
| tell application "System Events" | |
| key code 36 -- enter key | |
| end tell | |
| end alfred_script |
| const gulp = require('gulp'); | |
| const ts = require('gulp-typescript'); | |
| const sourcemaps = require('gulp-sourcemaps'); | |
| const mocha = require('gulp-mocha'); | |
| const del = require('del'); | |
| const gutil = require('gulp-util'); | |
| const config = { | |
| outputDirectory: './build', | |
| inputSourceFiles: [ |
I hereby claim:
To claim this, I am signing this object:
| var Promise = require('bluebird'); | |
| function testFailReject(){ | |
| return Promise.reject(new Error('An error happened')); | |
| } | |
| testFailReject() | |
| .error(function(error){ |