Skip to content

Instantly share code, notes, and snippets.

View libsteve's full-sized avatar

Steven Brunwasser libsteve

View GitHub Profile
@libsteve
libsteve / README.md
Last active August 29, 2015 13:56
Let There Be Shibes

ShibeEnding is an artistic venture into the meaning of what it means to have meaningful meaning and to ponder such meaningful meaning.

ShibeEnding is an experiment with jQuery to test its limits and unearth its purpose and to reveal its meaningful meaning.

@libsteve
libsteve / detabify.rb
Created October 5, 2013 06:50
A quick script to take a file in from stdin and write it to stdout, replacing all tabs with four spaces.
#! /usr/bin/env ruby
# take standard in text and replace all the tab instanes with four spaces
# print the resulting test to standard out
line = ""
while (line = gets) != nil do
line.gsub! "\t", " "
puts line
end