Skip to content

Instantly share code, notes, and snippets.

View HelloWorld017's full-sized avatar
💐
muguet - Hanahuruhibi,

Khinenw HelloWorld017

💐
muguet - Hanahuruhibi,
View GitHub Profile
@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 / KAIST_courseRegistration.md
Last active March 14, 2024 14:26
카이스트 수강신청 뽀개기

카이스트 수강신청

NetFunnel

  • 트래픽을 관리하기 위한 하나의 솔루션, 흔히 보는 접속자 대기가 그것
  • https://traffic.kaist.ac.kr/ 에서 동작 중
    • 혹시 모르지만 서버 시간을 여기서 제공해준다.

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

Global Params:

  • opcode: 실행할 명령어 이름 (Opcode Table 참고)
@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 / 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 / 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 / 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 / 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 / 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 / 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 / github-no-billing.user.js
Last active December 31, 2017 10:12
Github No Billing Message
// ==UserScript==
// @name Github No Billing Message
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Remove billing message in github
// @author You
// @match *://*.github.com/*
// @grant none
// ==/UserScript==