Skip to content

Instantly share code, notes, and snippets.

View loganhenson's full-sized avatar

Logan Henson loganhenson

View GitHub Profile
import { listenAndServe } from 'https://deno.land/std/http/mod.ts'
import { readFileStr } from 'https://deno.land/std/fs/mod.ts'
import { match } from 'https://cdn.pika.dev/path-to-regexp@^6.1.0'
const render = async ({ page, state }) => {
return `
<!doctype html>
<html lang=en>
<head>
<meta charset=utf-8>
@loganhenson
loganhenson / CHANGELOG.md
Last active June 29, 2020 17:25
Changelog Example

Change Log

All changes to the XD will be documented in this file.

[version number] - yyyy-mm-dd

General High Level Description Sentence

Added

  • Description text box to the stress rating Modal
@loganhenson
loganhenson / vim-heroku.sh
Created February 3, 2021 17:05 — forked from dvdbng/vim-heroku.sh
Run vim in heroku updated 2017
mkdir ~/vim
cd ~/vim
# Staically linked vim version compiled from https://github.com/ericpruitt/static-vim
# Compiled on Jul 20 2017
curl 'https://s3.amazonaws.com/bengoa/vim-static.tar.gz' | tar -xz
export VIMRUNTIME="$HOME/vim/runtime"
export PATH="$HOME/vim:$PATH"
cd -