🛠️ All DevTools

Showing 1741–1760 of 6206 tools

Last Updated
July 22, 2026 at 08:31 PM

[Other] Collaborative Editing in CodeMirror (2020)

Found: May 03, 2026 ID: 4485

[Other] Metal Gear Solid 2's source code has been leaked on 4chan

Found: May 03, 2026 ID: 4453

[Other] Show HN: Software Engineer to Novelist: Writing a Book Like Coding I just published my first book, Means and Motive. ( <a href="https:&#x2F;&#x2F;www.amazon.com&#x2F;dp&#x2F;B0GYCZJVGX" rel="nofollow">https:&#x2F;&#x2F;www.amazon.com&#x2F;dp&#x2F;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 &#x27;design&#x27; and &#x27;architecture&#x27; 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&#x27;ve thought about writing a book, I highly recommend it. There are many similarities to the software engineering process. You&#x27;ll also gain a newfound appreciation of the design, layout, and typesetting world, exactly how much work goes into each book you read.

Found: May 03, 2026 ID: 4460

[Testing] Testing macOS on the Apple Network Server 2.0 ROMs

Found: May 03, 2026 ID: 4474

[Other] Wiki Builder: Skill to Build LLM Knowledge Bases

Found: May 03, 2026 ID: 4490

Alert-driven monitoring

Hacker News (score: 80)

[Monitoring/Observability] Alert-driven monitoring

Found: May 03, 2026 ID: 4454

[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&#x27;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) - &quot;I built&quot; outperforms &quot;We built&quot; - 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!

Found: May 03, 2026 ID: 4452

Hmbown/DeepSeek-TUI

GitHub Trending

[CLI Tool] Coding agent for DeepSeek models that runs in your terminal

Found: May 03, 2026 ID: 4447

[Other] Show HN: I built a RISC-V emulator that runs DOOM Demo: <a href="https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=f5uygzEmdLw" rel="nofollow">https:&#x2F;&#x2F;www.youtube.com&#x2F;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 +-------------------------------------+ &lt;-- QUEUE_START 0x7FFFDE | QUEUE_READ_IDX | 0x7FFFDD | QUEUE_WRITE_IDX | +-------------------------------------+ | | | | | VRAM (1,024,000 bytes) | | | | | 0x705FDD +-------------------------------------+ &lt;-- 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.

Found: May 03, 2026 ID: 4457

[Other] Show HN: Apple's SHARP running in the browser via ONNX runtime web Hi HN, author here. SHARP is Apple&#x27;s recent single-image 3D Gaussian splatting model (<a href="https:&#x2F;&#x2F;arxiv.org&#x2F;abs&#x2F;2512.10685" rel="nofollow">https:&#x2F;&#x2F;arxiv.org&#x2F;abs&#x2F;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&#x27;s released weights are research-use only (Apple&#x27;s model license, not the code&#x27;s). I host the exported ONNX on R2 so thedemo &quot;just works&quot;, but you can also export your own from the upstream Apple repo and upload locally.<p>Happy to talk about it in the comments :)

Found: May 03, 2026 ID: 4455

[Other] Kimi K2.6 just beat Claude, GPT-5.5, and Gemini in a coding challenge

Found: May 03, 2026 ID: 4446

[DevOps] Show HN: I'm running parallel Pi agents on a local sandbox I&#x27;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:&#x2F;&#x2F;celesto.ai&#x2F;install.sh" rel="nofollow">https:&#x2F;&#x2F;celesto.ai&#x2F;install.sh</a> | bash<p>and then run: smolvm pi start

Found: May 03, 2026 ID: 4448

[Other] Windows API is Successful Cross-Platform API (2024)

Found: May 03, 2026 ID: 4451

[Other] Voice-AI-for-Beginners – A curated learning path for developers

Found: May 02, 2026 ID: 4445

[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&#x27;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:&#x2F;&#x2F;hnup.date&#x2F;hn-sota" rel="nofollow">https:&#x2F;&#x2F;hnup.date&#x2F;hn-sota</a>

Found: May 02, 2026 ID: 4444

[Other] VS Code inserting 'Co-Authored-by Copilot' into commits regardless of usage

Found: May 02, 2026 ID: 4443

[Other] Flue is a TypeScript framework for building the next generation of agents

Found: May 02, 2026 ID: 4440

Welcome to Hell Developer

Hacker News (score: 11)

[Other] Welcome to Hell Developer

Found: May 02, 2026 ID: 4442

[DevOps] Docker 29 has changed its default image store for new installs

Found: May 02, 2026 ID: 4481

[Other] Open Design: Use Your Coding Agent as a Design Engine

Found: May 02, 2026 ID: 4441
Previous Page 88 of 311 Next