I hereby claim:
- I am hbjydev on github.
- I am hbjy (https://keybase.io/hbjy) on keybase.
- I have a public key ASAt6wXWQ5WwUTKtHLy6S1j-hf9XsY3yuvxUZw4WOdlKmgo
To claim this, I am signing this object:
{ | |
inputs.nixpkgs.url = "github:nixos/nixpkgs?ref=nixpkgs-unstable"; | |
outputs = inputs@{ flake-parts, ... }: | |
flake-parts.lib.mkFlake { inherit inputs; } { | |
systems = inputs.nixpkgs.lib.systems.flakeExposed; | |
perSystem = { pkgs, ... }: { | |
packages.default = pkgs.runCommand "ipcalc" { | |
src = pkgs.fetchFromGitHub { |
package db | |
import ( | |
"embed" | |
"errors" | |
gokit_log "github.com/go-kit/log" | |
"github.com/go-kit/log/level" | |
"github.com/golang-migrate/migrate/v4" | |
"github.com/golang-migrate/migrate/v4/database/postgres" |
{ | |
inputs.nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; | |
outputs = inputs@{ flake-parts, ... }: | |
flake-parts.lib.mkFlake { inherit inputs; } { | |
systems = ["x86_64-linux"]; | |
perSystem = { pkgs, ... }: { | |
packages.caddy = pkgs.callPackage ./pkg.nix {}; | |
}; | |
}; |
package tmp | |
import ( | |
"context" | |
"encoding/json" | |
"fmt" | |
"os" | |
"reflect" | |
"github.com/go-kit/log" |
nixBuildCmd := "nix build --json --print-build-logs" | |
build profile='default': | |
{{nixBuildCmd}} '.#{{profile}}' | |
build-remote host system profile='default': | |
{{nixBuildCmd}} --remote-host '{{host}}' --system='{{system}}' '.#{{profile}}' |
export const Base = ({ children }) => ( | |
<div className="something"> | |
This is my base | |
<NavLinks /> | |
{children} | |
<Footer /> | |
</div> | |
); |
{ | |
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/master/schema.json", | |
"basics": { | |
"name": "Hayden Young", | |
"label": "Senior Code Janitor, also DevOps Engineer", | |
"summary": "I love working with all things DevOps, from automation and software engineering to full-on platform engineering. I’m a huge advocate for making things self-service and as reproducible as possible. My goal as an engineer, and the reason for my advocacy for DevOps, is developer enablement. Being blocked because the configuration needs updating to work with the latest OS or web server, or because the other service we need has gone offline, is never fun. Good DevOps culture can help alleiviate that issue, and that's why I've chosen to build a career in it.\n\nAlso I cannot stand Python. Why are anti-patterns in most languages called \"Pythonic\" in Python circles?", | |
"website": "https://hbjy.dev", | |
"email": "hayden@hbjy.dev", | |
"location": { | |
"city": "Sheffield", |
#!/bin/bash | |
set -e | |
function zk_dir() { | |
if [[ ! -d $HOME/zet ]]; then | |
mkdir $HOME/zet | |
fi | |
} | |
function zk_id() { |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
# Sudo alias | |
alias s="sudo" | |
# systemd-related | |
alias log="sudo journalctl --output cat -u" | |
alias log-previous-boot="sudo journalctl --boot=-1" | |
# Monitoring & process control |