Postingan

Show HN: I made R/place for LLMs https://ift.tt/emAnowl

Show HN: I made R/place for LLMs I built AI Place, a vLLM-controlled pixel canvas inspired by r/place. Instead of users placing pixels, an LLM paints the grid continuously and you can watch it evolve live. The theme rotates daily. Currently, the canvas is scored using CLIP ViT-B/32 against a prompt (e.g., Pixelart of ${theme}). The highest-scoring snapshot is saved to the archive at the end of each day. The agents work in a simple loop: Input: Theme + image of current canvas Output: Python code to update specific pixel coordinates + One word description Tech: Next.js, SSE realtime updates, NVIDIA NIM (Mistral Large 3/GPT-OSS/Llama 4 Maverick) for the painting decisions Would love feedback! (or ideas for prompts/behaviors to try) https://art.heimdal.dev January 5, 2026 at 02:50AM

Show HN: Hover – IDE style hover documentation on any webpage https://ift.tt/9yuoOMA

Show HN: Hover – IDE style hover documentation on any webpage I thought it would be interesting to have ID style hover docs outside the IDE. Hover is a Chrome extension that gives you IDE style hover tooltips on any webpage: documentation sites, ChatGPT, Claude, etc. How it works: - When a code block comes into view, the extension detects tokens and sends the code to an LLM (via OpenRouter or custom endpoint) - The LLM generates documentation for tokens worth documenting, which gets cached - On hover, the cached documentation is displayed instantly A few things I wanted to get right: - Website permissions are granular and use Chrome's permission system, so the extension only runs where you allow it - Custom endpoints let you skip OpenRouter entirely – if you're at a company with its own infra, you can point it at AWS Bedrock, Google AI Studio, or whatever you have Built with TypeScript, Vite, and the Chrome extension APIs. Coming to the Chrome Web Store soon. Would love feedbac...

Show HN: 3D Printed Difference Engine [video] https://ift.tt/0IobrXx

Show HN: 3D Printed Difference Engine [video] https://www.youtube.com/watch?v=NvORut3h904 January 4, 2026 at 11:40PM

Show HN: A New Year gift for Python devs–My self-healing project's DNA analyzer https://ift.tt/Ex1RYwP

Show HN: A New Year gift for Python devs–My self-healing project's DNA analyzer I built a system that maps its own "DNA" using AST to enable self-healing capabilities. Instead of a standard release, I’ve hidden the core mapping engine inside a New Year gift file in the repo for those who like to explore code directly. It’s not just a script; it’s the architectural vision behind Ultra Meta. Check the HAPPY_NEW_YEAR.md file for the source https://ift.tt/5jg3I0R January 4, 2026 at 02:20AM

Show HN: Turbo – Python Web Framework https://ift.tt/FlvbALf

Show HN: Turbo – Python Web Framework https://ift.tt/4Vskfox January 4, 2026 at 12:15AM

Show HN: FP-pack – Functional pipelines in TypeScript without monads https://ift.tt/1wtSvD5

Show HN: FP-pack – Functional pipelines in TypeScript without monads Hi HN, I built fp-pack, a small TypeScript functional utility library focused on pipe-first composition. The goal is to keep pipelines simple and readable, while still supporting early exits and side effects — without introducing monads like Option or Either. Most code uses plain pipe/pipeAsync. For the few cases that need early termination, fp-pack provides a SideEffect-based pipeline that short-circuits safely. I also wrote an “AI agent skills” document to help LLMs generate consistent fp-pack-style code. Feedback, criticism, or questions are very welcome. https://ift.tt/ulWv7E2 January 3, 2026 at 10:00PM

Show HN: I mapped System Design concepts to AI Prompts to stop bad code https://ift.tt/6mQ1IiW

Show HN: I mapped System Design concepts to AI Prompts to stop bad code https://ift.tt/bDWjCXF January 3, 2026 at 01:45AM