Skip to content

Instantly share code, notes, and snippets.

@thurt
thurt / gist:88df0e404b38b8923355ad0b9a700cff
Created April 5, 2018 15:16 — forked from pitch-gist/gist:2999707
HTML: Simple Maintenance Page
<!doctype html>
<title>Site Maintenance</title>
<style>
body { text-align: center; padding: 150px; }
h1 { font-size: 50px; }
body { font: 20px Helvetica, sans-serif; color: #333; }
article { display: block; text-align: left; width: 650px; margin: 0 auto; }
a { color: #dc8100; text-decoration: none; }
a:hover { color: #333; text-decoration: none; }
</style>
const k_combinations = (set, k) => {
if (k > set.length || k <= 0) {
return []
}
if (k === set.length) {
return [set]
}
const combs = []
if (k === 1) {
for (let i = 0; i < set.length; i++) {
@thurt
thurt / smtp-gmail-send.go
Created March 3, 2018 16:33 — forked from jpillora/smtp-gmail-send.go
Send email using Go (Golang) via GMail with net/smtp
package main
import (
"log"
"net/smtp"
)
func main() {
send("hello there")
}
@thurt
thurt / docker-compose.yml
Created February 7, 2018 21:44 — forked from ahromis/docker-compose.yml
Gogs docker-compose.yml
version: '3'
services:
postgres:
image: postgres:9.5
restart: always
environment:
- POSTGRES_USER=${POSTGRES_USER-root}
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD-root}
- POSTGRES_DB=gogs
volumes:
@thurt
thurt / swagger.sh
Created January 28, 2018 23:38 — forked from jimschubert/swagger.sh
Quick script for running swagger codegen cli directly
#!/bin/bash
ver=2.2.0
jar=swagger-codegen-cli-$ver.jar
md5=57e673eb334364ab614cc6083b0f4b27
repo="http://repo1.maven.org/maven2/io/swagger/swagger-codegen-cli/$ver/$jar"
if [ ! -f $jar ]; then
echo "[info] downloading $PWD/$jar from $repo" 1>&2
if ! curl --location --silent --fail --remote-name $repo -o $jar; then
@thurt
thurt / revprox.go
Last active March 10, 2025 20:10 — forked from JalfResi/revprox.go
Simple reverse proxy in Go (forked from original to use a struct instead of a closure)
package main
import(
"log"
"net/url"
"net/http"
"net/http/httputil"
)
func main() {
# Here's how to back up a named volume
# 1. Using a `ubuntu` image, we mount the named volume (`myproj_dbdata`) to a `/dbdata` folder inside the `ubuntu` container.
# 2. Then, we create a new folder inside the `ubuntu` container named `/backup`.
# 3. We then create an archive containing the contents of the `/dbdata` folder and we store it inside the `/backup` folder (inside the container).
# 4. We also mount the `/backup` folder from the container to the docker host (your local machine) in a folder named `/backups` inside the current directory.
docker run --rm -v myproj_dbdata:/dbdata -v $(pwd)/backups:/backup ubuntu tar cvf /backup/db_data_"$(date '+%y-%m-%d')".tar /dbdata
@thurt
thurt / mysql-docker.sh
Created November 5, 2017 21:23 — forked from spalladino/mysql-docker.sh
Backup and restore a mysql database from a running Docker mysql container
# Backup
docker exec CONTAINER /usr/bin/mysqldump -u root --password=root DATABASE > backup.sql
# Restore
cat backup.sql | docker exec -i CONTAINER /usr/bin/mysql -u root --password=root DATABASE
@thurt
thurt / golang-request
Created June 16, 2017 00:42 — forked from kendellfab/golang-request
Golang Example for adding custom headers to a request.
client := &http.Client{]
req, err := http.NewRequest("POST", "http://example.com", bytes.NewReader(postData))
req.Header.Add("User-Agent", "myClient")
resp, err := client.Do(req)
defer resp.Body.Close()
@thurt
thurt / browserify_for_webpack_users.markdown
Created May 30, 2017 23:14
browserify for webpack users

browserify for webpack users

There's been a strange explosion in misinformation about browserify recently, particularly in comparisons to webpack.

Generally speaking, most of this confusion stems from how webpack is more willing to pull features into its core to ease discoverability while browserify is more likely to push features out to userland instead.

I think that longer-term, separability has more benefits from a maintenance and