Skip to content

Instantly share code, notes, and snippets.

@Sait2000
Sait2000 / aheui-aheui.aheui
Created May 21, 2019 04:22
reconstructed aheui.aheui from aheui.aheuis
붛ㅇ여ㅇ여ㅇ여ㅇ여ㅇ여ㅇ여ㅇ여ㅇ여ㅇ여ㅇ여ㅇ여ㅇ여ㅇ여ㅇ여어
뿌ㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇ
북ㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇ
불ㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇ
뚜ㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇ
투ㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇ
유ㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇ
아우ㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇ
추ㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇ
뿌ㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇㅇ
@Sait2000
Sait2000 / get_key.js
Created July 2, 2017 04:20
태고 자동화?
// get_key.js
var c = (() => {
const targets = new Map([
[' ', 0],
['f', 1],
['j', 1],
['d', 2],
['k', 2],
]);
@Sait2000
Sait2000 / urls.txt
Last active August 12, 2018 02:31
언젠가 한번 보고 싶은데 지금은 아닌 것들. 그러니까 읽기 목록
http://www.programmingforbeginnersbook.com/blog/top-down-bottom-up-approaches-to-learning-programming/
https://jmendeth.com/blog/reverse-engineering-flash/
http://www1.spms.ntu.edu.sg/~frederique/lecture1ws.pdf
@Sait2000
Sait2000 / show-file-ext.ps1
Created May 11, 2017 02:45
제발 확장자 숨기지 말아줘
Set-ItemProperty "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" HideFileExt 0
@Sait2000
Sait2000 / prepack_input.js
Created May 10, 2017 02:51
bf interpreter in js
(function () {
function bf(code, input) {
const loop_mapping = new Map
const code_points = [...code]
const input_code_points = [...input].reverse().map(c => c.codePointAt())
let res = ''
@Sait2000
Sait2000 / logic-traces.py
Last active August 21, 2016 14:20
Logic Traces Solver
#!/usr/bin/env python
from __future__ import print_function
"""
Usage example:
input via stdin like:
4 . . . . . . 3 .
. . . . . . . . 7
. 5 . . . . 3 . .
. . . 7 . . . . .
. 5 . . . . . . 7
밯빠부싼쓔사
차우져사싹순퍼선희맣석
차빠삭뿌샤쏙쟈쏜
@Sait2000
Sait2000 / tvple_downloader.py
Last active April 11, 2018 16:03
Download video from tvple.com
#!/usr/bin/python3
#coding: utf-8
# Download video from tvple.com
import re
import requests
import bs4
@Sait2000
Sait2000 / gist:520d1a68b53789ae59c5
Created September 10, 2014 11:51
Naver Open English User Info Extracter
import json
from collections import OrderedDict
import requests
urls = [
'http://dict-channelgw.naver.com/endict/ko/enko/user/invite/entry/list.dict',
'http://dict-channelgw.naver.com/endict/ko/enko/user/create/entry/list.dict'
]
def walk(it):