Skip to content

Instantly share code, notes, and snippets.

@zokier
zokier / 2048.py
Last active August 29, 2015 14:17 — forked from justecorruptio/2048.py
import os
import tty
tty.setcbreak(0)
M = [''] * 16
def G(v):
p = [''] * 4
u = list(filter(str, v))
i = 3
@zokier
zokier / AES_over_IRC.rb
Created June 15, 2012 14:13 — forked from b1nary/AES_over_IRC.rb
AES and some more encryptions over IRC
#!/usr/bin/ruby
require 'socket'
require "base64"
require "open3"
server = "localhost"
port = "6667"
nick = "Nickname#{rand(5000)}"
channel = "#channel"