Skip to content

Instantly share code, notes, and snippets.

View jyungtong's full-sized avatar

jin yung jyungtong

  • Kuala Lumpur, Malaysia
View GitHub Profile
@jyungtong
jyungtong / index.js
Last active October 10, 2017 11:39
rate limit making request
const request = require('superagent')
const { RateLimiter } = require('limiter')
const { queue } = require('async')
const faker = require('faker')
var codes=["0004","0034","0079","0140","5065","5132","5159","5255","7250","7277","9881","0092","0103","0150","0017","0064","7187","0007","0041","0066","0070","0080","0084","0085","0156","0163","0165","3948","5080","5199","5243","6483","7035","7111","7123","7152","8486","9385","2127","5008","0020","5257","7013","7070","5072","5194","0104","0168","0175","0195","2429","5115","5125","5149","5259","7114","7253","8303","5230","0005WA","5157","5256","0138","0021","1818","7199","2793","5001","7217","9873","0176","5253","0103WA","4057","2739","0017WA","0109","0185","4235","4456","5098","5205","5232","0118","0173","0179","7079","7219","0037","9938","0065","4944","9172","0186","1651","5226","7080","0075","0120","5054","5058","5157WA","7230","0005wa","0017wa","0066WA","0103wa","0112","5157wa","524317","5158","5172","7174","0116","0152","0166","3069","5102","5143","5147","5152"
@jyungtong
jyungtong / saka-key.json
Last active October 27, 2017 07:23
saka key backup
{
"activeProfiles": {
"General": "default_copy_1508986360611",
"Keybindings": "default_copy_1508987326450",
"Appearance": "white on blue_copy_1508986321164"
},
"profiles": {
"General": {
"power_copy_1507342430517": {
"enabled": true,
@jyungtong
jyungtong / acme.conf
Created October 2, 2017 03:24
Update certbot ssl with docker
# Place this file in /etc/nginx/snippets/acme.conf
# Include it in any of your server.conf
location ^~ /.well-known {
proxy_pass http://127.0.0.1:18881;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
@jyungtong
jyungtong / bootstrap.sh
Last active September 30, 2017 00:45
server bootstrap
#!/bin/bash
apt update
# setup docker
curl -fsSL get.docker.com -o get-docker.sh
sh get-docker.sh
# setup python
apt install -y python3 python-pip
@jyungtong
jyungtong / cf-update.sh
Created September 28, 2017 05:11
Update Cloudflare IP
#!/bin/bash
curl -XPUT \
-H'X-AUTH-EMAIL: [email protected]' \
-H'X-AUTH-KEY: YOUR_VERY_SECRET_AUTH_KEY' \
-H'content-type: application/json' \
"https://api.cloudflare.com/client/v4/zones/{ZONE_ID}/dns_records/{DNS_RECORD}" \
--data '{"type":"A", "name":"YOUR.DOMAIN.COM", "content": "'"$(curl ipinfo.io/ip)"'", "ttl": 120, "proxied": false}'
@jyungtong
jyungtong / .tern-project
Last active October 7, 2017 06:53
vim ycm tern javascript completer
{
"plugins": {
"es_modules": {},
"node": {}
},
"libs": [
"ecma5",
"ecma6"
],
"ecmaVersion": 6
@jyungtong
jyungtong / .bashrc
Created July 14, 2017 03:45
.bashrc
#
# ~/.bashrc
#
# If not running interactively, don't do anything
# [[ $- != *i* ]] && return
# Custom bash prompt via kirsle.net/wizards/ps1.html
export PS1="\[$(tput bold)\]\[$(tput setaf 6)\]\t \[$(tput setaf 2)\][\[$(tput setaf 3)\]\u\[$(tput setaf 1)\]@\[$(tput setaf 3)\]\h \[$(tput setaf 6)\]\W\[$(tput setaf 2)\]]\[$(tput setaf 4)\]\\$ \[$(tput sgr0)\]"
@jyungtong
jyungtong / slugify.js
Last active December 20, 2015 02:43 — forked from mathewbyrne/slugify.js
Javascript Slugify for node js
module.exports = function (text) {
if (text) {
return text.toString().toLowerCase().trim()
.replace(/\s+/g, '-') // Replace spaces with '-'
.replace(/&/g, '-and-') // Replace & with 'and'
.replace(/[$+,:;=?@#|'<>.^*()%!\/\\]+/g, '') // Remove all non-word chars, to prevent replace on non-latin characters
.replace(/\-\-+/g, '-') // Replace multiple - with single -
.replace(/^-+/, '') // Trim - from start of text
.replace(/-+$/, ''); // Trim - from end of text
}
-- ========================================================================== --
-- == EDITOR SETTINGS == --
-- ========================================================================== --
vim.opt.number = true
vim.opt.relativenumber = true
vim.opt.mouse = 'a'
vim.opt.ignorecase = true
vim.opt.smartcase = true
vim.opt.hlsearch = true
@jyungtong
jyungtong / SwingWorkerSample.java
Created September 10, 2012 12:47
Working on multi-threading with SwingWorker and JProgressBar
/*
* Copyright (C) 2012 whatatux
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of