Skip to content

Instantly share code, notes, and snippets.

@vormwald
vormwald / closet_data.js
Last active August 25, 2017 14:35
Add closet data and handlebars to closetitems!
var topsData = [
{
"item": "V-Neck Sweater",
"color": "Black",
"season": "Spring, Summer, Fall, Winter",
"occasion": "Everyday",
"image": "images/blackvnecksweater_tops.jpg"
},
{
"item": "Chambray Shirt",
@vormwald
vormwald / Q1.markdown
Created August 11, 2016 17:18
Screener

When beginning a new project, the most important thing is to view it from the eventual end user's perspective. Determining how my software can improve a user's day-to-day life is my goal in any software project. To gain perspective of their workflow and goals, I seek out and solicit feedback from potential users early and often in the process.

Initially I try to capture the essence of the project on paper – taking notes, sketching interfaces, and drawing out data flow diagrams. This gives me a reference when speaking with and soliciting feedback from users. Once the concepts begin to gel, I'll transfer paper notes to a digital format. I store

Keybase proof

I hereby claim:

  • I am vormwald on github.
  • I am vormwald (https://keybase.io/vormwald) on keybase.
  • I have a public key ASCF_1DTPnAxeUS1Ygdag61uOQBZlcN9MSgJ_8Ej7mZpqgo

To claim this, I am signing this object:

@vormwald
vormwald / nginx.conf
Created July 21, 2013 19:31
My Wordpress nginx setup
# This is a site specific file, everything else is taken care of in /etc/nginx/nginx.conf
server {
listen 80;
server_name www.sitename.com;
return 301 http://sitename.com$request_uri;
}
server {
listen 80; ## listen for ipv4; this line is default and implied
@vormwald
vormwald / .zshrc
Created April 12, 2013 17:08
My .zshrc for VPSs
# Set up the prompt
autoload -Uz promptinit
promptinit
prompt walters
export PROMPT=$'%{\e[0;%(?.32.31)m%}>%{\e[0m%} '
setopt histignorealldups sharehistory
@vormwald
vormwald / Gemfile
Last active December 10, 2015 10:59 — forked from flomotlik/Gemfile
gem 'unicorn'
namespace.views.MyWizard = Backbone.Views.extend({
initialize: function() {
_.bindAll(this, 'render', 'wizardMethod');
}
render: function() {
this.wizardMethod();
return this;
},
@vormwald
vormwald / application_helper.rb
Created January 10, 2012 02:09 — forked from thatfunkymunki/application_helper.rb
Make will_paginate generate HTML that Zurb Fundation will render nicely, fixed for will_paginate 3.0.2
# Based on https://gist.github.com/1205828, in turn based on https://gist.github.com/1182136
# Modified for Zurb Foundation
class BootstrapLinkRenderer < ::WillPaginate::ActionView::LinkRenderer
protected
def html_container(html)
tag(:ul, html, container_attributes)
end
def page_number(page)