Skip to content

Instantly share code, notes, and snippets.

View elsbrock's full-sized avatar

Simon Elsbrock elsbrock

  • Europe, Germany
  • 09:04 (UTC +02:00)
View GitHub Profile
Country Tariffs Charged to the U.S.A. U.S.A. Discounted Reciprocal Tariffs
Afghanistan 49% 10%
Antigua and Barbuda 10% 10%
Argentina 10% 10%
Aruba 10% 10%
Australia 10% 10%
Bangladesh 74% 37%
Barbados 10% 10%
Benin 10% 10%
Bermuda 10% 10%
@thesamesam
thesamesam / xz-backdoor.md
Last active March 19, 2025 15:17
xz-utils backdoor situation (CVE-2024-3094)

FAQ on the xz-utils backdoor (CVE-2024-3094)

This is a living document. Everything in this document is made in good faith of being accurate, but like I just said; we don't yet know everything about what's going on.

Update: I've disabled comments as of 2025-01-26 to avoid everyone having notifications for something a year on if someone wants to suggest a correction. Folks are free to email to suggest corrections still, of course.

Background

@IwateKyle
IwateKyle / gist:5e592a1e7e766789f983e4a04d84ed61
Created September 11, 2023 03:35
PocketBase - updating a record's fields before the request is created or updated in the database.
onRecordBeforeCreateRequest((e) => {
const requestInfo = $apis.requestInfo(e.httpContext);
// Update createdBy and updatedBy fields
if (requestInfo.authRecord !== null) {
e.record.set(
'createdBy',
`${requestInfo.authRecord.collection().name} ${requestInfo.authRecord.id}`
);
e.record.set(

Proxmox GPU Passthrough

Config :

  • Motherboard : Asrock x300
  • CPU : AMD Ryzen 5 PRO 4650G with Radeon Graphics
  • GPU : AMD Ryzen 5 PRO 4650G with Radeon Graphics
  • Ram : DDR4 2133 MHz

Setting it all up

Update packages

@fuweichin
fuweichin / index.html
Last active February 12, 2025 22:07
User Agent Client Hints API (navigator.userAgentData) polyfill and ponyfill
<h3>native navigator.userAgentData</h3>
<pre><code id="naviveUserAgentData">...</code></pre>
<h3>polyfilled navigator.userAgentData</h3>
<pre><code id="customUserAgentData">...</code></pre>
<script type="module">
import {ponyfill, polyfill} from './user-agent-data.js';
const $ = (s, c = document) => c.querySelector(s);
@rickhull
rickhull / configuration.nix
Last active March 29, 2025 07:38
Prometheus, Grafana, Loki, Promtail on NixOS
# MONITORING: services run on loopback interface
# nginx reverse proxy exposes services to network
# - grafana:3010
# - prometheus:3020
# - loki:3030
# - promtail:3031
# prometheus: port 3020 (8020)
#
services.prometheus = {
@mdegat01
mdegat01 / update_notifications.yaml
Last active March 23, 2025 02:52
Update Notifications Automation Blueprint
blueprint:
name: Update notifications
description: Send notifications for new updates and install or skip on action
homeassistant:
min_version: '2022.4.0'
domain: automation
input:
update_entities:
name: Update entities
description: >-
@bitonic
bitonic / configuration.nix
Last active March 15, 2025 18:34
NixOS configuration for a remote ZFS server on Hetzner
# Full NixOS configuration for a ZFS server with full disk encryption hosted on Hetzner.
# See <https://mazzo.li/posts/hetzner-zfs.html> for more information.
{ config, pkgs, ... }:
let
# Deployment-specific parameters -- you need to fill these in where the ... are
hostName = "...";
publicKey = "...";
# From `ls -lh /dev/disk/by-id`
@lg
lg / adding-tailscale-to-edgerouter.md
Last active February 10, 2025 14:19
Add tailscale to an EdgeRouter and surviving system upgrade

Adding tailscale to an EdgeRouter (and surviving system upgrades)

I suggest you run sudo bash on all of these so you're the root user.

Installing

  1. Download tailscale and put the files in /config/. Find the latest stable or unstable version for your EdgeRouter's processor (ex. ER4 is mips and ERX is mipself)
sudo bash    # if you havent already