I hereby claim:
- I am naxoc on github.
- I am naxoc (https://keybase.io/naxoc) on keybase.
- I have a public key whose fingerprint is 389E 797D DA66 7806 51FD C5AD BE2D 9138 37E2 5687
To claim this, I am signing this object:
| // ==UserScript== | |
| // @name Github Notifications Helper | |
| // @namespace https://naxoc.net/ | |
| // @version 0.1.0 | |
| // @description Clicks things for you it just takes too long to click. | |
| // @author naxoc | |
| // @include https://github.com/notifications* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=github.com | |
| // @grant none | |
| // ==/UserScript== |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| DIR=. | |
| if [ -n "$1" ] | |
| then | |
| DIR=$1 | |
| fi | |
| # Find image files in. | |
| FILES=`find $DIR -type f | grep ".*\.\(jpg\|gif\|png\|jpeg\)"` |
| " Relative numbers in normal mode - absolute in insert mode. | |
| autocmd InsertEnter * :set number | |
| autocmd InsertLeave * :set relativenumber |
| #!/usr/bin/php | |
| <?php | |
| /** | |
| * @file | |
| * This is a Git pre-commit hook that informs you when you are | |
| * about to commit whitespace or a debug function. | |
| */ | |
| $red = "\033[1;31m"; | |
| $red_end = "\033[0m"; |
| " I like it better when the filename is used for the search. Toggle this with | |
| " <c-d> | |
| let g:ctrlp_by_filename = 1 | |
| " Map the buffer switcher. | |
| map <leader>b :CtrlPBuffer<cr> | |
| " Map the recent files. | |
| map <leader>r :CtrlPMRUFiles<cr> | |
| " Map find-tag-in-buffer. | |
| map <leader>t :CtrlPBufTag<cr> | |
| " Map find-tag-in-all-buffers. |