Skip to content

Instantly share code, notes, and snippets.

View Pusungwi's full-sized avatar

Yeonjae Lee Pusungwi

View GitHub Profile
@Pusungwi
Pusungwi / ret.txt
Created March 17, 2018 10:42
게임 리뷰 간단표
폴리 브릿지 리뷰중에 있길래 빠르게 번역해서 만들어 봄.
앞으로 이걸로 쓸 생각.
☐ 애들용
☑ 전체
☐ 캐주얼 게이머
☐ 하드코어 게이머
☼ 그래픽 :
@Pusungwi
Pusungwi / keybase.md
Created January 14, 2018 07:37
Keybase Proof

Keybase proof

I hereby claim:

  • I am pusungwi on github.
  • I am pusungwi (https://keybase.io/pusungwi) on keybase.
  • I have a public key ASB1kBzYGhthJbmnw7ufqUH9SU50XjJUAvco8NzV_Vk6GQo

To claim this, I am signing this object:

@Pusungwi
Pusungwi / faker.md
Last active November 5, 2017 03:05
사기꾼 일대기

사기꾼 일대기

하스스톤에서 사기 진탕 친 리플레이만 모아 놓는 곳.

@Pusungwi
Pusungwi / id3changer.py
Created August 15, 2017 06:54
배철수의 고우영 삼국지 변환시 쓰인 스크립트
import re
import os
import eyed3
if __name__ == '__main__':
track_number = 1
outer_re = re.compile('\((.+)\)')
for filepath in os.listdir():
@Pusungwi
Pusungwi / admin.php
Last active February 27, 2018 07:01
10시간 영상 랜덤 리다이렉트 (PHP)
<?php
//================================================================================
//10시간 영상 랜덤 리다이렉트
//Yeonjae Lee
//모티브 : http://stackoverflow.com/admin.php (wp-login.php)
//================================================================================
$listOfTenHour = array("https://www.youtube.com/watch?v=wWKkWEMMzJI", // 암욜맨 10시간
"https://www.youtube.com/watch?v=I-0_r348twY", // 스폰지밥_월요송(월요일좋아) (10시간)
"https://www.youtube.com/watch?v=CLrwlD6TryY", // 진진자라 지리지리자 10시간 (10 Hours)
"https://www.youtube.com/watch?v=lwr8P0Z-7HI", // 노라조 "니팔자야" 10 Hours (NORAZO - Ni Paljaya)
@Pusungwi
Pusungwi / readme.md
Last active April 29, 2020 07:08
Cards Against Humanity 한글로 즐기기
@Pusungwi
Pusungwi / shuffler.py
Last active July 19, 2017 02:30
귀찮다 다 귀찮아 파이썬아 골라줘라
#encoding=utf-8
#귀찮은 닝겐들을 위한 선택기
#게임이든 밥이든 귀찮을떄 파이썬 랜덤신한테 빌어봅시다.
#쓴놈 : Yeonjae Lee
#사용 방법 예 : 미국트럭과 망타2, 건-젼, 스타2 중에서 무슨 게임을 해야 할지 모르겠고 5번 먼저 걸린 게임을 하고 싶다. 하면
#choice_please(['미국트럭', '망타2', '건-젼', '스타2'], 5) 라고 고치고 컨트롤 + 엔터 누르시면 됩니다.
#먼저 걸린 대상 수를 너무 많이 넣으면 Killed 메세지가 나오면서 실행이 안될 수 있습니다. (10000번까진 해봤습니다.)
using System;
using System.Net;
using System.IO;
using System.Drawing;
using System.Drawing.Imaging;
using System.Runtime.InteropServices;
using Microsoft.Win32;
namespace HimawariDownloader
@Pusungwi
Pusungwi / himawari.ps1
Last active February 4, 2016 03:05 — forked from MichaelPote/himawari.ps1
Windows Powershell Script to download the latest image from the Himawari-8 satelite, combine the tiles into a single image, convert to jpg and then set as the desktop background.
#
# Himawari-8 Downloader
#
#
#
# This script will scrape the latest image from the Himawari-8 satellite, recombining the tiled image,
# converting it to a JPG which is saved in My Pictures\Himawari\ and then set as the desktop background.
#
# http://himawari8.nict.go.jp/himawari8-image.htm
#
@Pusungwi
Pusungwi / take_ownership.rs
Last active August 29, 2015 14:21
Take ownership example
fn take(v : Vec<i32>) {
//take ownership
}
fn main() {
let v = vec![1, 2, 3];
take(v);
println!("v[0] is {}", v[0]); // <- ERROR
}