- 모르는 것이 있으면 언제나 질문 가능
# 이 이후로는 처리하지 않음
new (function() { | |
window.include = function(srclist, cb){ | |
if(!cb) cb = function(){}; | |
var requireModule = (function(index){ | |
var moduleName = Object.keys(srclist)[index]; | |
var src = srclist[moduleName]; | |
var xhr = new XMLHttpRequest(); | |
xhr.open('GET', src, true); | |
xhr.onreadystatechange = function(){ | |
if(xhr.readyState !== 4) return; |
new (function() { | |
var ext = this; | |
var debugmode = !!window.scratchRegexExtensionEnv; | |
ext._shutdown = function() {}; | |
ext._getStatus = function() { | |
return {status: 2, msg: 'Ready'}; | |
}; | |
ext.regex = function(str, regexStr, flags, n){ |
new (function() { | |
var ext = this; | |
ext._shutdown = function() {}; | |
ext._getStatus = function() { | |
return {status: 2, msg: 'Ready'}; | |
}; | |
ext.eval = function(str){ | |
return eval(str); |
// ==UserScript== | |
// @name Namuwiki Image RightClickable | |
// @namespace https://khinenw.tk/ | |
// @version 1.1.rc-1 | |
// @description Don't save blank image when right click namuwiki images | |
// @author Khinenw | |
// @match http://namu.wiki/* | |
// @match https://namu.wiki/* | |
// @grant none | |
// @license MIT License |
# vim:ft=zsh ts=2 sw=2 sts=2 | |
# | |
# agnoster's Theme - https://gist.github.com/3712874 | |
# A Powerline-inspired theme for ZSH | |
# | |
# # README | |
# | |
# In order for this theme to render correctly, you will need a | |
# [Powerline-patched font](https://github.com/Lokaltog/powerline-fonts). | |
# Make sure you have a recent version: the code points that Powerline |
<!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 { |
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'); |
// ==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/* |
// ==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== |