Skip to content

Instantly share code, notes, and snippets.

View junlapong's full-sized avatar
🏚️
Work from home

Junlapong L. junlapong

🏚️
Work from home
  • Ratchaburi, Thailand
View GitHub Profile
javascript:{var f=document.getElementById('frm');f.cardholderName.value='VISA TEST';f.cardNo.value='4012001037141112';f.paymentCard.selectedIndex=0;f.year.selectedIndex=2;f.cvv.value='111';void(0);}
@junlapong
junlapong / git_proxy_functions.sh
Created September 3, 2021 12:26 — forked from mephissto/git_proxy_functions.sh
Gist for blog post 'Easy Configuration of Git for Windows on a Corporate Network'.Easily turn proxy-related settings on and off for Git for Windows.1) Add these functions to your ~\.bashrc file, 2) Change PASSWORD, PROXY_SERVER, and PROXY_PORT default values, 3) Open new Git Bash interactive shell window and execute function before using git: pr…
# updated version here: https://gist.github.com/garystafford/8196920
# loosely based on post from ArchWiki and Alan Pope
# https://wiki.archlinux.org/index.php/proxy_settings
# this is alternative to git config
# configure proxy for git while on corporate network
function proxy_on(){
read -s -p "Enter Password: " PASSWORD
export PROXY_SERVER=my_proxy
@junlapong
junlapong / index.html
Created June 6, 2021 11:46 — forked from iporsut/index.html
HTML display from camera
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Camera</title>
</head>
<body>
<video id="camera" autoplay playsinline></video>
<script>
const videoElement = document.getElementById("camera");
@junlapong
junlapong / combine-pdf.md
Created May 27, 2021 03:59 — forked from stvhwrd/combine-pdf.md
Combining PDF files on the command line in OSX

###While this script does concatenate pdf files, I haven't yet figured out in which order it does so. On a sample of 19 pdf files, logically named 01something.pdf, 02something.pdf, 03something.pdf, etc. the order of the merged product seemed almost random...

...from Tiger onwards, OSX ships with a Python script that concatenates pdf files (merges them together). The script is already executable, and Python is pre-installed on OS X, so all you need to do is point it at your pdf files and run

"/System/Library/Automator/Combine PDF Pages.action/Contents/Resources/join.py" -o PATH/TO/YOUR/MERGED/FILE.pdf /PATH/TO/ORIGINAL/1.pdf /PATH/TO/ANOTHER/2.pdf /PATH/TO/A/WHOLE/DIR/*.pdf

I prefer putting the link in /usr/local/bin, as it is in the $PATH and therefore I can run the command from anywhere. To set up the link, you need to navigate to the directory where you want the link.

Problem

A lot of GitHub projects need to have pretty math formulas in READMEs, wikis or other markdown pages. The desired approach would be to just write inline LaTeX-style formulas like this:

$e^{i \pi} = -1$

Unfortunately, GitHub does not support inline formulas. The issue is tracked here.

Investigation

#!/bin/bash
###
# brew install upx
###
color=46;
if [ $# -eq 0 ]; then
echo "[USAGE] gotiny [filename.go]"
echo "----------------------------"
@junlapong
junlapong / redirectExample.go
Created October 14, 2019 18:16 — forked from d-schmidt/redirectExample.go
How to redirect HTTP to HTTPS with a golang webserver.
package main
import (
"net/http"
"log"
)
func redirect(w http.ResponseWriter, req *http.Request) {
// remove/add not default ports from req.Host
target := "https://" + req.Host + req.URL.Path
if len(req.URL.RawQuery) > 0 {
@junlapong
junlapong / gist:5355c47716d2ee27fd1114107b0f4eb4
Created August 24, 2019 08:18 — forked from CristinaSolana/gist:1885435
Keeping a fork up to date

1. Clone your fork:

git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git

2. Add remote from original repository in your forked repository:

cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
@junlapong
junlapong / go-stdlib-interface-selected.md
Created August 11, 2019 16:43 — forked from asukakenji/go-stdlib-interface-selected.md
Go (Golang) Standard Library Interfaces (Selected)

Go (Golang) Standard Library Interfaces (Selected)

This is not an exhaustive list of all interfaces in Go's standard library. I only list those I think are important. Interfaces defined in frequently used packages (like io, fmt) are included. Interfaces that have significant importance are also included.

All of the following information is based on go version go1.8.3 darwin/amd64.