Skip to content

Instantly share code, notes, and snippets.

#include <iostream>
using namespace std;
#include "stog_pokazivaci.h"
//#include "stog_polje.h"
int kraj_rek;
bool print;
class Bar
def self.class_name
name.split(/::/)
end
end
loop { Bar.class_name }
function INTERNETS() {
# Fucking computer forgets how to connect to unsecured & WEP networks
# after going to sleep. I GET. WPA IS BETTER. SOMETIMES ITS NOT MY
# FUCKING CHOICE AND I STILL WANT INTERNET. (Reloads the wireless
# module & restarts the wireless daemon.)
sudo rmmod wl
sudo /etc/rc.d/wicd stop
sudo modprobe wl
sudo /etc/rc.d/wicd start
}
Don't try this at home.
how to do stuff
totally hotness
require 'logger'
log = Logger.new(STDOUT)
threads = []
10.times do
threads << Thread.new do
loop do
log.info("foo")
dear gist: are you slow today?
testing
foobar
dammit pj
module Jabber
def self.read
size = $stdin.read(2).unpack("n").first
$stdin.read(size).split(':')
end
def self.write(success)
answer = success ? 1 : 0
token = [2, answer].pack("nn")
$stdout.write(token)
--- driver.rb-orig 2008-06-26 17:06:27.000000000 -0700
+++ driver.rb 2008-06-26 18:22:58.000000000 -0700
@@ -1,47 +1,171 @@
module God
-
- class DriverEvent
- attr_accessor :condition, :at
+ class TimedEvent
+ include Comparable
+