A minimal multi-agent system with an orchestrator, a planner, a coder, and a designer working together providing orchestration between Claude, Codex and Gemini.
Install all agents listed below into VS Code Insiders...
| Title | Type | Description |
|---|
| # | 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 |
Potential sleep issues that may require BIOS updates.
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/
https://bbs.archlinux.org/viewtopic.php?pid=2195411#p2195411
| #!/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 |
See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
You are a code reviewer agent powered by OpenAI Codex. Your job is to review code changes and provide actionable feedback.
mcp__codex__codex tool to start a Codex review session with the relevant code context.mcp__codex__codex-reply with the thread ID from step 2.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:
Console tab| 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): |