🛠️ All DevTools
Showing 1741–1760 of 6206 tools
Last Updated
July 22, 2026 at 08:31 PM
Collaborative Editing in CodeMirror (2020)
Hacker News (score: 39)[Other] Collaborative Editing in CodeMirror (2020)
Metal Gear Solid 2's source code has been leaked on 4chan
Hacker News (score: 123)[Other] Metal Gear Solid 2's source code has been leaked on 4chan
Show HN: Software Engineer to Novelist: Writing a Book Like Coding
Hacker News (score: 12)[Other] Show HN: Software Engineer to Novelist: Writing a Book Like Coding I just published my first book, Means and Motive. ( <a href="https://www.amazon.com/dp/B0GYCZJVGX" rel="nofollow">https://www.amazon.com/dp/B0GYCZJVGX</a> )<p>As a software engineer, I approached writing like a software project. I used familiar tools (Emacs and HTML) for the primary writing.<p>I built my own tool (EPublish) to transform the HTML manuscript into an .epub file, the source for the ebook version. And I wrote shell scripts to reliably and repeatably transform the .epub version into PDF files for the printed editions.<p>I wrote 'design' and 'architecture' docs, describing the world, key actors, and timelines. I kept a task list of chapters and key scenes that needed to be written, in priority order. Along the way, I kept my files version-controlled so I could see the progress of the novel and edit mercilessly, without worrying about keeping old text around in backup files should I want it back for some reason.<p>If you've thought about writing a book, I highly recommend it. There are many similarities to the software engineering process. You'll also gain a newfound appreciation of the design, layout, and typesetting world, exactly how much work goes into each book you read.
Testing macOS on the Apple Network Server 2.0 ROMs
Hacker News (score: 69)[Testing] Testing macOS on the Apple Network Server 2.0 ROMs
Wiki Builder: Skill to Build LLM Knowledge Bases
Hacker News (score: 26)[Other] Wiki Builder: Skill to Build LLM Knowledge Bases
Alert-driven monitoring
Hacker News (score: 80)[Monitoring/Observability] Alert-driven monitoring
Show HN: I built a tool that helps predict HN front page success
Show HN (score: 25)[Other] Show HN: I built a tool that helps predict HN front page success Hey HN community,<p>I built a tool that helps optimize your post for hitting the first page of Show HN.<p>How it works: I used a Hugging Face dataset of all Hacker News posts from the past 3 years and trained a model that predicts how successful your post might be. There's still a lot of randomness on HN, so nothing is guaranteed, but the tool helps optimize your post for higher odds.<p>A couple of interesting findings:<p>- GitHub repo links work x3 better than regular domains - Open-source tools have a steady virality rate (13.9% - one of the highest) - "I built" outperforms "We built" - Using parentheses and mentioning technologies (Lua, Postgres, Rust, etc.) helps a ton.<p>You can try the tool at wannalaunch.com or read the blog posts for more insights from the analysis. The model is also available as open source if you want to retrain it or look under the hood.<p>Happy to hear the feedback!
Hmbown/DeepSeek-TUI
GitHub Trending[CLI Tool] Coding agent for DeepSeek models that runs in your terminal
Show HN: I built a RISC-V emulator that runs DOOM
Hacker News (score: 25)[Other] Show HN: I built a RISC-V emulator that runs DOOM Demo: <a href="https://www.youtube.com/watch?v=f5uygzEmdLw" rel="nofollow">https://www.youtube.com/watch?v=f5uygzEmdLw</a><p>Hi HN,<p>I built a RISC-V emulator that implements the RV32IM instruction set and a minimal syscall interface to run DOOM. A few weeks ago, I got my first output with a simple hello world assembly program.<p>Since then I have been working tirelessly to get DOOM to run.<p>I needed to figure out how to run C programs first, and came across newlib, which allows the underlying environment to implement the syscall stubs one by one until the programs run.<p>I have also added ELF loading, but currently only a single `PT_LOAD` segment is supported.<p>To port DOOM, I used doomgeneric, which was quite convenient to get working once the required stubs were in place.<p>DOOM renders to a fixed area in memory (0x705FDD = VRAM_START):<p><pre><code> 0x7FFFFF +-------------------------------------+ | | | QUEUE_SIZE (32 bytes) | | | 0x7FFFDF +-------------------------------------+ <-- QUEUE_START 0x7FFFDE | QUEUE_READ_IDX | 0x7FFFDD | QUEUE_WRITE_IDX | +-------------------------------------+ | | | | | VRAM (1,024,000 bytes) | | | | | 0x705FDD +-------------------------------------+ <-- STACK_START | Stack | | | | | v | | | | ^ | | | | | Program data + Heap | | | 0x000000 +-------------------------------------+ </code></pre> I made a small linker script so that the entry point of a C program is at _start and virtual address is always 0. That kept the ELF loader code simple.<p>Inputs are written to the queue by rvcore which are then intercepted by DOOM running inside it.
Show HN: Apple's SHARP running in the browser via ONNX runtime web
Hacker News (score: 139)[Other] Show HN: Apple's SHARP running in the browser via ONNX runtime web Hi HN, author here. SHARP is Apple's recent single-image 3D Gaussian splatting model (<a href="https://arxiv.org/abs/2512.10685" rel="nofollow">https://arxiv.org/abs/2512.10685</a>). Their reference code is PyTorch + a pretty heavy pipeline; I wanted to see if it could run in a browser with no server hop, so I exported the predictor to ONNX and ran it via onnxruntime-web with the WebGPU EP.<p>What works: drop in an image, get a .ply you can download or preview live, all on your machine — your image never leaves the tab. The model is large (~2.4 GB sidecar) so first load is slow on a cold cache, but inference itself is a few seconds on a recent Mac.<p>Caveats: SHARP's released weights are research-use only (Apple's model license, not the code's). I host the exported ONNX on R2 so thedemo "just works", but you can also export your own from the upstream Apple repo and upload locally.<p>Happy to talk about it in the comments :)
Kimi K2.6 just beat Claude, GPT-5.5, and Gemini in a coding challenge
Hacker News (score: 240)[Other] Kimi K2.6 just beat Claude, GPT-5.5, and Gemini in a coding challenge
Show HN: I'm running parallel Pi agents on a local sandbox
Show HN (score: 5)[DevOps] Show HN: I'm running parallel Pi agents on a local sandbox I've been running Pi using SmolVM to build SmolVM!<p>SmolVM provides an abstraction over microVMs to easily create sandboxes for coding agents, OpenClaw, or just to build a custom harness.<p>To use it, install using: curl -sSL <a href="https://celesto.ai/install.sh" rel="nofollow">https://celesto.ai/install.sh</a> | bash<p>and then run: smolvm pi start
Windows API is Successful Cross-Platform API (2024)
Hacker News (score: 94)[Other] Windows API is Successful Cross-Platform API (2024)
Voice-AI-for-Beginners – A curated learning path for developers
Hacker News (score: 43)[Other] Voice-AI-for-Beginners – A curated learning path for developers
Show HN: State of the Art of Coding Models, According to Hacker News Commenters
Hacker News (score: 25)[Other] Show HN: State of the Art of Coding Models, According to Hacker News Commenters Hello HN,<p>I was away from my computer for two weeks, and after coming back and reading the latest discussions on HN about coding assistants (models, harnesses), I felt very out of the loop. My normal process would have been to keep reading and figure out the latest and greatest from people's comments, but I wanted to try and automate this process.<p>Basically the goal is to get a quick overview over which coding models are popular on HN. A next iteration could also scan for harnesses that people use, or info on self-hosting or hardware setups.<p>I wrote a short intro on the page about the pipeline that collects and analyzes the data, but feel free to ask for more details or check the Google Sheet for more info.<p><a href="https://hnup.date/hn-sota" rel="nofollow">https://hnup.date/hn-sota</a>
VS Code inserting 'Co-Authored-by Copilot' into commits regardless of usage
Hacker News (score: 576)[Other] VS Code inserting 'Co-Authored-by Copilot' into commits regardless of usage
Flue is a TypeScript framework for building the next generation of agents
Hacker News (score: 41)[Other] Flue is a TypeScript framework for building the next generation of agents
Welcome to Hell Developer
Hacker News (score: 11)[Other] Welcome to Hell Developer
Docker 29 has changed its default image store for new installs
Hacker News (score: 51)[DevOps] Docker 29 has changed its default image store for new installs
Open Design: Use Your Coding Agent as a Design Engine
Hacker News (score: 141)[Other] Open Design: Use Your Coding Agent as a Design Engine