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:
" 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 |
" 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 |
# 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 -> |
I hereby claim:
To claim this, I am signing this object:
/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' |
#!/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 |
{ | |
"definitions": { | |
"objectTypes": { | |
"person": 10, | |
"money": 20, | |
"event": 30, | |
"product": 40 | |
}, | |
"linkTypes": { | |
"from": -10, |
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 |
#!/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! |
ZSH_THEME_GIT_PROMPT_PREFIX="🍍 (%{$fg[yellow]%}" | |
ZSH_THEME_GIT_PROMPT_SUFFIX=" %{$reset_color%}" | |
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%}) %{$fg[red]%}☁︎%{$reset_color%} " | |
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%}) %{$fg[blue]%}☂%{$reset_color%} " | |
ZSH_THEME_SVN_PROMPT_PREFIX=$ZSH_THEME_GIT_PROMPT_PREFIX | |
ZSH_THEME_SVN_PROMPT_SUFFIX=$ZSH_THEME_GIT_PROMPT_SUFFIX | |
ZSH_THEME_SVN_PROMPT_DIRTY=$ZSH_THEME_GIT_PROMPT_DIRTY | |
ZSH_THEME_SVN_PROMPT_CLEAN=$ZSH_THEME_GIT_PROMPT_CLEAN | |
vcs_status() { |