Skip to content

Instantly share code, notes, and snippets.

View slindberg's full-sized avatar
💭
I'm a mechanical engineer now

Steven Lindberg slindberg

💭
I'm a mechanical engineer now
View GitHub Profile
@slindberg
slindberg / .bash_profile
Created January 20, 2011 19:27
Super-basic bash profile
# everything is in .bashrc
source ~/.bashrc
# personal bin folder trumps all
if [ -d ~/.bin ]; then
export PATH=:~/.bin:$PATH
fi
@slindberg
slindberg / .vimrc
Created January 20, 2011 19:24
Vim config file
set ls=2 " allways show status line
set number " show line numbers
set ruler " show line current line number/column
set showmatch " show matching brackets/braces/parantheses
set showcmd " display incomplete commands
set ttyfast " smoother changes
set tabstop=2 " numbers of spaces of tab character
set shiftwidth=2 " numbers of spaces to (auto)indent
set autoindent " auto indentation
set expandtab " use spaces instead of evil tabs
@slindberg
slindberg / .gitconfig
Created October 6, 2010 23:55
Git config file
[core]
# global gitignore
excludesfile = /path/to/global/.gitignore
# this is the default, but make sure anyway :)
editor = /usr/bin/vim
# make pager use tabstops of 4 spaces instead of 8 (also don't wrap lines)
pager = /usr/bin/less -S -x4
[user]
# information about you that will appear in commit history
name = <Your Display Name>

Keybase proof

I hereby claim:

  • I am slindberg on github.
  • I am slindberg (https://keybase.io/slindberg) on keybase.
  • I have a public key whose fingerprint is B8DE 7D75 20BF AE0F 4BBF 5301 B3D8 0328 DA30 4283

To claim this, I am signing this object:

@slindberg
slindberg / if-all-exists.js
Last active August 29, 2015 13:57
Bound conditional Handlebars helpers for Ember
import ifConditionHelper from 'myapp/helpers/if-condition';
/**
* Logical AND Existence Conditional Block
*
* Usage: {{#if-all-exists field1 field2}}Either field1 or field2 is truthy{{/if-all-exists}}
*
* Executes the given block if all arguments are defined
*/
export default function() {
@slindberg
slindberg / README.md
Last active August 29, 2015 13:56
Model 'Fragments' in Ember Data