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

推荐订阅源

D
Docker
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - Franky
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
A
About on SuperTechFans
博客园 - 【当耐特】
Microsoft Security Blog
Microsoft Security Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
The GitHub Blog
The GitHub Blog
雷峰网
雷峰网
博客园_首页
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
IT之家
IT之家
博客园 - 叶小钗
Google DeepMind News
Google DeepMind News
aimingoo的专栏
aimingoo的专栏
博客园 - 聂微东
B
Blog RSS Feed
H
Help Net Security
Recent Announcements
Recent Announcements
阮一峰的网络日志
阮一峰的网络日志
D
DataBreaches.Net
L
LangChain Blog
Vercel News
Vercel News

Hacker News

GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis Bonsai 1-bit WebGPU - a Hugging Face Space by webml-community Moving a large-scale metrics pipeline from StatsD to OpenTelemetry / Prometheus GitHub - Nightmare-Eclipse/RedSun: The Red Sun vulnerability repository GitHub - SethPyle376/hiraeth: Local AWS emulator focused on fast integration testing, with SQS support, SQLite-backed state, and a debug-friendly web UI. GitHub - macOS26/Agent: Any AI, replaces Claude Code, Cursor, OpenClaw. Over 18 LLM providers (Claude, OpenAI, Gemini, Ollama, Zai, HF, Qwen) wired into a native Mac app that writes code, builds Xcode projects, bumps versions, manages git, automates Safari, use AppleScript, JS or Accessibility, extend Agent! w/ MCP Servers, run tasks from your iPhone via Messages. YouTube now lets you turn off Shorts I Made a Terminal Pager Burgers | マクドナルド公式 Commands — HackerNews CLI documentation ChatGPT for Excel PiCore - Raspberry Pi Port of Tiny Core Linux Live Nation illegally monopolized ticketing market, jury finds Google Broke Its Promise to Me. Now ICE Has My Data. Founding Engineer at Adaptional | Y Combinator CRISPR takes important step toward silencing Down syndrome’s extra chromosome GitHub - saffron-health/libretto: The AI toolkit for building reliable browser automations US v. Heppner (S.D.N.Y. 2026) no attorney-client privilege for AI chats [pdf] Retrofitting JIT Compilers into C Interpreters IPv6 – Google The Accursèd Alphabetical Clock Cybersecurity Looks Like Proof of Work Now Fragments: April 14 Cal.com Goes Closed Source: Why AI Security Is Forcing Our Decision | Cal.com - Scheduling Software for Online Bookings Laravel raised money and now injects ads directly into your agent When moving fast, talking is the first thing to break Too much Discussion of the XOR swap trick – Heather Cafe Introduction to Spherical Harmonics for Graphics Programmers The Grand Line
spectrelang.org
pizza_man · 2026-04-28 · via Hacker News

April 28, 2026

Cubedoom

Cubedoom is an arena shooter implemented entirely in the Spectre Programming Language, it depends on the SDL2 and SDL2_Image dev libraries. It began as an experiment with the languages multi-dimensional array capabilities, on towards its C-interop (the extern-related "header" syntax was introduced in particular for compatibility with the alternate backend of the compiler). It uses raycasting rendering for its 3D world, similar in spirit to early first person shooters such as Wolfenstein 3D or the original DOOM.

At runtime each frame casts a set of rays from the player’s position, stepping through the map grid until a wall collision is detected. The distance to that collision determines the vertical slice height drawn to the screen, producing the illusion of depth, which keeps the engine lightweight. The game features a single enemy type and viewbob, as per classic DOOM, and a health/minimap HUD. The gameplay is intentionally minimal, in that the player navigates a maze-like arena, engages in combat with the enemies, and attempts to survive as long as possible.

The git repository for cubedoom itself can be found here.

Next on the roadmap is adding sound and more enemy types, along with an ammo-counting system. Spectre itself, and cubedoom both remain open to contributions.


April 25, 2026

v0.0.5

New in v0.0.5:

  • --translate-c flag for translating from C code to Spectre code
  • New experimental LLVM backend
  • New experimental C99 backend
  • Improved type-level invariant syntax
  • Improved compile times due to optimizations in semantic analysis and module resolution