- Write. A letter, a note, a poem, a story, directions, a warning.
- Draw.
- Origami. Make something decorative of the paper.
- Paper airplane.
- Name tag, or table tent
- Paper football
- Paper cut weapon
- Fake telescope
- Bad napkin
- Funnel for dry items
class Task | |
include DataMapper::Resource | |
property :id, Serial | |
property :done, Boolean | |
property :command, String | |
end |
source 'rubygems' | |
gem 'rack/jekyll' | |
gem 'rack/rewrite' |
# Good Evening | |
this this I wrote this I wrote I wrote this is a poem | |
It's been 3 day and 21 hours | |
The poem might be five lines. | |
# Last accessed 2011-05-06 18:29:08 | |
# This is not BROOKLYN | |
There the sun rises at 5:46 am. | |
# This is not RUDOLPH |
require 'rubygems' | |
require 'sinatra' | |
require './index' | |
run Rack::URLMap.new("/" => CoolApp.new, "/ohnice" => BetterApp.new) |
# Take arguments and make them a true thing on the internet | |
# | |
# http://true-cause-i-read-it-on-the-internet.net/ | |
# | |
# make true <string> - Add statement to a url on true-cause-i-read-it-on-the-internet.net | |
module.exports = (robot) -> | |
robot.hear /make true (.+)/i, (msg) -> | |
assertion = msg.match[1] or 'cats-are-your-friends' | |
assertion = assertion.split(' ').join('-') |
In this document I use bold text to denote the name
There are 1,188 files in the ThesisTXT_round2 folder, and currently 1,094 Thesis
records on itparchive.com. This mismatch is based on file names that were not properly parsed by the original upload script.
Each Thesis
can have multiple Documentations
. A Documentation
stores the URL of the PDF, some admnistrative information about the state of the PDF and a text field titled paper
with the contents of the corresponding .txt file. We will assume that all of the text files from the second round of OCR are better than all of the first round. And since some Documentations
might not match to the new text files if we relied on the new text file replacing the contents of paper
there could be a few Documentations
which don't have their paper
field updated. So the first step is to erase the paper
field on every Documentation
.
# Copy & Paste Code | |
## Eric Meyer's Reset | |
############################################ | |
/* http://meyerweb.com/eric/tools/css/reset/ | |
v2.0 | 20110126 | |
License: none (public domain) | |
*/ |
An annotated to do list for itpirl.com sorted by priority (top is highest priority).
- Fix Calendar Authentication : Calendar events are broken when hosted on Heroku.
- Event view : Sorting & time formatting of event views, categorization, filtering
- Initiate IRC Client per user : All chat traffic is going through one instance of the IRC Client. This is non ideal. Instantiate a new client for every visiter to the website.
- User List : Key to knowing who is in the room
#!/usr/bin/env sh | |
## | |
# This is script with usefull tips taken from: | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# | |
# install it: | |
# curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
# |