Skip to content

Instantly share code, notes, and snippets.

View stringsn88keys's full-sized avatar

Thomas Powell stringsn88keys

View GitHub Profile
@stringsn88keys
stringsn88keys / hacking "no return"
Created January 21, 2013 20:15
The mission: remove "return" from the following function. def multiple_of_three(n) return n % 3 == 0 ? "True" : "False" end
# I figured that the "correctness" test is the existence of "return" as a word within the function, so...
def multiple_of_three(n)
eval "#{'r e tu rn'.split.join} n % 3 == 0 ? \"True\" : \"False\""
end
@stringsn88keys
stringsn88keys / mapping.rb
Last active December 15, 2015 08:49
Translation of Betterment format to Drake software format (as documented, then as discovered.)
# This is the layout that Drake had documented (coming from Betterment format)
oldLayoutJustForReference = <<-LAYOUT
0,TSJ,"T"
1,F,""
2,State,""
3,City,""
4,Date Sold (MMDDYYYY),column[:f]
5,Date Acquired (MMDDYYYY),column[:e]
6,Proceeds,column[:g]
7,Cost,column[:h]
/*
Blink
Turns on an LED on for one second, then off for one second, repeatedly.
This example code is in the public domain.
*/
// Pin 13 has an LED connected on most Arduino boards.
// give it a name:
int led = 13;
@stringsn88keys
stringsn88keys / invert_as_arrays.rb
Created September 12, 2013 16:30
Patch to invert mappings of [key, value] in Hash to mappings of [value, [key1, key2, key3]]
class Hash
def invert_as_arrays
self.inject({}) { |r,x| r[x[1]] ||= []; r[x[1]] << x[0]; r }
end
end
@stringsn88keys
stringsn88keys / update_bundles.rb
Last active May 6, 2019 20:48
My current ruby script to update vim bundles... can't remember whose blog I got the starter from at this point.
#!/usr/bin/env ruby
git_bundles = [
"https://github.com/kien/ctrlp.vim",
"git://github.com/tpope/vim-fugitive.git",
# "git://github.com/tpope/vim-rails.git",
# "git://github.com/tpope/vim-abolish.git",
# "https://github.com/rizzatti/dash.vim.git",
"https://github.com/wavded/vim-stylus.git",
"git://github.com/slim-template/vim-slim.git",
@stringsn88keys
stringsn88keys / .vimrc
Last active February 22, 2024 02:18
My current .vimrc file
"let g:powerline_config_overrides={"common":{"log_file":"/tmp/powerline.log"}}
"
" :h feature-list for a list of features that are testable
if !has("win32")
set shell=/bin/zsh
endif
call plug#begin('~/vimfiles/plugged')
Plug 'https://github.com/bhrown/brown.vim.git'
"Plug 'https://github.com/github/copilot.vim.git'
@stringsn88keys
stringsn88keys / .zlogin
Last active October 20, 2021 21:29
A section of my .zlogin to notify me when a process > 4 minutes finishes. (Mac-specific)
export PMPSVN='http://cvs.appriss.com/svn/softeng/projects/pmp'
export PATH=~/bin:$PATH
export DYLD_LIBRARY_PATH=~/instantclient_11_2
#alias gvim='mvim'
export EDITOR=/usr/local/bin/mvim
export NARWHAL_ENGINE=jsc
export RSENSE_HOME=~/.vim/bundle/rsense
export PATH="/Library/PostgreSQL/9.2/bin:/usr/local/narwhal/bin:$PATH"
@stringsn88keys
stringsn88keys / init.lua
Created April 1, 2017 00:02
Hammerspoon init script that allows 1-9 to move windows into 9ths of the screen
function move_to_third(r,c)
local win = hs.window.focusedWindow()
local f = win:frame()
local screen = win:screen()
local extents = screen:frame()
f.x = extents.x + (extents.w / 3) * c
f.y = extents.y + (extents.h / 3) * r
f.w = extents.w / 3
f.h = extents.h / 3
@stringsn88keys
stringsn88keys / init.lua
Last active July 20, 2021 17:13
Hammerspoon init script to auto-arrange for three screens.
-- https://en.wikipedia.org/wiki/Web_colors#X11_color_names
-- hs.streamdeck.init(function(connected, sd)
-- device = hs.streamdeck.getDevice(1)
-- device.setButtonColor("1", hs.drawing.color.x11.teal)
-- end)
applications = { "Messages", "iTunes", "Skype for Business", "iTerm2", "Microsoft Outlook", "HipChat", "Microsoft OneNote", "MacVim", "RubyMine", "Firefox" }
hs.hotkey.bind({"cmd", "alt", "ctrl"}, "pageup", function()
@stringsn88keys
stringsn88keys / wp-config.fake.snippet.php
Last active July 3, 2017 15:33
Fake wp-config snippet for instructions on moving from Dreamhost to Linode
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('DB_NAME', 'wp_example_com');
/** MySQL database username */
define('DB_USER', 'examplecom');
/** MySQL database password */
define('DB_PASSWORD', 'ASD9@!h12');