Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View stevebargelt's full-sized avatar
🏠
Working from home

Steve Bargelt stevebargelt

🏠
Working from home
View GitHub Profile
{
"editor.tabSize": 2,
"editor.insertSpaces": true,
"workbench.iconTheme": "vs-seti",
"files.autoSave": "onWindowChange",
"editor.fontFamily": "Fira Code",
"editor.fontSize": 14,
"editor.fontLigatures": true,
"terminal.integrated.fontFamily": "Inconsolata for Powerline",
"terminal.integrated.fontSize": 18,
@stevebargelt
stevebargelt / recruiter_response.md
Last active January 11, 2020 22:52 — forked from dougireton/recruiter_response.md
I've started responding to recruiters with this list of requirements

Company Requirements

I'm definitely not looking for work. However to provide some helpful guidance for hiring like-minded engineers and engineering leaders, I would only consider working for a company if it met these requirements:

  1. Concrete, measurable plan to increase the number of women and minorities in engineering roles.
  2. Commitment to using and contributing to open source.
  3. Meaningful work with clear linkage between work and company goals.
  4. Demonstrated commitment to ethical business practices, e.g. B corp certification.
  5. Commitment to career development including yearly conferences.
[http]
[core]
excludesfile = /Users/steve/.gitignore_global
editor = code --wait
[diff]
tool = default-difftool
[difftool "default-difftool"]
cmd = code --wait --diff $LOCAL $REMOTE
[merge]
tool = meld
#!/usr/bin/env bash
export PATH=/usr/local/var/rbenv/shims:/usr/local/opt:/usr/local/bin:/usr/local:/Users/x392/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/git/bin
export PATH=$PATH:/Users/x392/code/xiki/bin:/Volumes/fob
if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi
# Path to the bash it configuration
export BASH_IT=$HOME/.bash_it
#from http://natelandau.com/my-mac-osx-bash_profile/
# ---------------------------------------------------------------------------
#
# Description: This file holds all my BASH configurations and aliases
#
# Sections:
# 1. Environment Configuration
# 2. Make Terminal Better (remapping defaults and adding functionality)
# 3. File and Folder Management
# 4. Searching
# 5. Process Management

Keybase proof

I hereby claim:

  • I am stevebargelt on github.
  • I am stevebargelt (https://keybase.io/stevebargelt) on keybase.
  • I have a public key whose fingerprint is 2615 500E 2A69 FD33 7BBF 1AC3 5827 2854 05EC AD02

To claim this, I am signing this object:

@stevebargelt
stevebargelt / Podfile
Last active August 29, 2015 14:07
Podfile Base
source 'https://github.com/CocoaPods/Specs.git'
# Uncomment this line to define a global platform for your project
# platform :ios, "8.0"
# Realm DB... You need to add both “Realm” & “RealmSwift” for swift Projects
use_frameworks!
pod 'Realm', :git => 'https://github.com/realm/realm-cocoa.git', :branch => 'swift-2.0'
pod 'RealmSwift', :git => 'https://github.com/realm/realm-cocoa.git', :branch => 'swift-2.0'
target "processTest" do
@stevebargelt
stevebargelt / .gitignore
Last active August 29, 2015 14:04
.gitignore for my R projects
# Ignore datasets
data/
tidy.txt
.csv
.zip
.RDS
# R Ignores #
######################
@stevebargelt
stevebargelt / getData.R
Created July 26, 2014 15:21
Default Data Download Snippet in R
#Change the working directory
setwd("~/Google Drive/code/ThisProject")
# Change these three variables
datapath <- "./data"
filename <- "housing.csv"
fileUrl <- "http://d396qusza40orc.cloudfront.net/getdata%2Fdata%2Fss06hid.csv"
######
if (!file.exists(datapath)) {