- [For the Birds](http://nycbirdlist.org/)
- [Code monkeys](http://djapp.org/)
- [Freelancer](http://tnycnt.com/)
- [Sword of Truth](http://leafychat.com/)
- [wwswd](http://wwswd.com/)
- [East meets West](http://whohasmy.archlinux.ca/)
- [crunkd](http://getcrunkd.com:88/)
- [Ra](http://www.ntrie.com/)
- [arctangent](http://rudestword.com/)
- [Slugs](http://flicasa.com/)
#!/usr/bin/ruby | |
## | |
# Remove any duplicate tracks in iTunes | |
# PJ Hyett was here 11/2008 | |
framework "Cocoa" | |
framework "ScriptingBridge" | |
itunes = SBApplication.applicationWithBundleIdentifier("com.apple.iTunes") |
/** Fast String - Voice Technology | |
* Simple char[] substitute with faster appender. | |
* Fernando Gregianin Testa <[email protected]> | |
* v0.1 - Usando no provider v2. 2007-02-22 | |
*/ | |
#ifndef FSTRING_ | |
#define FSTRING_ | |
#include <stdlib.h> |
From c6966ade4141e695159b3b38bdc60a7a82d30775 Mon Sep 17 00:00:00 2001 | |
From: Pieter de Bie <[email protected]> | |
Date: Thu, 25 Sep 2008 22:25:46 +0200 | |
Subject: [PATCH] HistoryView: Add a method to put a commit online | |
--- | |
GitX.xcodeproj/project.pbxproj | 4 +++ | |
Images/spinner.gif | Bin 0 -> 1924 bytes | |
PBGitCommit.h | 2 + | |
PBGitCommit.m | 9 +++++++ |
#!/usr/bin/env ruby | |
# | |
# Git log to iCalendar | |
# | |
# Written by Dmitry Chestnykh, 5 Aug 2008 | |
# Public domain | |
# | |
# Usage: | |
# | |
# cd git-repo |
{:one => 1, :two => 2}.select {|k,v| k == :one} #=> [[:one, 1]] | |
{:one => 1, :two => 2}.reject {|k,v| k == :one} #=> {:two=>2} |
Hi, my name is ByunTae from South Korea. I have been playing Starcraft since 1998 and I was born and raised in Korea. I'm 100% full blooded Korean, meaning I have been gifted with unparallel talent to master any video game, particularly, Starcraft: Brood War. I'm also experienced in Counter-Strike, I am able to perform bunny hops, my best score on a public 32 player game was 171-2 with 170 kill streak. I'm offering my expertise in Starcraft to be taught to non-Koreans that wishes to have the skill of a Korean player. I have advised and coached many professional gamers such as Im Jae Dong, Park Myung Soo, Ma Jae Yoon, and more. Boxer and I were great friends until he started using my dropships to gain his fame. I started training other players to be on par with Boxer and eventually surpassing Boxer. He is no longer the best player thanks to my contribution to rest of the players. I did not compete in pro gaming because they KTF did not agree with my seven figure contract demand.
Things I will be teaching in
person = Person.new | |
person.name | |
person.name = name | |
person.setFirstName(first, lastName:last) |
require "benchmark" | |
require "fileutils" | |
def test | |
path = "/tmp/faketest" | |
FileUtils.mkdir_p("#{path}/public/stylesheets") | |
FileUtils.mkdir_p("#{path}/public/javascripts") | |
FileUtils.mkdir_p("#{path}/public/images") | |
FileUtils.mkdir_p("#{path}/views/templates") | |
FileUtils.mkdir_p("#{path}/views/layouts") |
$ python | |
Python 2.5.1 (r251:54863, Jan 13 2009, 10:26:13) | |
[GCC 4.0.1 (Apple Inc. build 5465)] on darwin | |
Type "help", "copyright", "credits" or "license" for more information. | |
>>> exit() | |
$ |