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 / Gui.java
Created September 10, 2012 01:47
Simple GridBagLayout example in Java
/**
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
@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
-- ========================================================================== --
-- == 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 / 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
}
@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 / .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 / 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 / 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 / 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 / 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,