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 / 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==
@HelloWorld017
HelloWorld017 / 01_파이썬 정리.md
Last active November 28, 2017 14:07
빛나리 36호 파이썬 배운 것을 정리해보자!

파이썬 정리

  • 모르는 것이 있으면 언제나 질문 가능

주석

# 이 이후로는 처리하지 않음

조건문

@HelloWorld017
HelloWorld017 / ytdl-client.user.js
Last active April 21, 2020 18:52
Youtube Downloader using HelloWorld017/ytdl-server
// ==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/*
@HelloWorld017
HelloWorld017 / hanjacrawl.js
Created September 26, 2017 14:07
Crawl hanja from naver dictionary and print beautifully
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');
@HelloWorld017
HelloWorld017 / sounds.html
Last active September 17, 2017 04:56
Oscillator-Oscilloscope
<!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 {