Skip to content

Instantly share code, notes, and snippets.

View HelloWorld017's full-sized avatar
๐Ÿ’
muguet - Hanahuruhibi,

nenw* HelloWorld017

๐Ÿ’
muguet - Hanahuruhibi,
View GitHub Profile
@HelloWorld017
HelloWorld017 / anti-watermark.txt
Created February 2, 2018 03:18
Remove watermarked photos from google search
-iStock -shutterstock -123rf -depositphotos -PRIMMERSIVE -Dreamstime -Alamy -Stockfresh -featurepics -Colourbox -VectorStock -ClipDealer
@HelloWorld017
HelloWorld017 / build3.js
Created February 8, 2018 06:53
A script to create a structure source
const build3 = (name) => {
const PascalCase = name[0].toUpperCase() + name.slice(1).replace(/_([a-z])/, (match, p1) => p1.toUpperCase());
return `
import Structure from "./Structure";
import ${PascalCase}Model from "../../models/objects/${name}.obj";
import ${PascalCase}Material from "../../models/objects/${name}.mtl";
import ${PascalCase}Texture from "../../models/objects/${name}.png";
class Structure${PascalCase} extends Structure{
constructor(world, x, y, z) {
@HelloWorld017
HelloWorld017 / crawl.py
Created May 13, 2018 14:11
Using SVM to classify houses in seoul and daejeon
import pandas as pd
import requests
import json
import os
# From https://gist.github.com/giftbott/6ab91e81a8e5ff67c631fcc7c97f1483
class ZigbangDl:
def __init__(self):
self.rooms = []
@HelloWorld017
HelloWorld017 / README.md
Created June 2, 2018 11:23
Twitch Emote Crawler

Twitch Emote Crawler

  1. Set streamers variable.
  2. Set TWITCH_CLIENT_ID env to Client-Id from twitch requests. (Chrome Developer Tools > Network)
  3. npm i
  4. node index
@HelloWorld017
HelloWorld017 / tgdkr-img.user.js
Created June 16, 2018 01:30
ํŠธ๊ฒŒ๋”์—์„œ ๊ธ€์„ ์ƒˆ ํƒญ์—์„œ ์—ด์—ˆ์„ ๋•Œ ์ด๋ฏธ์ง€๊ฐ€ ๋กœ๋”ฉ๋˜์ง€ ์•Š๋Š” ์˜ค๋ฅ˜๋ฅผ ์ˆ˜์ •ํ•ฉ๋‹ˆ๋‹ค.
// ==UserScript==
// @name tgd.kr Show Images when Open In New Tab
// @namespace http://tampermonkey.net/
// @version 0.1
// @description ํŠธ๊ฒŒ๋”์—์„œ ๊ธ€์„ ์ƒˆ ํƒญ์—์„œ ์—ด์—ˆ์„ ๋•Œ ์ด๋ฏธ์ง€๊ฐ€ ๋กœ๋”ฉ๋˜์ง€ ์•Š๋Š” ์˜ค๋ฅ˜๋ฅผ ์ˆ˜์ •ํ•ฉ๋‹ˆ๋‹ค.
// @author Khinenw
// @match *://*.tgd.kr/*
// @grant none
// @run-at document-end
// ==/UserScript==
@HelloWorld017
HelloWorld017 / files-background.less
Created July 7, 2018 14:07
Khinenw's Atom theme
li[is=tree-view-file].file.entry.list-item:before {
position: absolute;
content: '';
top: 0;
left: -100%;
width: 300%;
height: 100%;
z-index: 0;
background-color: #009688;
}
@HelloWorld017
HelloWorld017 / npmbrowse.user.js
Last active January 21, 2019 07:34
Add Files tab in npm
// ==UserScript==
// @name NPM Browse Files
// @namespace https://gist.github.com/HelloWorld017/3a5460ce41db861d4d0f4550289b10c7/
// @version 1.0
// @description Browse files on npm
// @author Khinenw
// @match *://*.npmjs.com/package/*
// @grant none
// ==/UserScript==
@HelloWorld017
HelloWorld017 / KAIST_courseRegistration.md
Last active February 28, 2025 05:07
์นด์ด์ŠคํŠธ ์ˆ˜๊ฐ•์‹ ์ฒญ ๋ฝ€๊ฐœ๊ธฐ

์นด์ด์ŠคํŠธ ์ˆ˜๊ฐ•์‹ ์ฒญ

NetFunnel

  • ํŠธ๋ž˜ํ”ฝ์„ ๊ด€๋ฆฌํ•˜๊ธฐ ์œ„ํ•œ ํ•˜๋‚˜์˜ ์†”๋ฃจ์…˜, ํ”ํžˆ ๋ณด๋Š” ์ ‘์†์ž ๋Œ€๊ธฐ๊ฐ€ ๊ทธ๊ฒƒ
  • https://traffic.kaist.ac.kr/ ์—์„œ ๋™์ž‘ ์ค‘
    • ํ˜น์‹œ ๋ชจ๋ฅด์ง€๋งŒ ์„œ๋ฒ„ ์‹œ๊ฐ„์„ ์—ฌ๊ธฐ์„œ ์ œ๊ณตํ•ด์ค€๋‹ค.

GET https://traffic.kaist.ac.kr/ts.wseq

Global Params:

  • opcode: ์‹คํ–‰ํ•  ๋ช…๋ น์–ด ์ด๋ฆ„ (Opcode Table ์ฐธ๊ณ )
@HelloWorld017
HelloWorld017 / stop_wooribank.user.js
Created June 1, 2019 02:34
๋‚œ non-ActiveX๊ฑด ActiveX๊ฑด ๋‹ค ์•ˆ ๊น”๊ฑฐ๋‹ˆ๊นŒ ์ œ๋ฐœ ๊ทธ๋งŒ ์ข€ ๊ดด๋กญํ˜€
// ==UserScript==
// @name Fuck wooribank
// @namespace https://gist.github.com/HelloWorld017/ed85d08edda716a7df9e430df937dddf
// @version 0.2
// @description Fuck wooribank, I don't want to install any non-ActiveX and ActiveX
// @author Khinenw
// @match https://spib.wooribank.com/*
// @grant none
// ==/UserScript==
@HelloWorld017
HelloWorld017 / twitch-capture.user.js
Last active September 17, 2022 05:58
Capture twitch streaming or download clip.
// ==UserScript==
// @name Twitch Capture Now
// @namespace https://gist.github.com/HelloWorld017/805c0551ade99654925062a6b46da7c9
// @version 1.0.2
// @description Capture twitch streaming
// @author Khinenw
// @match *://*.twitch.tv/*
// @grant none
// ==/UserScript==