frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Open in hackernews

Ask HN: What Are You Working On?

17•eisleggje•2h ago
It's been a while since the last thread, and I am a curious bee.

Comments

ifh-hn•1h ago
A hand written LAMP webapp to replace an MS Access application at work. Only needs to run locally.
mcapodici•33m ago
https://www.useorganizer.com/ helps you organize stuff primarily but can also double as photo album and private log. Open source and local storage. Not so much working on. It is complete and does what I wanted it to.
ahuth•23m ago
https://prismstudio.dev. A GitHub and GitLab PR inbox and review UI. Built it to help me tame GitHub notification fatigue and see which PRs really need my attention.

Next I’m working on making reviewing large AI-generated PRs easier, but haven’t gotten there yet.

oliwary•21m ago
https://motionparty.net/ - motion controlled web games, by analyzing the Webcam feed locally. In the vein of eye toys for ps2. Works quite well I think, but some elements need improvement. Want to add more games as well.
izietto•18m ago
I think this could have great success. I would easily pay for something like this to play with my kid without Nintendo Whatever.
keizo•18m ago
https://grugnotes.com same thing for almost 4 years, a dead simple notes app and ai multitool
atoav•17m ago
A rental managment system for university workshops that rent out equipment. Since I have been doing this for 5 years I know all the realworld edge cases and what I have is already better than most competitors.
ChrisMarshallNY•15m ago
I’ve been working on a bottom-to-top rewrite of an app that’s been shipping for the last couple of years. The initial version took over two years to write.

It’s coming along great. I’ve only been working on it since February, and it’s very complete, functionally. I’ve been using an LLM, extensively.

The original server took over seven months to write, but with the LLM, I had it done in about a month. The PHP code is great quality.

It’s not all bunnies and flowers, though. I’m spending the next few days, rewriting a Swift viewcontroller that the LLM wrote. It works, but the code is awful. It looks like it was written by a jargon-addled high schooler on Adderall. I just can’t bear to have that level of junk in my app. I asked it to refactor the code to improve the quality, and reduce the size, and it removed all the documentation and logging.

The good news is, is that I’m so far ahead of schedule (a position that I’ve never been in, in forty years of development), that I can afford to do this.

stonecharioteer•15m ago
https://merrilin.ai, the best damned reading app for every platform with an AI chat that's spoiler safe by design. BYOB - bring your own books.
sermakarevich•15m ago
AI:

- spec driven development workflow: https://github.com/sermakarevich/sddw

- fleet, orchestrator for running many coding agents: https://github.com/sermakarevich/fleet

- chunker, which builds smart chunks of the documents with hierarchical organization: https://github.com/sermakarevich/chunker

- ai knowledge wiki, a collection of ai papers and articles organized in hierarchical Wiki

- hierarchical organization of all passed Kaggle competition solutions (write ups and notebooks) - https://github.com/sermakarevich/kaggle_wiki

- claude code workflows, plugin to build custom claude code workflows based on ssd idea: https://github.com/sermakarevich/ccw

izietto•13m ago
https://github.com/mdesantis/ssr-deno Embed Deno JS runtime into Ruby to perform SSR / render JS views without spawning additional JS processes. It's even 100% working, and Deno just merged a PR which allows me to continue working on it: https://github.com/denoland/rusty_v8/pull/1970#issuecomment-...
Agoreddah•12m ago
Gnoseed.com - https://gnoseed.com flashcards for learning. I like to learn the topics in a way the aws certification was done. I started with kubernetes topics and slowly adding more (docker atm). It's free to use, no registration. You can check and give me a feedback of you want.
opticsketch•11m ago
A 3D optical simulator - https://opticsketch.github.io/opticsketch/.

I sometimes need to have a quick but realistic model of an optical system without paying a few thousand for some of the well known commercial offerings, so I've been building this.

devmax1•10m ago
https://zenduxai.com - a tool that helps users generate and launch ad creatives across multiple angles, messages, formats, and aspect ratios in 10 minutes or less.
sillysaurusx•7m ago
I'm building sharc, a port of Hacker News that runs on Common Lisp, implementing all the latest features of HN. (That last bit is the hard part.) https://github.com/shawwn/sharc

I just implemented collapsing comments and root/next/prev/context nav links.

You can read the entire changelog here: https://github.com/shawwn/sharc/tree/main/docs/agents/handof...

I'm working toward making a Hacker News simulator in the vein of https://reddit.com/r/subsimulatorgpt2 (but using HN's code instead of a subreddit).

dgellow•7m ago
Anyone working on non-AI things? Human making software for fellow humans?
boricj•4m ago
Personally, a voxel space renderer for the PlayStation (Comanche terrain style rendering).

In theory, it's really not suited for this because (at least back then) this was designed for computers with:

- relatively large amounts of RAM (uncompressed color+heightmap data takes a lot of space),

- fast CPUs with data caches (it's a 2D trapezoidal walk of a top-down projected fustrum with plenty of additions, multiplications and divisions),

- memory-mapped linear framebuffers (for software rendering).

The PlayStation has none of these things: only 2 MiB of main RAM; an in-order scalar 33 MHz MIPS III processor without a FPU or a data cache, where any CPU load from main RAM stalls the pipeline for 5 cycles, multiplications have a 6 to 13 cycles latency and divisions have a 36 cycles latency; and the only way to touch VRAM is to send commands to the 2D GPU.

What it does have is 4 KiB of I-cache (direct-mapped), 1 KiB of scratchpad with no wait states and a fixed-point GTE coprocessor which is mostly geared towards projecting 3D points onto a 2D screen and not general matrix/vector processing. Meaning that if I get my hot loop within 1024 instructions (and no function calls), fit my working set+stack within 1 KiB and can pipeline the GTE for transformations and the CPU for map scanning/GPU submissions, it might just work.

So far I'm getting decent framerates (like 10-15 FPS at 256x240) with just software projection and GPU line rendering. Right now I'm wrestling with the GTE and various ways to trick it into transforming more points than it's supposed to be able to do, by looking at the fixed-hardware math equations for the various instructions and trying to fit my equations into them (doing stuff like putting relative altitude into X/Y vector registers instead of coordinates and massaging the rest of the values to get screen Y coordinates out of it).

Kind of a hardcore topic to pick for my first homebrew ever, but I craved a simpler low-level challenge after ghidra-delinker-extension.

sandreas•3m ago
[delayed]

Ask HN: What Are You Working On?

17•eisleggje•2h ago•19 comments

What if we legally required politicians to work regular jobs 2 months a year?

2•ekoeko•1h ago•1 comments

Ask HN: How are thinking efforts implemented?

86•simianwords•5d ago•29 comments

Ask HN: Favorite text heavy blogs that are a joy to read?

108•joshmarinacci•3d ago•28 comments

Ask HN: What features do you miss in Google Docs for desktop?

3•mci•3h ago•1 comments

I'm Eric Ries, author of "The Lean Startup" and new book "Incorruptible" – AMA

788•eries•2d ago•568 comments

Ask HN: Want to build something open source on nights and weekends together?

37•vira28•2d ago•14 comments

AWS Bedrock to require sharing data with Anthropic for Mythos and future models

419•TomAnthony•3d ago•253 comments

Ask HN: Would it be useful to have a slop button in addition to flag?

33•BugsJustFindMe•2d ago•23 comments

Ask HN: Why hasn't there been a real competitor to Ticketmaster yet?

262•mdni007•4d ago•237 comments

Notes on DeepSeek

205•vinhnx•2d ago•139 comments

Ask HN: How do you get into a flow state when using AI to code?

89•kilroy123•1d ago•112 comments

Ask HN: Are most corporate SWE jobs performative?

244•hnthrow10282910•2d ago•281 comments

I procrastinate by building tools to stop me from procrastinating: A sad story

20•thisislorenzov•1d ago•9 comments

Ask HN: I Need Help for a Product

8•memoryleakgame•17h ago•5 comments

Ask HN: Influence of Legend of Zelda in Backrooms Movie?

5•dieselgate•15h ago•0 comments

Ask HN: Phishing from 646-257-4500

3•latchkey•11h ago•0 comments

Ask HN: Are you using Spec Driven Development?

3•xpn•11h ago•3 comments

DigitalOcean Ending Student Credit Promotion

4•thepotatodude•12h ago•0 comments

Ask HN: What are tools you have made for yourself since the advent of AI?

438•aryamaan•4d ago•761 comments

Ask HN: Show your AI coded games [June 2026]

11•franze•12h ago•13 comments

Ask HN: What do you think about US Government's Geographic Ban on Fable?

2•akashwadhwani35•5h ago•2 comments

Ask HN: Is anyone shorting the overspend in AI yet?

16•ggm•2d ago•14 comments

Ask HN: Are you still using a Vision Pro?

167•y1n0•3d ago•214 comments

Ask HN: Is there a metric for AI code quality?

6•fractalf•1d ago•5 comments

Ad on the HN front page? Gauntlet AI?

6•tizio13•16h ago•6 comments

Ask HN: Agents get dumber before release of new model version?

9•sporkland•1d ago•5 comments

Ask HN: What internal tool did you build that became a product?

7•nehpets•2d ago•4 comments

Tell HN: Facebook login is down for many

8•nikanj•18h ago•1 comments

Sophia NLU Home Assistant – On Device, Low Compute, No Internet, Voice Assistant

3•aquila416•1d ago•1 comments