Skip to content

Instantly share code, notes, and snippets.

View willwnekowicz's full-sized avatar
💭
reticulating splines.

William Wnekowicz willwnekowicz

💭
reticulating splines.
  • San Francisco, CA
View GitHub Profile
{
"basics": {
"name": "William Wnekowicz",
"label": "Software Engineer and Executive",
"picture": "",
"email": "[email protected]",
"phone": "(973) 953-3764",
"website": "https://williamwnekowicz.com",
"summary": "Executive in Venture Capital skilled in product engineering, data warehousing, ML, finance, fund accounting, portfolio operations, and more, looking for a role in growth equity to support sourcing, due diligence, and portfolio operations with the use of modern tools and approaches.",
"location": {
#!/bin/sh
# Alot of these configs have been taken from the various places
# on the web, most from here
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
# Set the colours you can use
black='\033[0;30m'
white='\033[0;37m'
red='\033[0;31m'
@willwnekowicz
willwnekowicz / keybase.md
Created September 25, 2014 18:25
Verifying Myself

Keybase proof

I hereby claim:

  • I am flysonic10 on github.
  • I am williamwnekowicz (https://keybase.io/williamwnekowicz) on keybase.
  • I have a public key whose fingerprint is 391C 35EE F01B 196A E643 5197 3ED0 56BC 38B2 70A0

To claim this, I am signing this object:

@willwnekowicz
willwnekowicz / kill_rails_s.zsh
Last active August 29, 2015 13:57
ZSH Script to Kill Rails Server process and restart it. Type 'k' instead of running 'lsof -wni tcp:3000', looking at the PID and running 'kill -9 <<PID>>', then finally 'rails s' again. Install this plugin under .oh-my-zsh > custom > plugins. Use this to resolve the following error: *A server is already running. Check /pids/server.pid. Exiting*
k(){
kill -9 $(lsof -wni tcp:3000 -t);
rails s;
}