Skip to content

Instantly share code, notes, and snippets.

# Country Channel EPG ID
12.219 United States 5 Star Max US 5starmax.us
12.220 United States A&E US aande.us
12.221 United States ABC 10 Miami US abc10wplg.us
12.222 United States ABC 11 Louisville US abc11whas.us
12.223 United States ABC 13 Houston US abc13ktrktv.us
12.224 United States ABC 13 Alaska US abc13kyur.us
12.225 United States ABC Tampa Bay US abc28wfts.us
12.226 United States ABC 5 Puerto Rico US abc5wora.us
12.227 United States ABC 7 LA US abc7kabctv.us
@burkeholland
burkeholland / ainstall.md
Last active March 6, 2026 00:57
Ultralight Orchestration

Ultralight Orchestration

A minimal multi-agent system with an orchestrator, a planner, a coder, and a designer working together providing orchestration between Claude, Codex and Gemini.

Instructions

Install all agents listed below into VS Code Insiders...

Title Type Description
@hakkm
hakkm / thinkpad p14s gen5 amd.md
Last active March 6, 2026 00:55
My Search Collection about Thinkpad P14s gen 5 (AMD), Linux focused

Problems/Fixes

1. power drain in sleep mode

Potential sleep issues that may require BIOS updates.

Solution 1

s2idle sucks, but you can make it suck less if you do the kernel param acpi.ec_no_wakeup=1 (on the P14s Gen 5 AMD, at least). This results in a normal-ish power drain in sleep mode and the laptop no longer gets hot. I haven't got a hard number to give you, but it doesn't self-drain in several hours. Comment link: https://www.reddit.com/r/thinkpad/comments/1ex38yg/which_thinkpad_is_best_for_linux_t14s_gen_4_vs/

Solution 2

https://bbs.archlinux.org/viewtopic.php?pid=2195411#p2195411

@DerFichtl
DerFichtl / clamav-macosx.md
Last active March 6, 2026 00:51
clamav on mac osx - install and configure the virus scanner on mac osx
layout title published tags
post
clamav - install and configure on mac osx
true
blog
clamav

Install Clamav

Install clamav via homebrew

#!/usr/bin/env sh
# SPDX-License-Identifier: CC0-1.0
#
# dump-launch-script-wrapper.sh
#
# This is a wrapper command for Prism Launcher. As a side effect to launching
# an instance, it dumps a shell script to $1 that launches the instance.
#
# Usage: In Prism/Fjord Launcher, either in Edit Instance -> Settings or global
# Settings, go to "Custom Commands" and then enter
@dori4n
dori4n / Office 2021 ISO Links at Microsoft.md
Last active March 6, 2026 00:36
Office 2021 ISO Download Links at Microsoft
@qoomon
qoomon / conventional-commits-cheatsheet.md
Last active March 6, 2026 00:33
Conventional Commits Cheatsheet

Codex Reviewer

You are a code reviewer agent powered by OpenAI Codex. Your job is to review code changes and provide actionable feedback.

Workflow

  1. Receive a review request (diff, file paths, or a description of changes).
  2. Use the mcp__codex__codex tool to start a Codex review session with the relevant code context.
  3. If follow-up analysis is needed, use mcp__codex__codex-reply with the thread ID from step 2.
  4. Summarize Codex's findings into a clear, structured review for the user.
@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active March 6, 2026 00:29
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:
@friedkeenan
friedkeenan / epicycle.py
Created January 17, 2021 23:54
A manim scene for drawing stuff with epicycles using Fourier shenanigans
import random
import numpy as np
import manim as mn
from svg.path import parse_path
def integrate(func, a, b, *, dx=0.01):
return sum(func(x) * dx for x in np.arange(a, b, dx))
class SVGPath(mn.VMobject):
def __init__(self, path_str, *, num_points=500, **kwargs):