I hereby claim:
- I am eli-oat on github.
- I am eli_oat (https://keybase.io/eli_oat) on keybase.
- I have a public key ASD3EfgVqnMzQObl5EV104NtVgnQwMtvndPBqTW7T6V1Two
To claim this, I am signing this object:
| #!/usr/bin/env php | |
| <?php | |
| // Script to postpone your own email. Parses IMAP folders and moves emails to a folder named "Today" | |
| // Run this from a crontab, for example at 6 AM | |
| // BSD License | |
| // (C) Carlos Fenollosa, 2011-2016 | |
| // Read more about this script: http://cfenollosa.com/blog/a-simple-script-to-postpone-your-own-email.html | |
| // Please leave comments and feedback for bugs and ideas! |
| cd $HOME | |
| ln -s `which php54` ~/bin/php | |
| export PATH=$HOME/bin:$PATH | |
| curl -sS https://getcomposer.org/installer | php54 | |
| echo -e "\n# Composer\nalias composer=\"php54 \$HOME/composer.phar\"" >> $HOME/.bash_profile | |
| source $HOME/.bash_profile |
| { | |
| "definitions": { | |
| "objectTypes": { | |
| "person": 10, | |
| "money": 20, | |
| "event": 30, | |
| "product": 40 | |
| }, | |
| "linkTypes": { | |
| "from": -10, |
| #!/bin/bash | |
| # These functions require a CouchDB instance | |
| rawurldecode() { | |
| # This is perhaps a risky gambit, but since all escape characters must be | |
| # encoded, we can replace %NN with \xNN and pass the lot to printf -b, which | |
| # will decode hex for us |
| /usr/bin/plutil -convert xml1 -o - ~/Library/Safari/Bookmarks.plist | grep -E -o '<string>http[s]{0,1}://.*</string>' | grep -v icloud | sed -E 's/<\/{0,1}string>//g' |
I hereby claim:
To claim this, I am signing this object:
| # Your init script | |
| # | |
| # Atom will evaluate this file each time a new window is opened. It is run | |
| # after packages are loaded/activated and after the previous editor state | |
| # has been restored. | |
| # | |
| # An example hack to log to the console when each text editor is saved. | |
| # | |
| # atom.workspace.observeTextEditors (editor) -> | |
| # editor.onDidSave -> |
| " AS OF 2017-05-29 | |
| set nocompatible | |
| filetype off | |
| set number | |
| " typography and whatnot, note that this is a non-standard font | |
| " instal hack: https://github.com/powerline/fonts | |
| set guifont=Hack:h18 | |
| set background=light |
| " make mvim feel like ia writer | |
| " touch .vim/writer.vim | |
| " then call when editing markdown :source ~/.vim/writer.vim | |
| set background=light | |
| set nonu | |
| set laststatus=0 | |
| colorscheme default | |
| hi FoldColumn guibg=white | |
| set foldcolumn=12 |
| <?php | |
| # Licensed under a CC0 1.0 Universal (CC0 1.0) Public Domain Dedication | |
| # http://creativecommons.org/publicdomain/zero/1.0/ | |
| $mysite = 'https://adactio.com/'; // Change this to your website. | |
| $token_endpoint = 'https://tokens.indieauth.com/token'; | |
| $_HEADERS = array(); | |
| foreach(getallheaders() as $name => $value) { |