Skip to content

Instantly share code, notes, and snippets.

View soharu's full-sized avatar

오자현 / Jahyun Oh soharu

View GitHub Profile
@soharu
soharu / gist:8285507
Created January 6, 2014 16:38
classof() function
function classof(o) {
if (o === null) return "Null";
if (o === undefined) return "Undefined";
return Object.prototype.toString.call(o).slice(8, -1);
}
@soharu
soharu / args.mms
Created February 11, 2014 12:16
명령행 인자를 출력하는 MMIX 코드
argv IS $1
t IS $255
k GREG 0
LOC Data_Segment
GREG @
NewLn BYTE #a,0
LOC #100
Main SET k,0
Loop LDOU t,argv,k
BZ t,Term
@soharu
soharu / args2.mms
Last active August 29, 2015 13:56
레지스터 $0에 저장된 명령행 인자 갯수를 이용한 명령행 인자 출력
cnt IS $0
argv IS $1
t IS $255
k GREG 0
LOC Data_Segment
GREG @
NewLn BYTE #a,0
LOC #100
Main SET k,0
Loop LDOU t,argv,k
@soharu
soharu / gist:9740439
Created March 24, 2014 13:50
Print table of 500 primes
% Algorithm P: Print table of 500 primes
L IS 500 % The number of primes to find
t IS $255 % Temporary storage
n GREG 0 % Prime candidate
q GREG 0 % Quotient
r GREG 0 % Remainder
jj GREG 0 % Index for PRIME[j]
kk GREG 0 % Index for PRIME[k]
pk GREG 0 % Value of PRIME[k]
mm IS kk % Index for output lines
@soharu
soharu / gist:9760239
Created March 25, 2014 11:53
TAOCP 1.3.2 Exercise 5: silly
LOC #100
Main GETA $255,Silly
TRAP 0,Fputs,StdOut
TRAP 0,Halt,0
Silly BYTE 3+"pills"+6 % 3+'p','i','l','l','s'+6
var input = [],
s2n = function (s) { return parseInt(s, 10) },
solve = function (r, c, candy_box) {
var result = 0;
for (var i = 0; i < r; i += 1) {
for (var j = 0; j < c; j += 1) {
if (candy_box[i][j] !== 'o')
continue;
if (j > 0 && j < c - 1 && candy_box[i][j - 1] === '>' && candy_box[i][j + 1] === '<') {
result += 1;
#!/usr/bin/env python
import unittest
import os
import sys
r, s, m = 43, 22, 2**32
X = []
def setup(xs):
@soharu
soharu / ipsc-submit.py
Last active July 11, 2017 12:09
IPSC submit script
#!/usr/bin/env python
# required requests and beautifulsoup4
# pip install requests
# pip install beautifulsoup4
import os
import sys
import re
import pickle
@soharu
soharu / .bash_profile
Last active February 22, 2017 06:25
Bash setting for git
# Autocomplete Git Commands and Branch Names in Bash
#
# Download .git-completion.bash script
# curl https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.bash -o ~/.git-completion.bash
#
if [ -f ~/.git-completion.bash ]; then
. ~/.git-completion.bash
fi
# Git branch in prompt.
@soharu
soharu / process_py_image_filter.pyde
Last active April 18, 2017 12:26
Red filter in Processing.py
WIDTH = 360
HEIGHT = 240
def setup():
global img
img = None
noLoop()
size(WIDTH, HEIGHT)
frame.setResizable(True)
background(200)