This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 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") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use std::{ | |
fs::File, | |
io::{Error, ErrorKind, Write}, | |
os::{ | |
fd::{AsRawFd, FromRawFd, OwnedFd}, | |
unix::net::UnixStream, | |
}, | |
path::Path, | |
process::Command, | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
- 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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"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 | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Publish documentation" | |
on: | |
push: | |
branches: | |
- "master" | |
jobs: | |
publish-documentation: | |
permissions: | |
id-token: "write" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 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() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script lang="ts"> | |
import LazyImage from "$lib/components/LazyImage.svelte"; | |
</script> | |
<style> | |
div.preview > :global(*) { | |
height: 320px; | |
width: 320px; | |
} | |
</style> |
NewerOlder