I hereby claim:
- I am jesusgollonet on github.
- I am jesusgollonet (https://keybase.io/jesusgollonet) on keybase.
- I have a public key ASC6arQE5qua1tFTxSHWuqGmWg7g5VIeyRdN76NCr1-qxAo
To claim this, I am signing this object:
| const readline = require("readline"); | |
| const validLetters = "abc"; | |
| const validNumbers = "123"; | |
| const circle = "O"; | |
| const cross = "X"; | |
| let turn = circle; | |
| let state = [ |
| 'use strict'; | |
| exports.handler = (event, context, callback) => { | |
| const request = event.Records[0].cf.request; | |
| const headers = request.headers; | |
| if (request.uri === '/' || request.uri.indexOf('.') === -1){ | |
| console.log(JSON.stringify(request)); | |
| if (isDesktopOrTablet(headers)){ | |
| console.log('desktop or tablet') |
I hereby claim:
To claim this, I am signing this object:
| " in you .vimrc | |
| map <F12> <C-z> | |
| # in your .zshrc | |
| bindkey -s '^[[24~' 'fg\n' |
| kill_yo () { | |
| ps | grep 'grunt serve' | grep -v 'grep' | sed 's/^ *//' | cut -d ' ' -f1 | xargs kill -15 | |
| } |
| # given a list of untracked svn files like | |
| # ? trunk/content/build/backend/bin | |
| # ? trunk/content/build/backend/ban | |
| # ? trunk/content/build/backend/bun | |
| # this will create a list out of them, then svn add them | |
| # svn add trunk/content/build/backend/bin trunk/content/build/backend/ban trunk/content/build/backend/bun | |
| svn_add_untracked(){ | |
| svn status | grep '^?.*' | sed 's/? //' | xargs svn add |
| # i know, could do that in bash | |
| Dir.glob("#{Dir.pwd}/*").each do |f| | |
| system("handlebars #{f} -f #{Dir.pwd}/#{File.basename(f, ".*")}.js ") | |
| end |
| for i in `ls *.aiff`; do echo -e "$i"; sox $i $i.wav; echo -e "$i.wav"; done; |
| { | |
| "color_scheme": "Packages/Color Scheme - Default/Twilight.tmTheme", | |
| "font_size": 12.0, | |
| "ignored_packages": | |
| [ | |
| "Vintage" | |
| ], | |
| "folder_exclude_patterns": [".sass-cache"], | |
| "file_exclude_patterns": ["*.woff", "*.ttf", "*.eot",".DS_Store"] | |
| OTHER_LDFLAGS = $(OF_CORE_LIBS) $(OF_PATH)/addons/ofxOpenCv/libs/opencv/lib/osx/opencv.a | |
| HEADER_SEARCH_PATHS = $(OF_CORE_HEADERS) $(OF_PATH)/addons/ofxOpenCv/src $(OF_PATH)/addons/ofxOpenCv/libs/opencv/include $(OF_PATH)/addons/ofxOpenCv/libs/opencv/include/opencv |