Skip to content

Instantly share code, notes, and snippets.

View jerlendds's full-sized avatar
💭
🦷🧵🦾

jerlendds jerlendds

💭
🦷🧵🦾
View GitHub Profile
@jerlendds
jerlendds / README.md
Created March 14, 2026 06:45 — forked from MaxWolf-01/README.md
Quartz copy raw markdown component

Preview:

image

Setup:

  • copy RawMarkdown.tsx to quartz/components
  • copy rawmarkdown.scss to quartz/components/styles
  • copy rawmarkdown.inline.ts to quartz/components/scripts
  • put it somewhere in quartz.layout.ts I put it as the last component before the body (view it in action):
# This file has been auto-generated by i3-config-wizard(1).
# It will not be overwritten, so edit it as you like.
#
# Should you change your keyboard layout some time, delete
# this file and re-run i3-config-wizard(1).
#
# i3 config file (v4)
#
# Please see https://i3wm.org/docs/userguide.html for a complete reference!
@jerlendds
jerlendds / kitty.conf
Last active March 6, 2026 20:30
~/.config/kitty/kitty.conf
background_opacity 0.90
background_blur 20
foreground #c8ffd8
background #020402
cursor #00ff9c
cursor_text_color #020402
selection_foreground #000000
@jerlendds
jerlendds / fstab
Created March 6, 2026 17:50
/etc/fstab
# Static information about the filesystems.
# See fstab(5) for details.
# <file system> <dir> <type> <options> <dump> <pass>
# /dev/nvme0n1p2
UUID=593f3eef-7936-4c46-bcb8-eb3798391dae / ext4 rw,relatime 0 1
# /dev/nvme0n1p1
UUID=42FB-D13E /boot vfat rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=ascii,shortname=mixed,utf8,errors=remount-ro 0 2
@jerlendds
jerlendds / voxtype.toml
Last active March 4, 2026 08:56
~/.config/voxtype/config.toml
# Voxtype Configuration
#
# Location: ~/.config/voxtype/config.toml
# All settings can be overridden via CLI flags
# State file for external integrations (Waybar, polybar, etc.)
# Use "auto" for default location ($XDG_RUNTIME_DIR/voxtype/state),
# a custom path, or "disabled" to turn off. The daemon writes state
# ("idle", "recording", "transcribing") to this file whenever it changes.
# Required for `voxtype record toggle` and `voxtype status` commands.
@jerlendds
jerlendds / hister.service
Created March 2, 2026 21:41
systemd service for hister - Full-text search across your entire browsing history and beyond. Private. Fast. Yours.
[Unit]
Description=Full-text search across your entire browsing history and beyond. Private. Fast. Yours.
After=network.target
[Service]
ExecStart=%h/.local/bin/hister listen
ExecStop=killall -q hister
[Install]
WantedBy=default.target

Open Source is Not About You

The only people entitled to say how open source 'ought' to work are people who run projects, and the scope of their entitlement extends only to their own projects.

Just because someone open sources something does not imply they owe the world a change in their status, focus and effort, e.g. from inventor to community manager.

As a user of something open source you are not thereby entitled to anything at all. You are not entitled to contribute. You are not entitled to features. You are not entitled to the attention of others. You are not entitled to having value attached to your complaints. You are not entitled to this explanation.

If you have expectations (of others) that aren't being met, those expectations are your own responsibility. You are responsible for your own needs. If you want things, make them.

@jerlendds
jerlendds / sh
Created January 7, 2026 17:38
delete all artifacts
USER="jerlendds" # Replace with your GitHub username
# Fetch all repos with write/admin access
REPOS=$(gh api /user/repos\?affiliation=owner,collaborator,organization_member --paginate | python3 -c "import sys, json; repos = json.load(sys.stdin); [print(repo['full_name']) for repo in repos if repo['permissions']['admin'] or repo['permissions']['push']]")
for REPO in $REPOS; do
echo "Processing repository: $REPO"
# Optional: List recent workflow runs
echo "Listing recent workflow runs for $REPO"
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Pure CSS Dotted Aurora</title>
<style>
:root {
--bg: #05060a;
--dot: rgba(255, 255, 255, 0.11);
@jerlendds
jerlendds / electron_drag_disable.css
Created November 9, 2025 10:55 — forked from msuchodolski/electron_drag_disable.css
Disable dragging and selecting html elements (like links, images etc...) in Electron
/**
* MAKE ELECTRON APP FEEL MORE NATIVE
*
* * Prevent dragging all HTML elements, specially:
* - images
* - links (anchors)
*
* * Prevent text selection
*/