Skip to content

Instantly share code, notes, and snippets.

View mikroskeem's full-sized avatar
👻

Mark Vainomaa mikroskeem

👻
View GitHub Profile
# This function helps to set proper Go version for a project, leveraging Go's recent
# GOTOOLCHAIN environment variable support. However, unlike rustup, Go does not attempt
# to download older toolchain versions automatically, and must be forced to do so.
# For example, project specifying `go 1.24` and current toolchain being `go 1.22` does
# download a new version, but not vice-versa.
# However for some projects, having older Go is mandatory, especially with dependencies like:
# - older quic-go, which was tied to a specific Go compiler version
# - other dependencies relying on Go internals
# Requires bash, curl, jq, sed
-- nix-shell -p luajit luajitPackages.ldbus luajitPackages.inspect
-- /nix/store/wwlxj5j4ykgi9lvxfcflc46wps24axc7-luajit-2.1.1693350652
-- /nix/store/2dfajfj0k0sxkbb4mfx1vmpazjwns0hl-luajit2.1-inspect-3.1.3-0
-- /nix/store/k97mqys9ip428mp002n41swh0jm1kxxs-luajit2.1-ldbus-scm-0
local ldbus = require("ldbus")
local inspect = require("inspect")
local conn = assert(ldbus.bus.get("system"), "System bus connection failed")
use std::{
fs::File,
io::{Error, ErrorKind, Write},
os::{
fd::{AsRawFd, FromRawFd, OwnedFd},
unix::net::UnixStream,
},
path::Path,
process::Command,
};
@mikroskeem
mikroskeem / download-gh-release.yml
Created March 16, 2024 07:19
Download a private GitHub release using Ansible
---
- name: "Download a private GitHub release"
vars:
owner: "mikroskeem"
repo: "snakeoil"
tag: "v0.0.1"
asset_name: "snakeoil.x86_64-linux"
get_url_args:
dest: "/tmp/the-thing"
@mikroskeem
mikroskeem / vector-netconsole.yaml
Last active January 7, 2024 17:26
Use vector.dev to process Linux netconsole messages
---
# See https://www.kernel.org/doc/Documentation/networking/netconsole.txt
# Use e.g. `insmod netconsole.ko netconsole=+@/,[email protected]/` on the VM
# $ vector --version
# vector 0.34.2 (aarch64-unknown-linux-musl d685a16 2024-01-02 14:59:54.890517436)
sources:
in:
#type: "syslog" # does not work with netconsole
@mikroskeem
mikroskeem / deno.jsonc
Created November 13, 2023 10:05
ed25519 signing with Vault Transit engine
{
"imports": {
"$std/": "https://deno.land/[email protected]/",
"vault/": "https://raw.githubusercontent.com/restake/deno-hashicorp-vault/67b015694251a9f030bc419296c93e8900ebff84/",
"@noble/ed25519": "https://deno.land/x/[email protected]/mod.ts"
},
"fmt": {
"indentWidth": 4,
"lineWidth": 140
}
@mikroskeem
mikroskeem / inspect_svc.sh
Created August 23, 2023 15:11
Inspect systemd service namespace
#!/usr/bin/env bash
set -euo pipefail
svc="${1}"
pid="$(systemctl show --property MainPID --value "${svc}")"
user="$(systemctl show --property User --value "${svc}")"
uid="$(getent passwd "${user}" | cut -d: -f3)"
sudo nsenter -t "${pid}" -U -m -S "${uid}" /bin/bash -i
@mikroskeem
mikroskeem / docs.yml
Created August 3, 2023 12:25
Publish TypeDoc documentation to GitHub pages
name: "Publish documentation"
on:
push:
branches:
- "master"
jobs:
publish-documentation:
permissions:
id-token: "write"
@mikroskeem
mikroskeem / ldbus_systemd.lua
Created May 30, 2023 15:28
Example Lua script interfacing with systemd D-BUS service
-- nix-shell -p luajit luajitPackages.ldbus luajitPackages.inspect
local ldbus = require("ldbus")
local inspect = require("inspect")
local conn = assert(ldbus.bus.get("system"), "System bus connection failed")
function do_method_call(conn, destination, path, iface, method_name, args, f)
local msg = assert(ldbus.message.new_method_call(destination, path, iface, method_name), "Failed to create message")
local iter = ldbus.message.iter.new()
<script lang="ts">
import LazyImage from "$lib/components/LazyImage.svelte";
</script>
<style>
div.preview > :global(*) {
height: 320px;
width: 320px;
}
</style>