Skip to content

Instantly share code, notes, and snippets.

View lifthrasiir's full-sized avatar

Kang Seonghoon lifthrasiir

View GitHub Profile
@lifthrasiir
lifthrasiir / irc.sh
Created December 13, 2012 03:48 — forked from anonymous/irc.sh
#!/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)
@lifthrasiir
lifthrasiir / xv.c
Last active December 10, 2015 10:38
Simplistic extensible vector (XV)
#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)
@lifthrasiir
lifthrasiir / 0proxy.c
Last active December 10, 2015 21:38
0proxy -- a 0MQ wrapper for stdin/stdout.
/* 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>
@lifthrasiir
lifthrasiir / extract.py
Created January 17, 2013 16:38
Score data extraction from Jukebeat screenshot (ripples theme only)
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)
/* 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;
@lifthrasiir
lifthrasiir / angolmois-main.c
Last active December 12, 2015 02:29
비교분석 C vs. Rust
#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;
@lifthrasiir
lifthrasiir / encoding_system_win32.cpp
Created February 8, 2013 06:23
starlight/text/encoding_system_win32.cpp
/*
* 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>
@lifthrasiir
lifthrasiir / ex1a.rs
Created February 11, 2013 13:53
Rust import problems (valid as of 19dfec2)
// crate name requires an absolute path???? (non-working)
mod A { pub fn x() { core::io::stdout(); } }
fn main() { A::x(); }
@lifthrasiir
lifthrasiir / util.rs
Created February 11, 2013 15:28
Utility portions of Angolmois rust edition
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;
@lifthrasiir
lifthrasiir / bf.rs
Created February 13, 2013 12:16
Brainf*ck in Rust (sort of, does not work)
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);