I hereby claim:
- I am lucymhdavies on github.
- I am lmhd (https://keybase.io/lmhd) on keybase.
- I have a public key whose fingerprint is 9DAC 53FB 18AB 8C5D F0E2 AA5B 330C B62A E334 C5E2
To claim this, I am signing this object:
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
background: #f06; | |
background: linear-gradient(45deg, #f06, yellow); | |
min-height:100%; |
#!/bin/bash | |
# Usage: | |
# source <(curl -L https://straw.be/nope.sh) | |
for c in $(\compgen -A function -abck); do \eval "\alias $c='\echo NOPE #'"; done |
I hereby claim:
To claim this, I am signing this object:
package cmd | |
import ( | |
"github.com/docker/go-connections/nat" | |
"github.com/skybet/cali" | |
) | |
func init() { |
So this is basically me taking a couple of examples from https://github.com/marcusolsson/tui-go/tree/master/example (mostly just color and http) and experimenting with how they work.
FROM ubuntu:18.04 | |
MAINTAINER muebau | |
ENV DEBIAN_FRONTEND noninteractive | |
ENV HOME / | |
VOLUME ["/config"] | |
VOLUME ["/output"] | |
VOLUME ["/world"] |
# Copyright 2019 Google LLC | |
# SPDX-License-Identifier: Apache-2.0 | |
package p | |
import ( | |
"fmt" | |
"image" | |
"image/color" | |
"image/draw" | |
"image/gif" |
#!/bin/bash | |
DISCORD_TOKEN="REDACTED" | |
for i in $(seq 69 -1 0); do | |
curl 'https://discord.com/api/v8/users/@me/settings' \ | |
-X 'PATCH' \ | |
-H "authorization: ${DISCORD_TOKEN}" \ | |
-H 'content-type: application/json' \ |
# Terraforming the example from here: | |
# https://learn.hashicorp.com/tutorials/vault/pki-engine | |
# | |
# Root CA | |
# | |
resource "vault_mount" "pki_root" { | |
path = "pki/root" |
#!/bin/bash | |
set -e | |
# Proof of Concept Bash Script to connect to NAS and configure everything | |
REMOTE_PORT=1337 | |
REMOTE_HOST=codex.davnet.lmhd.me | |
REMOTE_USER=shenanigans | |