- Set streamers variable.
- Set TWITCH_CLIENT_ID env to Client-Id from twitch requests. (Chrome Developer Tools > Network)
npm i
node index
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-iStock -shutterstock -123rf -depositphotos -PRIMMERSIVE -Dreamstime -Alamy -Stockfresh -featurepics -Colourbox -VectorStock -ClipDealer |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pandas as pd | |
import requests | |
import json | |
import os | |
# From https://gist.github.com/giftbott/6ab91e81a8e5ff67c631fcc7c97f1483 | |
class ZigbangDl: | |
def __init__(self): | |
self.rooms = [] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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== |
- ํธ๋ํฝ์ ๊ด๋ฆฌํ๊ธฐ ์ํ ํ๋์ ์๋ฃจ์ , ํํ ๋ณด๋ ์ ์์ ๋๊ธฐ๊ฐ ๊ทธ๊ฒ
- https://traffic.kaist.ac.kr/ ์์ ๋์ ์ค
- ํน์ ๋ชจ๋ฅด์ง๋ง ์๋ฒ ์๊ฐ์ ์ฌ๊ธฐ์ ์ ๊ณตํด์ค๋ค.
Global Params:
- opcode: ์คํํ ๋ช ๋ น์ด ์ด๋ฆ (Opcode Table ์ฐธ๊ณ )
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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== |