Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View heisian's full-sized avatar
💭
🗡

Tim heisian

💭
🗡
  • Oakland, CA
View GitHub Profile
@heisian
heisian / safari-style-password.sh
Last active October 9, 2018 20:03
Generate a Safari-style password in bash
#!/bin/bash
# ################################################
#
# Generate a Safari-style password: V4R-cG2-Cru-J5d
#
# Usage:
# $ MY_PASSWORD=$(./safari-style-password.sh)
# $ echo $MY_PASSWORD
#
@heisian
heisian / _returning.js
Last active October 19, 2018 16:20
returning('*')
const { DB } = require('db')
const db = new DB()
//
;(async () => {
await db.connect()
await db.transaction(async (trx) => {
const user = await db.models.User.query(trx)
.insert({})
.returning('*')
@heisian
heisian / _no_returning.js
Last active October 19, 2018 16:21
no returning
const { DB } = require('db')
const db = new DB()
//
;(async () => {
await db.connect()
await db.transaction(async (trx) => {
const user = await db.models.User.query(trx)
.insert({})
console.log({ user })
@heisian
heisian / tinyWatcher.js
Last active May 9, 2019 20:21
Tiny Watcher
/**
* Uses fs.watchFile and cluster to watch, fork, and "restart"
* the file that this code is included in. Run this code before
* anything else in the script and it will restart a persistent-
* running fork of itself when the source is modified.
*/
const fs = require('fs')
const cluster = require('cluster')
@heisian
heisian / first_run.ini
Last active August 2, 2019 17:33
OpenVPN Access Server w/ LetsEncrypt for Web UI
# Modified from https://gist.github.com/HighMacGuy/3cf42ce21d3bd923f2440f9938e2f664
cert-name = yourdomain.com
rsa-key-size = 4096
email = webmaster@getethos.com
domains = vpn.ethoslife.com
agree-tos = True
# Would need to automate the process of adding a
# TXT record in Route53 for this to be automated:
@heisian
heisian / businessLogic.js
Created August 22, 2019 22:58
Coalescing imports/exports w/o Repeating Yourself (too much)
const Redis = require('ioredis')
const services = require('./services')
const redis = new Redis()
;(() => {
const oneInstance = new services.One()
const one = oneInstance.getNumberOne()

Keybase proof

I hereby claim:

  • I am heisian on github.
  • I am ethos_tim (https://keybase.io/ethos_tim) on keybase.
  • I have a public key ASAnDTs_vp7GA2feMPqzCVM-nyYUlh8a9tUip4gzBl6wZAo

To claim this, I am signing this object:

@heisian
heisian / Dockerfile-atlantis-ecs-git-crypt
Last active August 30, 2019 15:45
Run Atlantis on ECS with git-crypt
# This Dockerfile is intended to be uploaded to a PRIVATE repository.
# This method involves copying the git-crypt key into this image,
# which will allow one to use a custom workflow in Atlantis
# to decrypt before running init/plan/apply.
FROM runatlantis/atlantis
ENV GIT_CRYPT_VERSION 0.6.0
RUN apk --update add \
@heisian
heisian / exercise.md
Created November 4, 2019 21:59
exercise

Fullstack Exercise (Tim)

Create a Node server/client app that communicates via socket.io.

Server/Client interaction

Connection

The server should listen for socket.io connections and let any clients know, on connection, that they've successfully connected. The server should emit a success message to the client through the socket.io channel.