Skip to content

Instantly share code, notes, and snippets.

View teslamint's full-sized avatar
💭
I may be slow to respond.

Jaehoon You teslamint

💭
I may be slow to respond.
View GitHub Profile
@teslamint
teslamint / # percona-server - 2016-02-17_09-09-28.txt
Created February 17, 2016 01:13
percona-server on OS X 10.11.4 - Homebrew build logs
Homebrew build logs for percona-server on OS X 10.11.4
Build date: 2016-02-17 09:09:28
@teslamint
teslamint / gist:8dec3234b7a447eb8b30
Created February 7, 2016 16:14 — forked from dannysheehan/gist:9d67adb67eeef6ad1413
haproxy.cfg configuration for 1Gb KVM with 1 CPU with backend NGINX and percona /mariadb cluster.
#---------------------------------------------------------------------------
# @(#)$Id$
#title :/etc/haproxy/haproxy.cfg
#description :ftmon cluster haproxy config. NGINX and XtraDB Cluster backend
#author :Danny W Sheehan
#date :July 2014
#website :ftmon.org
#
# This is a work in progress. A lot of trial and error and man hours have
# gone into this configuration. I have referenced sources that have been
@teslamint
teslamint / # coova-chilli - 2016-01-19_10-41-36.txt
Created January 19, 2016 01:47
coova-chilli (teslamint/devel/coova-chilli) on OS X 10.11.4 - Homebrew build logs
Homebrew build logs for teslamint/devel/coova-chilli on OS X 10.11.4
Build date: 2016-01-19 10:41:36
@teslamint
teslamint / ArcherC2.dts
Last active March 15, 2017 13:10
DTS file for TP-LINK Archer C2 to build OpenWrt firmware (not working for now, work in progress)
/dts-v1/;
/include/ "mt7620a.dtsi"
/ {
compatible = "tplink,c2", "ralink,mt7620a-soc";
model = "TP-Link Archer C2";
chosen {
bootargs = "console=ttyS0,115200";
@teslamint
teslamint / connect_olleh_starbucks_wifi.sh
Last active August 14, 2016 13:29
Connect olleh_starbucks Wi-Fi shell script for OSX
#!/bin/bash
# -----------------------------------------------------------------------------
# Starbucks Korea Wi-Fi Authentication Script
# Code by teslamint. Public Domain.
# -----------------------------------------------------------------------------
ESSID="olleh_starbucks" # modify this in case of they changed their SSID
COOKIE_FILE="cookies.txt"
AIRPORT="/System/Library/PrivateFrameworks/Apple80211.framework/Resources/airport"
NETWORKSETUP="/usr/sbin/networksetup"
2015-09-03 10:06:11 +0900
cmake
-DENABLE_MCROUTER=OFF
-DENABLE_EXTENSION_MCROUTER=OFF
-DENABLE_EXTENSION_IMAP=OFF
-DCCLIENT_INCLUDE_PATH=0
-DMYSQL_UNIX_SOCK_ADDR=/tmp/mysql.sock
-DCMAKE_C_FLAGS=-I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib
-DCMAKE_CXX_FLAGS=-I/usr/local/opt/readline/include -L/usr/local/opt/readline/lib

Keybase proof

I hereby claim:

  • I am teslamint on github.
  • I am teslamint (https://keybase.io/teslamint) on keybase.
  • I have a public key whose fingerprint is D6CA 88E3 EDEB A7C0 54C2 15E8 F312 8F60 C131 C54E

To claim this, I am signing this object:

#!/usr/bin/env bash
# Install tmux on Centos release 6.5
# install deps
yum install gcc kernel-devel make ncurses-devel
# DOWNLOAD SOURCES FOR LIBEVENT AND MAKE AND INSTALL
curl -OL http://downloads.sourceforge.net/project/levent/libevent/libevent-2.0/libevent-2.0.22-stable.tar.gz
tar -xvzf libevent-2.0.22-stable.tar.gz
cd libevent-2.0.22-stable
/*
Copyright 2013 Martin Hawksey
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
@teslamint
teslamint / ytrepeat.js
Last active August 29, 2015 14:12
Loop video with specific range on Youtube.
/* License: Public Domain. */
(function(w,yt){
if (!w||!yt||typeof w._ytrepeat == "object") return;
function ytrepeat() {
this.startTime=0;
this.endTime=0;
this._timer=undefined;
}
ytrepeat.prototype.convertTime=function(str){
var array = str.split(':');