Skip to content

Instantly share code, notes, and snippets.

WARC/1.1
WARC-Filename: my-web-archive.warc
WARC-Date: 2020-11-13T04:09:42.143Z
WARC-Type: warcinfo
WARC-Record-ID: <urn:uuid:2ce22571-38e4-4528-91cb-4f9bfdd4a904>
Content-Type: application/warc-fields
Content-Length: 475
software: Webrecorder wabac.js/warcio.js
format: WARC File Format 1.1
@austinfrey
austinfrey / README.md
Created September 6, 2019 13:47 — forked from miguelmota/README.md
Multiple accounts with Mutt E-Mail Client (gmail example)

How to set up multiple accounts with Mutt E-mail Client

Thanks to this article by Christoph Berg

Instructions

Directories and files

~/
(function () {
return hello + ' ' + nasty.toUpperCase()
})()

Keybase proof

I hereby claim:

  • I am austinfrey on github.
  • I am austinfrey (https://keybase.io/austinfrey) on keybase.
  • I have a public key ASABCeRyLn5YWGax0B8FK13aYdCALMnhYWbxz50PlCftago

To claim this, I am signing this object:

@austinfrey
austinfrey / blah.js
Created August 8, 2018 01:07
hyperdrive dataplex client
const hyperdrive = require('hyperdrive')
const ram = require('random-access-memory')
const websocket = require('websocket-stream')
const dataplex = require('dataplex')
const {pipe, through} = require('mississippi')
const EventEmitter = require('events')
const bus = new EventEmitter()
module.exports = socketClient
version: "3"
services:
# Traefik setup
traefik:
image: traefik:latest
command: -c --docker=true
--docker.swarmmode=true
--docker.domain=traefik
--docker.watch=true
--web=true
version: "3"
services:
# FaaS API Gateway
gateway:
volumes:
- "/var/run/docker.sock:/var/run/docker.sock"
image: alexellis2/faas-gateway:latest
networks:
- traefik-net
@austinfrey
austinfrey / cloud-config.yml
Last active February 8, 2017 12:20
rancher-vultr cloud-config
#cloud-config
ssh_authorized_keys:
- ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC6H4EZwbqEvCIEr4e26iYq48jLZkNDY6mWwnQvSHYNMAMAKoT/foTHztGjj+BXFi5JTUcpfGyHk+1RuN6mVdicGitLZJMMVtXAC0w5IWPjXNWpYgKd4wWr8HoT6i/QTbmJKNoVbUSl8Po1lprc+/XbVrSeTg/BFh/1mF88JE4FtF04kwUi5SWLxdUhdMJAfMl3macrlpRR/zeX+YuyGSTWT22XzR05Vr1qt72X4IyFP1gDFeTp8mnTQ95aErjSKfQ8zsTos3bQilFWI8XUL1IAx7+Qgqy2/MAeqdbfrO/eQcDV/JWUAEpAK/S4XqavKSbYLryk2VC6pq7c+1npfiXD austin@desktop
@austinfrey
austinfrey / README.md
Last active January 21, 2017 21:18
Making a stripped down node.js docker image

Create a directory to house your assets

mkdir hello-world && cd hello-world
touch Dockerfile

Let's install the npm package that will bundle our application into a standalone exectuable. This might take a few minutes.

npm install -g enclose