- Set streamers variable.
- Set TWITCH_CLIENT_ID env to Client-Id from twitch requests. (Chrome Developer Tools > Network)
npm inode 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
| // ==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
| 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
| 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
| -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
| // ==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== |
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 Youtube Downloader | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.2 | |
| // @description Download videos on youtube | |
| // @author Khinenw | |
| // @include http://www.youtube.com/* | |
| // @include https://www.youtube.com/* | |
| // @include http://youtube.com/* | |
| // @include https://youtube.com/* |
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 axios = require('axios').create({ | |
| headers: { | |
| 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36' | |
| }, | |
| responseType: 'text', | |
| baseURL: 'http://hanja.naver.com' | |
| }); | |
| const cheerio = require('cheerio'); | |
| const fs = require('fs'); |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Oscillator-Oscilloscope</title> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/css/materialize.min.css"> | |
| <link rel="stylesheet" href="https://cdn.rawgit.com/HelloWorld017/NanumBarunGothic/master/nanumbarungothic.css"> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, intial-scale=2, user-scalable=no"> | |
| <style> | |
| .range-box { |