This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
exec 3<>/dev/tcp/irc.uriirc.org/16667 | |
echo USER yurumechan yurumechan yurumechan \* >&3 | |
echo NICK yurumechan >&3 | |
while read T C F; do | |
echo $T $C $F | |
case $(echo $C | tr a-z A-Z) in | |
PING) | |
echo PONG $F >&3;; | |
001) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stddef.h> | |
#include <stdlib.h> | |
#include <stdint.h> | |
#include <string.h> | |
struct xv_base { ptrdiff_t xv__size, xv__alloc; }; | |
#define XV(type) struct { struct xv_base xv__base; type *xv__ptr; } | |
#define XV_BASE(xv) ((xv).xv__base) | |
#define XV_SIZE(xv) (XV_BASE(xv).xv__size) | |
#define XV_ALLOC(xv) (XV_BASE(xv).xv__alloc) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 0proxy -- a 0MQ wrapper for stdin/stdout. */ | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <unistd.h> | |
#include <signal.h> | |
#include <errno.h> | |
#include <zmq.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
from PIL import Image | |
import numpy | |
#import colorsys | |
def parse(path): | |
im = Image.open(path).convert('RGB') | |
w, h = im.size | |
score = im.crop((w*137>>8, h*35>>8, w*254>>8, h*49>>8)).resize((350, 65), Image.BILINEAR) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* MineCJK 0.1 */ | |
#define WIN32_LEAN_AND_MEAN | |
#include <windows.h> | |
#include <jni.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include "MineCJK.h" | |
static JavaVM *jvm; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
static const char VERSION[] = "Angolmois 2.0.0 alpha 2"; | |
static const char *argv0 = "angolmois"; | |
static const char *preset, *leftkeys, *rightkeys; | |
static enum mode { PLAY_MODE, AUTOPLAY_MODE, EXCLUSIVE_MODE } opt_mode = PLAY_MODE; | |
static enum modf { NO_MODF, MIRROR_MODF, SHUFFLE_MODF, SHUFFLEEX_MODF, RANDOM_MODF, RANDOMEX_MODF } opt_modf = NO_MODF; | |
static enum bga { BGA_AND_MOVIE, BGA_BUT_NO_MOVIE, NO_BGA } opt_bga = BGA_AND_MOVIE; | |
static int opt_showinfo = 1, opt_fullscreen = 1, opt_joystick = -1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* This file is a part of libseit library of theseit project. | |
* Copyright (c) 2005-2007, theseit project team. | |
* See README, COPYING and AUTHORS files for more information. | |
*/ | |
#define LIBSEIT_INTERNAL | |
#define WINDOWS_LEAN_AND_MEAN | |
#include <map> | |
#include <windows.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// crate name requires an absolute path???? (non-working) | |
mod A { pub fn x() { core::io::stdout(); } } | |
fn main() { A::x(); } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pub mod util { | |
pub mod str { | |
// NOTE: these additions will be eventually sent to libcore/str.rs | |
// and are not subject to the above copyright notice. | |
const tag_cont_u8: u8 = 128u8; // copied from libcore/str.rs | |
pub pure fn each_chari_byte(s: &str, it: fn(uint, char) -> bool) { | |
let mut pos = 0u; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct tape { mem: ~[u8], ptr: uint } | |
pure fn tape() -> tape { tape { mem: vec::from_elem(10000u, 0u8), ptr: 0 } } | |
macro_rules! bf_rec( | |
() => (); | |
(+) => (tape.mem[tape.ptr] += 1u8); | |
(-) => (tape.mem[tape.ptr] -= 1u8); | |
(>) => (tape.ptr += 1u); | |
(<) => (tape.ptr -= 1u); |