Skip to content

Instantly share code, notes, and snippets.

View brackendawson's full-sized avatar
🇳🇴
migrating

Bracken brackendawson

🇳🇴
migrating
View GitHub Profile
@brackendawson
brackendawson / index.htm
Last active September 10, 2024 22:04
How I structure nearly all my HTML pages.
<!DOCTYPE html>
<html lang="en">
<head>
<title>Title</title>
<style>
* {
margin: 0;
}
html, body {
height: 100%;
@brackendawson
brackendawson / main.go
Last active May 25, 2020 21:14
How to make a server too complicated
package main
import (
"context"
"fmt"
"io"
"log"
"math/rand"
"net/http"
"os"
@brackendawson
brackendawson / list.yml
Last active October 18, 2016 17:15
The list problem
---
- hosts: all
gather_facts: False
tasks:
- set_fact:
myhosts:
- 127.0.0.1
- 127.0.0.2