Skip to content

Instantly share code, notes, and snippets.

View NormTurtle's full-sized avatar
👽
dabbling arround

Omi NormTurtle

👽
dabbling arround
View GitHub Profile
@tatumroaquin
tatumroaquin / archlinux-qemu-kvm.md
Last active February 28, 2026 06:54
QEMU-KVM Installation for Arch Linux

QEMU-KVM in Arch Linux

Check Virtualization Support

lscpu | grep -i Virtualization
  • VT-x for Intel
  • AMD-Vi for AMD

Ensure that your kernel includes KVM modules

@sts10
sts10 / rust-command-line-utilities.markdown
Last active February 16, 2026 14:09
A curated list of command-line utilities written in Rust

A curated list of command-line utilities written in Rust

Note: I have moved this list to a proper repository. I'll leave this gist up, but it won't be updated. To submit an idea, open a PR on the repo.

Note that I have not tried all of these personally, and cannot and do not vouch for all of the tools listed here. In most cases, the descriptions here are copied directly from their code repos. Some may have been abandoned. Investigate before installing/using.

The ones I use regularly include: bat, dust, fd, fend, hyperfine, miniserve, ripgrep, just, cargo-audit and cargo-wipe.

  • atuin: "Magical shell history"
  • bandwhich: Terminal bandwidth utilization tool
/*
* Global Media Controls Panel
* Written by Tam710562
*/
(() => {
'use strict';
const gnoh = {
i18n: {
#!/bin/bash
# Set the function-key lock state on system boot for Fedora 37. Adapted from hglee's solution on Linux Mint:
# https://forums.linuxmint.com/viewtopic.php?p=2247849&sid=dd549cc8f87191b1bf45a5727cdd0fae#p2247849
# Current PARAM and MODULE variables defined for ASUS ExpertBook B5
# Valid values depend on target system.
# Try something like `sudo find / | grep fnlock` or `find /sys/module | grep fn` to locate the relevant system module.
PARAM=fnlock_default
@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active March 4, 2026 00:04
Complete Recent Discord Quest

Complete Recent Discord Quest

Note

This does not works in browser for quests which require you to play a game! Use the desktop app to complete those.

How to use this script:

  1. Accept a quest under the Quests tab
  2. Press Ctrl+Shift+I to open DevTools
  3. Go to the Console tab
  4. Paste the following code and hit enter:
@Nullctipus
Nullctipus / Blender-RosePine.xml
Last active November 28, 2025 19:13
Rose Pine theme for blender [4-5].x
<bpy>
<Theme>
<user_interface>
<ThemeUserInterface
menu_shadow_fac="0.3"
menu_shadow_width="4"
icon_alpha="1"
icon_saturation="0.5"
widget_emboss="#524f6705"
editor_outline="#524f67"
@amanat361
amanat361 / TextCube.tsx
Created August 25, 2025 20:17
3D cube for LLM streams
import React, { useState, useEffect, useRef } from ‘react’;
const TextCube = () => {
const [faceTexts, setFaceTexts] = useState([’’, ‘’, ‘’, ‘’, ‘’, ‘’]);
const [prompt, setPrompt] = useState(’’);
const [isGenerating, setIsGenerating] = useState(false);
const streamingIntervals = useRef([]);
// Maximum characters to display per face
const maxChars = 140;