惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
Visual Studio Blog
罗磊的独立博客
小众软件
小众软件
T
Tailwind CSS Blog
宝玉的分享
宝玉的分享
博客园_首页
N
Netflix TechBlog - Medium
B
Blog
Recent Announcements
Recent Announcements
Y
Y Combinator Blog
Blog — PlanetScale
Blog — PlanetScale
L
LangChain Blog
F
Fortinet All Blogs
The GitHub Blog
The GitHub Blog
Stack Overflow Blog
Stack Overflow Blog
C
Check Point Blog
Last Week in AI
Last Week in AI
Jina AI
Jina AI
V
V2EX
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 叶小钗
博客园 - 【当耐特】

Show HN

Show HN: AI agents for UK GDAD PCF roles and their skills The Two Pillars: Mixer Mode and Meta-Software in the Reorganization of Software Work After AI GitHub - JaiCode08/teleport-env What 1,000+ Harness Experiments Taught Me About Self-Improving Agents Show HN: Liiists, a Markdown-first, iOS and CLI list app SwiperTab – Get this Extension for 🦊 Firefox (en-US) GitHub - kouhxp/fftext: Summarize, explain, fact-check, or translate any text, URL, or file. No GPU. No cloud. One command GitHub - sweetpad-dev/sweetpad: Develop Swift/iOS projects using VSCode GitHub - dogmaticdev/IRON: IRON a.k.a. Intermediate Representation Object Notation is a Interpreter/Database that is used to create Programming Languages. GitHub - sjhalani7/vaen: Package your AI coding harness into a portable .agent file, and share it across repos, teams, & the community without ever having to copy-paste instructions, skills, MCP config, or secrets. Show HN: Gandalf the Grader Show HN: Citadeld – replay any CI failure locally from a single file GitHub - tdortman/cuSBF: High-Performance GPU Super Bloom Filter coral-ai/claude-code-token-xray at main · Coral-Bricks-AI/coral-ai GitHub - ulyssestenn/funes: Funes is a Git-based framework for LLM-managed knowledge work: an AI Librarian ingests raw sources, builds an interlinked Markdown knowledge base, and uses it to produce cited reports, analyses, and other outputs. GitHub - ThatXliner/gah: Git Add Hunk, built for agents to use GitHub - harmont-dev/harmont-cli: Command-line client for the Harmont CI platform GitHub - brooksmcmillin/mcp-authflow: OAuth 2.0 Authorization Server framework for MCP servers GitHub - javaid-codes/audit-supply-chain-agents GitHub - amorey/gochan: A small library of common channel architectures for Go, inspired by Rust GitHub - arifozgun/OpenGem: Free, Open-Source AI API Gateway with Gemini, OpenAI & Anthropic Compatibility in 1 file GitHub - Pranesh950/BioPetals: 🌸 Run BIOxAI models at home, BitTorrent-style. Fine-tuning and inference up to 10x faster than offloading GitHub - cnguyen14/bounty-doctor: Diagnose a GitHub bounty issue before you waste hours: detects honeypot scam repos, AI-bot attempt swarms, and stale contests. Show HN: CoreMCP – MCP Server for On-Prem DBs Show HN: KittyHTML – Render HTML/CSS as an inline image in your terminal GitHub - bingud/filemat: Web-based file manager Show HN: TruthLens – Free multi-signal deepfake image detector GitHub - apexlocal-jz/claude-usage-tray: Windows system-tray app showing your Claude Code rate-limit usage at a glance. Zero deps, ~300 lines of PowerShell. Cross-IDE (works regardless of VS Code, Cursor, plain terminal). Release v0.1.2.1 · kouhxp/yapsnap GitHub - noopolis/moltnet: Self-hostable chat network for AI agents. Pre-built bridges for Claude Code, Codex, and the Claws. Rooms, DMs, history. No Slack bots, no Matrix, no glue code.
GitHub - crlang44/AuroraBg
crlang44 · 2026-06-11 · via Show HN

Aurora — live animated background for VS Code & Antigravity

A slow, iridescent aurora shader that renders behind your code editor. It's a single self-contained file (aurora-vscode.js) — WebGL shader + the styling needed to make the editor surfaces see-through, all in one.

Aurora Live Animated Background Demo

Disclaimers: Yes this was built by AI, and no it will not make you more productive (but I think its cool nonetheless)


What you get

  • A calm, always-moving aurora behind your editor, sidebar, and panels.
  • Theme-aware: sticky scroll keeps your color theme's own colors, so pinned lines stay readable.
  • A small CONFIG block at the top of the file to tune brightness, dimming, speed, minimap, and sticky-scroll opacity.

Requirements

  • VS Code or Antigravity (any recent version).
  • The Custom CSS and JS Loader extension:
    • be5invis.vscode-custom-css (for Visual Studio Marketplace / VS Code)
    • s-h-a-d-o-w.vscode-custom-css (for Open-VSX / Antigravity)

⚠️ This works by injecting a script into the editor's UI. It's a popular but unofficial approach — read Things to know before you start.


Install

1. Install the loader extension

Open the Extensions panel and search for "Custom CSS and JS Loader"Install.

  • Visual Studio Marketplace: publisher be5invis (be5invis.vscode-custom-css)
  • Open-VSX: publisher s-h-a-d-o-w (s-h-a-d-o-w.vscode-custom-css)

2. Save the Aurora file somewhere permanent

Put aurora-vscode.js in a stable folder — e.g. ~/aurora/aurora-vscode.js. If you later move or delete it, the background disappears.

3. Point your editor at it

Open your settings JSON: Command Palette (Cmd/Ctrl+Shift+P) → "Preferences: Open User Settings (JSON)" — and add:

Path format by OS:

  • macOS / Linux: file:///absolute/path/aurora-vscode.js
  • Windows: file:///C:/Users/YOURNAME/aurora/aurora-vscode.js

4. Enable it

Command Palette → "Enable Custom CSS and JS" → click Restart when prompted.

That's it — the aurora should now be drifting behind your code.


Tuning

Open aurora-vscode.js and edit the CONFIG block at the top:

const CONFIG = {
  opacity: 0.60, // how visible the aurora is behind your code   (0 – 1)
  dim:     0.45, // extra dark scrim for text readability         (0 – 1)
  speed:   1.00, // motion speed multiplier                       (0.2 – 3)
  minimap: 0.45, // minimap translucency so aurora shows through  (0 = invisible, 1 = solid)
  sticky:  0.92, // sticky-scroll backing opacity (uses your THEME's color)
};

After any change, run Command Palette → "Reload Custom CSS and JS".

Aurora Tuning Demo

Tips

  • Hard to read your code? Raise dim or lower opacity.
  • Want the minimap fully solid again? Set minimap: 1 (or disable it in settings with "editor.minimap.enabled": false).
  • Want sticky scroll fully opaque? Set sticky: 1.
  • A dark color theme looks best, since some theme surfaces stay tinted (the preview shows the Tokyo Night Storm theme).

Things to know

This extension patches the editor's own UI files, which has a few side effects:

  • "Your installation appears corrupt" warning — expected; it just means a UI file was modified. Click the gear icon → "Don't Show Again".
  • Re-enable after every update — app updates overwrite the patch. Just run "Enable Custom CSS and JS" again.
  • Permissions (macOS/Linux) — if enabling fails, the loader extension may not have permission to modify the editor's files. Refer to the Custom CSS and JS Loader extension page/repository for instructions on resolving permissions.

Uninstall

  1. Command Palette → "Disable Custom CSS and JS".
  2. Remove the vscode_custom_css.imports entry from your settings JSON.
  3. (Optional) Uninstall the Custom CSS and JS Loader extension and delete aurora-vscode.js.

How it works (short version)

The script does two things:

  1. Makes the editor see-through — most VS Code surfaces read their background from CSS variables (e.g. --vscode-editor-background); the script blanks those, plus a handful of elements that hardcode a background. Pop-ups and sticky scroll are kept readable on purpose.
  2. Draws the aurora — a full-window WebGL <canvas> is placed behind the workbench (with a dark scrim for contrast) and runs a noise-based shader every frame. No images, no video — just math, redrawn live.