Ask HN: What Are You Working On? (June 2025)

140 david927 482 6/29/2025, 8:21:28 PM
What are you working on? Any new ideas which you're thinking about?

Comments (482)

dmitrysergeyev · 1m ago
I made Peekly[0] because I was tired of feeling FOMO about all the stuff happening in AI, dev tools, indie hacking, etc. I couldn’t keep up with blogs, feeds, and newsletters — it was too much.

Peekly pulls from high-quality sources using LLM + retrieval, then sends you a regular digest with just the most relevant content according to your interests. You can even give it custom prompts to control what it finds and how it summarizes — super useful if you want a particular angle on a topic.

YC folks can use code YC256 for an extra free month (on top of the 14-day trial). Would love to hear what you think!

[0] https://peekly.ai/

csomar · 2m ago
https://codeinput.com

Building tools to improve the developer experience especially in regarding to Git and CI/CD. Currently, working on an improved CodeOwners for GitHub. CLI is already completed and open source: https://github.com/CodeInputCorp/cli

ArneVogel · 27m ago
Hej, I made FisherLoop[1] to learn Swedish. FisherLoop are interactive audiobooks where I use TTS with word level timestamps to highlight the words as they are spoken. This helps me pick up on pronounciation and grammar in a, for me, natural way. Additionally, I added flashcards from the books + word lookup. I am adding new books right now. If you have any requests: public domain books, which are around one hour reading time let me know :)

I am using cerebras for book translations and verb extraction and all LLM related tasks. For TTS I am using cartesia. I have played around with Elevenlabs and they have slightly natural sounding TTS but their pricing is too steep for this project. Books would cost a couple of hundred euros to process.

[1] https://www.fisherloop.com/en/

rollinDyno · 14m ago
I'm interested but I'm not getting the confirmation email.
coolandsmartrr · 1h ago
I made a film called "Searching For Kurosawa". This short documentary chronicles the story of Kawamura, a man who worked with legendary Japanese director Akira Kurosawa on the set of his opus "Ran". Kawamura was working in the BTS crew, but his footage got confiscated. It took almost 40 years to recover the footage and present that as his feature film.

My film got screened at the Academy Award-qualifying Bali International Film Festival and the Marina Del Rey Film Festival in the past month. It will be screening next month in New York City at the Asian American International Film Festival.

kinow · 46m ago
Awesome! I hope I can find a way to watch it in Barcelona.
tamnd · 1h ago
Repo: https://github.com/mochilang/mochi

I'm building Mochi, a small programming language with a custom VM and a focus on querying structured data (CSV, JSON, and eventually graph) in a unified and lightweight way.

It started as an experiment in writing LINQ-style queries over real datasets and grew into a full language with:

- declarative queries built into the language

- a register-based VM designed for analysis and optimization

- an intermediate representation with liveness analysis, constant folding, and dead code elimination

- static type inference, inline tests, and golden snapshot support

Example:

  type Person {
    name: string
    age: int
  }

  let people = load "people.yaml" as Person

  let adults = from p in people
             where p.age >= 18
             select { name: p.name, age: p.age }

  for a in adults {
    print(a.name, "is", a.age)
  }

  save adults to "adults.json"

The long-term goal is to make a small, expressive language for data pipelines, querying, and agent logic, without reaching for Python, SQL, and a half-dozen libraries.

Happy to chat if you're into VMs, query engines, or DSLs.

z3ugma · 7h ago
Still working on: an enclosure-compatible open-source version of the 2nd gen Nest thermostat. It reuses the enclosure, encoder ring, display, and mounts of the Nest but replaces the "thinking" part with an open-source PCB that can interact with Home Assistant.

- The encoder ring which works like an LED mouse, but in reverse: Fully reverse-engineered and on its own demo PCB

- The faceplate PCB, which does the actual control of the thermostat wires, has been laid out, but the first version missed a really-obvious problem involving the behavior on power-on with certain of the GPIO pins from the ESP32, so I've got rev 3 on order from the PCB manufacturer.

Nest Thermostats of the 1st and 2nd generation will no longer be supported by Google starting October 25, 2025. You will still be able to access temperature, mode, schedules, and settings directly on the thermostat – and existing schedules should continue to work uninterrupted. However, these thermostats will no longer receive software or security updates, will not have any Nest app or Home app controls, and Google will end support for other connected features like Home/Away Assist. It has been pretty-badly supported in Home Assistant for over a year anyway, missing important connected features.

balloob · 2h ago
Sounds very cool! Also interested in how to follow progress. Is it using ESPHome?
chunkles · 5h ago
Is this project online anywhere yet that I can watch for it to be ready?
ryandrake · 7h ago
Wow! Useful work, if that’s true about them planning to remotely nerf everyone’s product.

Yet another example of why not to buy a product that needs to be tethered to its manufacturer to work. Good luck. I’d be willing to beta test (I’d have to check what rev mine is)

jesse__ · 7h ago
I've been working on a 3D voxel-based game engine for like 10 years in my spare time. The most recent big job has been to port the world gen and editor to the GPU, which has had some pretty cute knock-on effects. The most interesting is you can hot-reload the world gen shaders and out pop your changes on the screen, like a voxel version of shadertoy. https://github.com/scallyw4g/bonsai

I also wrote a metaprogramming language which generates a lot of the editor UI for the engine. It's a bespoke C parser that supports a small subset of C++, which is exposed to the user through a 'scripting-like' language you embed directly in your source files. I wrote it as a replacement for C++ templates and in my completely unbiased opinion it is WAY better.

https://github.com/scallyw4g/poof

aeve890 · 4h ago
10 years? Man, I envy you. Seriously. You say you work on it in your spare time so it's no like is your life passion or something like that right? How do you keep momentum? I have hundred of never finished projects, and I really struggle to finish them or work on them enough to want to keep doing it. Teach me.
jesse__ · 3h ago
Hah, thanks for the kind words <3

In all seriousness, I think I have the same propensity to have a hundred unfinished projects and have a hard time finding motivation to complete them. The difference might be that I have this 'big' project called a 'game engine' that wraps them all up into some semblance of a cohesive whole. For example, projects that are incomplete, but mostly just good enough to be serviceable (sometimes barely):

1. Font rasterizer 2. Programming language 3. Imgui & layout engine 4. 3D renderer 5. Voxel editor

.. etc

Now, every one of those on their own is pretty boring and borderline useless .. there are (mostly) much better options out there for each in their specific domain. But, squash them all together and it's starting to become a useful thing.

It just happened that I enjoy working on engine tech and I picked a huge project I have no hope of ever finishing. Take from that what you will

"I hate to advocate drugs, alcohol, violence or insanity to anyone, but they've always worked for me. --Hunter S. Thompson

keyserj · 14m ago
I'm building an app[1] (repo[2]) that helps you visualize perspectives and details about complex problems so that it's easier to figure what to do about them.

Right now it's basically a diagramming app specifically for the domain of problem-solving. I think an issue with it is that it's too hard for new users, so I've spent the last few weeks UX designing a view (figma prototype[3]) that I think is more intuitive to use (though sacrifices some features).

I'm currently working on code design for this view and am hoping to implement in the next few weeks!

[1] https://ameliorate.app/

[2] https://github.com/amelioro/ameliorate

[3] https://www.figma.com/proto/psTRolY8LTVOef3fkCJ0B4/Simplifie...

sodality2 · 7h ago
After 2+ years of maintaining the FOSS lightweight Reddit frontend Redlib [0], I realized that my niche but extremely detailed knowledge and experience of using Reddit's endpoints might be useful. After reverse engineering the mobile app and writing code to emulate nearly every aspect of its behavior, plus writing a codegen framework that will auto-update my code from analyzing the behavior from an Android emulator, I can pretty easily replay common user flows from any IP around the world, collecting and extracting the data. Some use cases:

* OSINT (r00m101 just beat me to it by launching...)

* Research into recommendation algorithms, advertising placement algorithms, etc

* Marketing (ad libraries, detailed analysis of content given data not even exposed to the mobile app due to some interesting side channels, things like trend analysis, etc)

* Market research for products

* Sales teams can use it to find exact mentions of other products. Eg: selling crash reporting software? Look up your target accounts' brands and find examples of complaints.

Plus a few more with more imagination.

So I'm working on a site that allows user access to some of the read-only functions available here. Coming soon :tm:. Been really fun building it all in Rust, though :) If you're interested in anything here, email in profile.

[0]: https://github.com/redlib-org/redlib

Karrot_Kream · 7h ago
Is there any interest in factoring the Reddit parts out of the UI code? I've been thinking of taking a stab at that myself but figured this would be a good place to ask if you have plans :)
sodality2 · 7h ago
Do you mean a way to have the Reddit app render content from some generic social media provider, while keeping the UI? I haven't thought about that yet. I'm sure it would be possible, but that would require tearing out a lot of backend code and replacing it 1:1. Most of my work has been on the network side of the app, and not much modification; just introspection and inspecting behavior.

My main question: why, do you like the UI? I honestly really hate the reddit app, I haven't seriously used it for browsing since I fixed up Libreddit into Redlib :)

Karrot_Kream · 7h ago
I don't like the Reddit app personally but I also do like something a bit more dynamic than what Redlib offers. Personally I'm fine with JS on the frontend and frameworks like React as long as they're implemented well.

I'd also just like to play around with different styles of frontend just as a way to hack on things.

sodality2 · 7h ago
Ah, I see. You can get pretty far with Redlib as a base + modifying html templates. They're very flexible and easy to read/extend. Though it relies on public methods to access Reddit, not my mobile app secret sauce :)
Karrot_Kream · 6h ago
Oh I thought there was interesting user agent stuff going on in Redlib itself but sounds like not. I'll use the public methods then thanks!
xyst · 4h ago
~2 years ago, Reddit was cracking down on this type of usage. This lead to a mass exodus of users to lemmynet and other decentralized platforms.

What makes you special in this aspect? Seems you are small fish now, but if your niche project picks up steam. Nothing to stop them from cutting you off or forcing you to court/injunction and waste your personal resources.

sodality2 · 3h ago
That crackdown was for regular API usage aka just regular content access, which definitely isn’t special. Most other “reddit data access” sites either use some sort of headless browser or just the JSON endpoints, which are brittle and limited, whereas I can access the private mobile API that the app uses for ad/recommendation distribution at a much larger scale. These things aren’t accessible via the API. Picture it as: an API where you can access just content, vs having programmatic access to every piece of data the mobile app can access, which unintuitively is not limited to what the mobile app displays (there’s other interesting fields available).
adityaathalye · 19m ago
1. A general-purpose Bitemporal Data Schema using SQLite (for storage) and Clojure (for data processing).

I'm trying to see if I can "get away with it": no schema migration, no fixed views, one tenant per DB, local-first-friendliness.

The general approach is "Datomic meets XTDB meets redplanetlabs/Rama meets Local First". Conceptually, the lynchpin "WORLD FACTs" table looks like this:

  | tx_id  | valid_id | tx_t    | valid_t | origin_t | entity | attribute | value | assert | namespace     | user | role |
  |--------+----------+---------+---------+----------+--------+-----------+-------+--------+---------------+------+------|
  | uuidv7 | uuidv7   | unix ms | unix ms | uuid7    | adi    | problems  | sql   |      1 | org.evalapply | adi  | boss |
2. "Writing for Nerds"

A workshop I've been experimenting with, using willing friends as guinea pigs. To help people remove friction from being able to "spool brain to disk". The sales-y part is here, with more context / explanation about what it is about and what it is not about: https://www.evalapply.org/index.html#writing-for-nerds

ttd · 6h ago
I'm working on a new app for creating technical diagrams - https://vexlio.com. It's an area with some heavyweight incumbents (e.g. Visio, Lucid) but I think there's good opportunity here to differentiate in simplicity and overall experience. I'm still in the fairly early phase, and I suspect I haven't quite found the best match of features to customers yet.

From a dev perspective this area has a ton of super interesting algorithmic / math / data structure applications, and computational geometry has always been special to me. It's a lot of fun to work on.

If anyone here is interested in this as a user, I'd love for any feedback or comments, here or you can email me directly: tyler@vexlio.com.

Some pages the HN crowd might be interested in:

* https://vexlio.com/blog/making-diagrams-with-syntax-highligh... * https://vexlio.com/solutions/state-diagram-maker/ * https://vexlio.com/blog/speed-up-your-overleaf-workflow-fast...

saboot · 1h ago
This looks really cool. An application I would use this for is to generate code for FPGAs, as finite state machines are very common.

This is an example, https://terostechnology.github.io/terosHDLdoc/docs/guides/st...

But it only outputs an SVG, and there are no tools (AFAIK) that go from diagram to code, which should easy to setup.

So I'd consider extending this to both generate code and read in code and make these nice interactive diagrams.

Malazath · 5h ago
Actually right up my alley. I have many frustrations and reservations against the current offerings. Super excited to see a new player enter the field
ttd · 3h ago
Would love to hear those frustrations and reservations - drop me a line if you're interested in sharing: tyler@vexlio.com.
EnnEmmEss · 4h ago
It looks like a pretty interesting product so I really hate to be that guy but the FAQ page at https://vexlio.com/faq/ straight up doesn't work (whenever I click any of the questions, it does nothing). Also, wanted to know if there was anything in the pipeline to get a Desktop application which would work offline. In several places in the enterprise world especially, I do feel there would be scope for that. I would definitely pay for a desktop version which worked offline for example.
ttd · 4h ago
Whoops - FAQ issue should be fixed if you refresh (if it's still broken, give it some time for caches to be invalidated). Thanks for mentioning that!

Re: desktop version. The short answer is yes, probably, but I don't have a concrete timeline. I made tech and architecture choices from the beginning to make sure a cross-platform desktop version always remains possible. Frankly, the biggest obstacle for desktop is not the app itself, but distribution and figuring out a pricing model. The current solution for enterprise, business, and other interested people, is to self-host Vexlio, with separate licensing.

EnnEmmEss · 3h ago
FAQ works fine for me now.
sixpackpg · 5h ago
In the off chance you haven't seen Bret Victor, your app reminds me of him, https://www.youtube.com/watch?v=NGYGl_xxfXA
santana16 · 4h ago
Visio and Lucid are trying to cover everything at the expense of practical convenience. Pick a lane and stick to it. Good luck!!!
ttd · 3h ago
Definitely seems to be the case from my observation as well. Appreciate it!
noleary · 4h ago
oh cool! I want to try this soon.
nikodunk · 5h ago
Looks great, and smart differentiation!
ttd · 3h ago
Cheers, thank you!
ginger_beer_m · 5h ago
seamless latex integration is a winner for me!! will definitely spread the words for this
ttd · 3h ago
Awesome, thank you! If you or your colleagues have other LaTeX-related goals or wishes, do let me know. There's a lot of untapped opportunity there as well (IMHO).
jppope · 6h ago
really nice work. I'm going to give it a roll!
ttd · 5h ago
Thank you! If you end up having any feedback, definitely feel free to drop it here, or email if you prefer.
stonlyb · 2h ago
https://inlovingmem.com/ - is a tribute to my recently deceased mom that I vibe coded over the last week. I felt her life deserved to be celebrated widely but wanted to be sensitive to her privacy. I've also built in a number of interactive features for participation in funeral services etc, before, during, and after.

Folks have reached out about having an 'In Loving Memory Of' site for their loved ones, so I'm turning this into a side business to help out more with my (now widowed) father's retirement and care.

croisillon · 13m ago
My sincere condolences for your loss, she must have given you incredible peace and strength to be able to produce this so early!
rollinDyno · 12m ago
I'm sorry for your loss.
yu3zhou4 · 9m ago
Thinking about giving up on my speech accessibility project (https://BeUnderstoodApp.com) because once again I built the MVP but gaining customers is so draining and difficult for me that I consider moving away and focus on contributing to some major open source project instead
ruieduardolopes · 4h ago
I am a PhD student and for a while now I'm designing and developing a distributed network protocol that enables dynamic resource allocation across heterogeneous nodes, to which I called Rank. It's designed to handle computational, network, and temporal resources in fully distributed environments without central controllers, but that could also handle a centralized environment. Rank implements four core functions: discovery (finding paths between nodes), estimation (evaluating resource availability), allocation (reserving resources), and sharing (allowing multiple services to use the same resources). What I think it makes it unique is its ability to operate in completely decentralized environments with heterogeneous nodes, making it particularly valuable for edge computing, cloud gaming, distributed content delivery, vehicular communications, and grid computing scenarios. The protocol uses a bidding system where nodes evaluate their capability to fulfill resource requests on a scale from 0-1, enabling dynamic path selection based on current resource availability. I've implemented it in C++ and then also created a testing framework to validate its performance across different network topologies. This is still a work-in-progress and I am eager to publish results someday!
Weryj · 27m ago
Orleans would be good to checkout
erdaniels · 4h ago
This sounds promising. Keep us posted! If there's anywhere we can track progress, please link :)
wjgilmore · 6h ago
A few months ago I launched SpiesInDC - https://spiesindc.com, a mail-based (as in the real mail) subscription service about Cold War history. Subscribers, ahem secret agents, receive packages every few weeks containing reproductions of famous documents, stanps from the USSR, Cuba, Czechoslovakia, coins, and other fun stuff. I keep refining the packages every week to make it better and it is so much fun.
NaOH · 6h ago
Great, novel idea and great that you've been enjoying the process on your end. Is it possible to gift this? I couldn't tell from the Subscribe section where there's a shipping address field but no billing address information was needed. Sometimes the billing and shipping info have to be the same for payment to go through.
wjgilmore · 6h ago
Yep it is possible to gift and in fact that is how most subscriptions come in. The latest round was because of Father’s Day. As for matching billing and shipping fields, not sure, everything has worked fine so far!
NaOH · 6h ago
Wonderful. Thank you.
deanputney · 6h ago
How are you handling the mailing? I love the idea of a mail-based project, but I worry that I would forget to go to the post office occasionally.
wjgilmore · 6h ago
So the answer to this question is a funny one. I started using a Google spreadsheet to manage shipping dates and that quickly became a chore so like any good nerd would do I built a CRM which is now live if anyone wants to try it: https://6dollarcrm.com/

Wasn’t planning on announcing it here but what the hell.

Nextgrid · 3h ago
If you don't mind answering, does this have any users besides you? I've got a few internal tools developed over the years that I don't have the bandwidth to turn into a proper SaaS (not much time for support, polish, new features, etc) but could potentially offer on an "as-is" basis for a token monthly sum but not sure if it would be worth the trouble.
absoluteunit1 · 2h ago
Building https://www.typequicker.com

Long-term, passion project of mine - I'm hoping to make this the best typing platform. Just launched the MVP last month.

The core idea of the app is focusing on using natural text. I don't think typing random words (like what some other apps do) is the most effective way to improve typing.

We offer many text topics to type (trivia, literature, etc) where you type text snippets. We offer drills (to help you nail down certain key sequences). We also offer:

- Real-time visual hand/keyboard guides (helps you to not look down at keyboard) - Extremely detailed stats on bigrams, trigrams, per-finger performance, etc. - SmartPractice mode using LLMs to create personalized exercises - Topic-based practice (coding, literature, etc.)

I started this out of passion for typing. I went from 40wpm to ~120wpm (wrote about it here if you're interested: https://www.typequicker.com/blog/learn-touch-typing) and it completely changed my perspective and career trajectory. I became a better programmer and writer because I no longer had to think about the keyboard, nor look down at it.

Currently, we're doing a lot of analysis work on character frequencies and using that to constantly improve the SmartPractice feature. Also, exploring various LLM output testing/observability tools to improve the text generation features.

Approaching this project with a freemium model (have paid AI powered features; using AI to generate text that targets user weakpoints) while everything else in the app is completely free. No ads, no trackers, etc. (Hoping to have sufficient paid users so that we can run the site and never have to even think about running ads).

I've received a lot of feedback and am always looking for ways to improve the site.

haneul · 1h ago
Hah that's pretty fun. I got tossed about by the animated hands for a few, but grabbed a 194 after that.

Dunno about the trigrams though, mostly it's on the "token group" level for me - either the upcoming lookahead feels familiar or it doesn't, and I don't much get bothered by the specific letters as much as "oh I don't have muscle memory on that word, and it's sadly nestled between two easy words, so it's going to be a patchy bit of alternating speed".

absoluteunit1 · 20m ago
Thank you - glad you liked it and thanks for sharing your impressions and feedback; helps me understand what the users like.

> Dunno about the trigrams though, mostly it's on the "token group" level for me - either the upcoming lookahead feels familiar or it doesn't, and I don't much get bothered by the specific letters as much as "oh I don't have muscle memory on that word, and it's sadly nestled between two easy words, so it's going to be a patchy bit of alternating speed".

Could you elaborate a bit on this part - not sure I fully follow.

The trigrams/bigrams is mostly to help the user discover if there are some patterns that really slow them down or have a lot of mistakes. This is something I wanted that I didn’t see in any other apps.

This also what we use under the hood for SmartPractice weak point identification. We look at what the most relevant character sequences (for example the ta sequence is way more common than za) are and what the user struggles with the most. This is just one of the weak points we use in the user weakness profile.

pseufaux · 2h ago
What an incredibly interesting use of LLMs (generating text to practice typing). It leans in on what LLMs are good at. That said. I would love to see a middle tier pricing which had some features but avoided the AI use.
absoluteunit1 · 35m ago
Thanks!

Yeah, LLMs are indeed really good for this use case.

> That said. I would love to see a middle tier pricing which had some features but avoided the AI use.

Only paid features are AI features. Everything else is free and no ads :)

You can type anything and as much as you want, you have access to all the advanced stats, you can create a custom theme from a photo of your keyboard, etc.

Everything but AI features is free right now. (Might change in future as we’re adding a lot more features so we will definitely consider a mid tier price )

llbbdd · 1h ago
Why avoid AI use? Genuine question, I see this around and it seems usually based on a mental model of the environmental cost of AI that does not match impact in the real world.
sin2pi · 1h ago
I'm tinkering with relative positional encoding by trying to integrate acoustic features directly into it.

More specifically, I'm trying to use pitch (F0) to dynamically adjust the theta parameter in rotary positional embeddings, so the frequency of the positional encoding reflects the underlying pitch contour of the speech and instead of using a fixed unit circle (radius=1.0) for complex rotations, I'm trying to work out how to use variable radii derived from the pitch. The idea is to create acoustically-weighted positional encodings, where the position reflects the acoustic salience in the original audio. https://github.com/sine2pi/asr_model

kaiokendev · 1m ago
having a really tough time wrapping my head around it but it sounds really interesting
Smaug123 · 7h ago
Ideas are coming way too fast to work on them all at the moment.

* Expect/snapshot testing library for F# is now seeing prod use but could do with more features: https://github.com/Smaug123/WoofWare.Expect

* A deterministic .NET runtime (https://github.com/Smaug123/WoofWare.PawPrint); been steaming towards `Console.WriteLine("Hello, world!")` for months, but good lord is that method complicated

* My F# source generators (https://github.com/Smaug123/WoofWare.Myriad) contain among other things a rather janky Swagger 2.0 REST client generator, but I'm currently writing a fully-compliant OpenAPI 3.0 version; it takes a .json file determining the spec, and outputs an `IMyApiClient` (or whatever) with one method per endpoint.

* Next-gen F# source generator framework (https://github.com/Smaug123/WoofWare.Whippet) is currently on the back burner; Myriad has more warts than I would like, and I think it's possible to write something much more powerful.

peterm4 · 6h ago
Not as exciting or big as some of the projects on here, but just a small personal one I’ve been wanting to do for a while.

I recently impulse bought an Epson receipt printer, and I’ve started putting together a server in Go to print a morning update every day. Getting it to print the weather, my calendar and todos, news headlines, HN front page. Basically everything I pick up my phone for in the morning, to be on paper rather than looking at a screen first thing. Very early days but hacking away and learning escpos/go! (Vibecoding a lot of it)

https://github.com/petertjmills/escpos-server

andrewrn · 7m ago
Wow this is a really interesting concept. I have had many ideas for how to loosen the grip of the digital maelstrom on my brain. You're right, not looking at the phone in the morning is critical, and reading a few things on a page seems a lot more weighty and important than flitting by things on a phone.
tim-- · 3h ago
This reminds me of a project for using a receipt printer to print of physical tickets of GitHub issues. https://aschmelyun.com/blog/i-built-a-receipt-printer-for-gi...
bix6 · 4h ago
Very cool. I’ve thought about a digital dashboard for something similar (wave / weather report mostly) but I love the printer aspect.
czarofvan · 2h ago
Very different from all the magic mirror sort of solutions. Nice!
santana16 · 4h ago
You have an interesting point. Screens are always changing and rarely taken seriously. Words on paper create a sense of weight and permanence. Make it work!
colinmilhaupt · 4h ago
My girlfriend recently got into making sourdough and wanted to keep a log of all her recipes. She really wanted to explore the relationships between recipe water percentage and crumb density, or proof time and oven spring, for example. I built her https://sourdoughchronicle.com - a local first bread journal that allows peer to peer recipe and results sharing. Claude + aider had a MVP built in an hour and she's loving it! Oddly enough the comparison charts haven't made it in yet, but that's the next feature on the the to-do list.
mef · 3h ago
nice I'm gonna use this!
vishu42 · 25m ago
Hey guys, I can't stop thinking about this idea. So I have 6 years of exp as cloud and devops engineer which means I have spent a lot of time doing ci/cd and stuff. And ci/cd usually runs on cloud which has a cost associated with it. Now i was thinking what if company can utilize the compute of the machines they give to employees to carry out such tasks like ci/cd. Simply put, companies should be able to run ci/cd on employees machines and reduce their spendings. WDYT? if anyone interested we can work on it together.
the_arun · 18m ago
Don't want to discourage you. I've these questions:

1. Are you targeting startups or enterprises?

2. Do you foresee savings in the range of millions with this approach?

3. What if the ci/cd pipeline takes > x mins? should the laptop be turned on stayed connected to network during this time?

4. In an enterprise, a typical ci/cd pipeline get connected to other dependent services - eg. security pipeline (even 3P) etc. Now, every developer needs to onboard to those services?

Tsarp · 2h ago
https://github.com/srv1n/kurpod

Lets you create encrypted containers disguised as normal files. 1000s of images, pdfs, videos, secrets, keys all stuffed into an innocent look "Vacation_Summer_2024.mp4".

I've almost got true steganography working i.e to get the carrier file to actually open in any file system(currently with mp4, pdf, png and jpeg).

Things like this have existed in the past, but nothing with a simple UI,recent encryption standards.

czarofvan · 2h ago
Damn how is the docker image only 4Mb. Even with the docker slim images they typically are atleast double digit. Nice!
ajd555 · 3h ago
I've been working on a fully electric last-mile delivery company: https://hudsonshipping.co

Beyond the landing page (built with Astro), I've been building all of the route optimization, the delivery and warehouse management systems. A combination of go and java has allowed me to write a few microservices in the past 6 months to handle all of my logistical processes, and I'm just testing the mobile app in the field as we speak! I hope to make some of the code open-source one day!

iamnotmeet · 2h ago
This is interesting! Have you considered leveraging Google OR Tools[1] for route optimization? At a previous hyper-local eCommerce startup I worked for, we used it to solve similar problems. Although the setup and integration is not super easy, but the results far outweighed the effort.

1 - https://github.com/google/or-tools

ajd555 · 2h ago
I have considered it! I've opted for a more specialized optimization library that deals specifically in the Traveling Salesman Problem (https://github.com/graphhopper/jsprit). I will revisit this though, might come in handy pretty soon - thank you!
ag_rin · 3h ago
This is a super cool intersection of real world problems and software. How hard has it been to get customers? I assume trust is a big hurdle here. How are you approaching this problem?
ajd555 · 3h ago
Thank you! You've definitely identified the trickiest part, especially when you come in with a track record of, well...0 deliveries (I was in working in tech teams before this). Luckily, there are quite a few freight brokers in the NYC metro area, and they are willing to give you a trial period. Another way to approach is to work with smaller companies and offer discounts during the startup phase. (We're starting deliveries in August)
chrisgd · 3h ago
Sounds really great. Good luck
ajd555 · 3h ago
Thank you, appreciate it!
0xb0565e486 · 3h ago
Lately, I’ve been exploring a few interconnected ideas:

Local-first web applications with a compiled backend – After eight years working on web platforms, the conventional stack feels bloated. The client already defines what it wants to fetch or insert. Usually through queries. So why not parse those queries and generate the backend automatically (or at least, the parts that can be)?

Triple stores as a core abstraction – I’ve been thinking about using a triple-based model instead of traditional in-memory data structures, especially in local-first apps. Facts could power both state and logic, and make syncing a lot simpler.

Lower-level systems programming – I’ve mostly worked in high-level languages, but lately I’ve been writing C libraries (like hash maps) and built a minimal 32-bit bare-metal RISC-V OS.

It’s all still brewing, but I think these ideas tie together nicely. What if the OS didn’t have a file system and just a fact store? Everything could be queried and updated live, like a Lisp machine but built on facts.

Some other things I’ve been playing with:

A jQuery-like framework and element factory - You can pass signals that automatically updates the DOM.

A Datomic-like database on top of OPFS - where queries become signals that react to new triples as they enter the system. Pairs well with the framework above.

andoando · 2h ago
Isnt this kind of a thing already, with the front end being able to write the sql queries
andrewrn · 22m ago
I am working on a tool that lets you create data visualizations with prompts.

When I was in college I really hated searching through all the excel and google docs menus to add trendline, change colors, gridlines, etc (and sadly I didn't have the agency to learn matplotlib or seaborn). I figure others might hate this too, and it would be so cool to have csv + prompt -> exportable svg chart

paulnovacovici · 15m ago
This is interesting I thought ChatGPT had a data analysis tool that did this natively in the app. Is there something to distinguish it? Full disclosure haven’t used that feature to much, but saw some demo
paulnovacovici · 16m ago
This is interesting I thought ChatGPT had a data analysis tool that did this natively in the app. Is there something to distinguish it? Full disclosure haven’t used that feature to much, but saw some demos
pinkmuffinere · 5h ago
I just quit my "day job" to work on a business I've built with some good friends! We make stingray-resistant booties -- ie, if you encounter stingrays in the shallows, these greatly reduce the chance you get stung (https://mydragonskin.com/). I'll be in charge of a couple marketing efforts, helping with Youtube, and other odd things that come up!

My day job required me to go into office frequently, and I'm really feeling the reduced social connection of being fully remote in a small company. Any suggestions how to deal with this? I'm planning to reconnect with old friends, surf a lot, go rock climbing, and maybe take dance / music / other classes. Would also love if anyone wants to work together in the same place (library, coffee shop, etc). I'm in Escondido California, but happy to drive ~30 min to meet folks.

the_arun · 11m ago
But you could use this boot anywhere you see sharp objects, right? Need not be stingray. Assuming this is the first use case, wish you all the best!
bix6 · 4h ago
Legend!!! My buddy just got stung the other week.

Check out Eventship. Hussein is local to SD. You should also meet Fred for press.

I’ll try and remember about these in the winter. I need new booties anyways. How many mm? 2 plus 2 so 4?

https://eventship.com/

pinkmuffinere · 3h ago
Oooh thanks, will check it out!

Ya exactly, 2 layers of 2mm each, for a total of 4mm. They’re less warm than most 4mm booties would be though, because they’re intended for the protection. If you’re in SoCal that’s a feature — your feet should stay warm but not overheat :)

hall0ween · 4h ago
Classes and workshops, something with the same people that occurs over several weeks. But it’s important that the content is something you’re personally interested in.
fxtentacle · 6h ago
I went Yak shaving.

For my 3D audio project I need an affordable way to make plastic cases. I felt like injection molding services are way overpriced, so I decided to make the molds in-house. Turns out, CNC milling is overpriced, too. As are 5 axis CNC mills. So in the end, we built our own CNC machine.

And like these things always go, I found an EMI issue with my power supply and a USB compliance bug in the off-the-shelf stepper control board. But it all turned out OK in the end so we now have the first mold tool that was designed and machined fully in-house. And I learned so much about tool paths and drill bits. Plus it feels like now that everyone has experienced hands-on how stuff is milled, my team got a lot better at designing things for cheap manufacturing.

cellular · 2h ago
Great to get experience in CNC! I've been working on how to market my GatorCAM for CNC. So I'll give you a copy! 2 birds!

It is easy to select multiple holes/pockets at once so if you iterate, you don't spend time redoing CAM! It does traveling salesman to solve for efficient paths which even the expensive packages don't get right. Calculates v-bit paths too.

On me: https://sites.google.com/view/gatorcam/home

invalidator · 5h ago
That's a pretty big yak to shave! Building a 5 axis that gives good results a big task. How long did it take you to get that working?

Why do you need to make so many molds?

hucklebuckle · 3h ago
Got a link or blog we can check out?
tim-- · 3h ago
Yeah! I would absolutely love to see a write up about this too!
bix6 · 4h ago
Would love to see your machine! Any pics or write up?
senko · 6h ago
* https://cijene.dev (HR, open source) - recently, Croatian retail chains were mandated to start publishing grocery prices online, but not how, so they made a mess of it; I've been building a crawler + unified API to avoid people duplicating the crawl/parse/cleanup effort (open source)

* https://trosko.hr (HR, Android/iOS app) - super-simple receipt/bill tracker (snap a photo of the receipt, reads it using Gemini, categorizes and stores locally - no accounts, no data gathering)

* https://github.com/senko/think (open source) - Python client library for LLMs (multiple providers, RAG, etc). I dislike the usual suspects (LangChain, LLamaIndex) but also don't want to tie myself to a specific provider, so chugging on my on lib for this.

invinciblycool · 24m ago
sethops1 · 7h ago
I'm working on https://tickerfeed.net - a new kind of forum for stock market discussion.

After HashiCorp was acquired by IBM I decided to take time off from corporate life and build something for myself. For years I've also been a casual retail investor on the side.

Forums like /r/stocks and /r/wsb in the past have been useful resources for finding leads and interesting information. But meme-ification (among other factors) have substantially degraded sites like Reddit, to the point where interesting comments are much fewer and far in between. With TickerFeed I'm hoping to recapture what was lost - a platform where investors can discuss companies and all things stock market through meaningful long form content.

It's also a chance to build something with my dream stack - Go + HTMX + SQLite, and that's been fun :)

zeroq · 6h ago
A homegrown Plex.

After a lot of grief trying to make Plex and jellyfish to work with my collection, and then some more with the community [1] I decided to make my own.

There's no selling point and clear pathway to monetize, as other solutions are way more mature and feature complete, but this is my own and serves my needs the best.

I've been working on it on and off for last 8 years or so, and it's been my personal benchmark for js ecosystem. The way it works, every now and then I come back to the project, look at the latest trends in js world and ask myself a simple question - what should I change in the codebase to make it online with the latest trends. And everytime it leads to full rewrite. Kind of funny, kind of sad.

In a nutshell I have a huge movie collection - basically I'm preparing for armageddon where all online streaming services cease to exist and I need both backend to fetch me detailed information about movies in the collection as well as frontend to help to decide what to watch tonight.

My next major endeavor will be trying to integrate RAG to take a bite at my holy grail - being able to ask a question like "get me a good gangster flick" and get reasonable recommendations.

[1] I think it was jellyfish where I was asking on their forums for how to manually create a collection, stating I'm a software engineer with 20+ exp and they kept telling me that I shouldn't touch the code... While having an online campaign asking for volunteers to contribute to the codebase.

bbkane · 3h ago
I'm trying to go the other way with my (simple) web apps- writing them so I don't have to rewrite them later. The whole UI is basically a form and a table, so I figured I should try.

For me that means Go + stdlib HTML templates (I want to try Gomponents at some point) to minimize dependencies. I copied the HTMX JS minified file into my source tree for some interactivity. I handwrote the CSS.

It looks very "barebones" (some would say ugly), but it's been solid as a rock. It's been a year and I haven't needed to update a thing!

zeroq · 43m ago
I had my childhood heroes who were working on one of the first major app in Elbonia who helped me learn programming.

I remember asking them some 10-15 years later to help me with a project and they were like "sure, we'll do it CakePHP". Initially I was like "you mean in Cobol?". But then I realized they were masters of that tech, it works, and there's no need to reinvent the wheel and learn some new trendy web framework that will be forgotten in a blink of an eye.

acidburnNSA · 5h ago
Jellyfin right?
zeroq · 4h ago
yeah, I was commenting on a phone, and the autocorrection was harsh on me
L_gates · 11m ago
Writing Security Awareness for the month of July.

Also, organising specific topics for each month up to 2026.

TheHideout · 6h ago
I made the same little Roguelike game with Raylib in Odin, C3, and FreeBASIC over the last few weeks. [0] [1] [2]

I started on a Zig one and nope'd right on out of that after a few hours of fighting the compiler.

I'm currently working on porting a bunch of my Rust mini-games to other languages. [3]

[0] https://github.com/Syn-Nine/odin-mini-games/tree/main/2d-gam...

[1] https://github.com/Syn-Nine/c3-mini-games/tree/main/2d-games...

[2] https://github.com/Syn-Nine/freebasic-mini-games/tree/main/2...

[3] https://github.com/Syn-Nine/rust-mini-games/tree/main/2d-gam...

ml- · 8h ago
Still on my sabbatical and continuing to build on things I enjoy rather than things that pay (for now).

Main focus is https://wheretodrink.beer, collecting and cataloging craft beer venues from around the world. No ambition of being exhaustive, but aiming for a curated and substantial list. After the last thread, a bunch of people added their suggestions, thanks! It helped add interesting new venues from cities I hadn’t covered yet.

I’m very slowly layering on features, and have a few spin-off ideas I’ll keep brewing on for later. The hardest problem thus far has been attempting to automate popularity rankings and automatic removal of defunct venues without breaching a bunch of ToS.

Also made https://drnk.beer, a small side project offering beer-related linkpages and @handles for Bluesky (AT Protocol). It's been on the backburner, but still very much live.

Probably looking for another small project for the next few months to focus on something else for a while. Always curious to see what others are building and doing. Thanks for sharing!

nicbou · 7h ago
How did you populate it? The Berlin list was pretty decent. I added one that came to mind.
djfivyvusn · 7h ago
[flagged]
tomhow · 40m ago
Please don't do this.
ggap · 1h ago
I am working on MediaReduce https://mediareduce.com/, AI-powered media editing studios for videos, images and documents.

It has gone through several iterations over the last year. It was initially focused on file compression & editing but I have added video & image enhancement, background removal, smart video trim, video subtitles generation, dubbing, watermark removal, cropping, resizing, etc.

I'm continuing to fine-tune the performance and while enhancing my UI skills to polish the studios. I built a desktop version but currently released it for Linux (it's in beta), I plan to hopefully make the desktop version free.

I'm currently working with a few clients and using their feedback as guidance. Let me know your feedback if you use it.

norbert515 · 3h ago
Working on https://vide.dev, the Cursor for Flutter devs.

While Cursor stops after writing great code, Vide goes the extra mile and has full runtime integration. Vide will go the extra mile & make sure the UI looks on point, works on all screen configurations and behaves correctly. It does this by being deeply integrated into Flutters tooling, it's able to take screenshot/ place widgets on a Figma-like canvas and even interact with everything in an isolated and reproducible environment.

I currently have a web version of the IDE live but I'm going to launch a full native desktop IDE very soon.

czarofvan · 2h ago
Any reason to not use flutter flow with all the AI stuff?
mattrighetti · 6h ago
Lately I’ve been working on two things:

An iOS client for Cloudflare. Surprisingly, there’s none out there, maybe because nobody needs it? I do, so I’ve created one and it’s now available on TestFlight [0].

Another interesting thing I’ve recently discovered is that LLMs are pretty great at vetting tenancy agreements, so I’m working on a website that reads tenancy agreements and will return a list of unfair clauses that might be present in the contract along with a detailed explanation of how you should follow up with the landlord/agency. I still need to finish it but if you’re interested it’s here [1].

[0]: https://testflight.apple.com/join/Jj7WveWb

[1]: https://transparents.fyi

abrinz · 2h ago
I'm working on an MCP to give your coding agent the ability to generate on-demand Mermaid diagrams about anything in your codebase. Among other benefits, it is very helpful for spotting unnecessary code or architecture that can accumulate while vibe coding.

https://www.npmjs.com/package/@mindpilot/mcp

Claude Code Quickstart:

``` claude mcp add mindpilot -- npx @mindpilot/mcp ```

splice-cad · 6h ago
I've been working on Splice CAD – an in-browser cable-harness designer.

https://splice-cad.com

Building cables for multiple personal and professional projects, I was frustrated by having to cobble together harness diagrams in Illustrator or Visio, cut snippets from from PDFs for connector outlines, map pin-outs, wire specs, cable constructions, mating terminals, and manually updating an Excel BOM.

Splice gives you:

An SVG canvas to drag-and-drop any connector or cable from your library to quickly route and bundle wires. Assign signal names to wires or cable cores.

Complete part data Connector outlines, pin-outs, terminal selections (by connector family & AWG), cable core colors & strand counts, wire AWG/color.

Automated BOM & exports parts-ready diagrams, wiring drawings, and a clean BOM in SVG, PNG, or PDF.

Connector & Cable Creators. Connectors or cables not in the existing library can be added with an optional outline and full specs (manufacturer, MPN, series, pitch, positions, IP-rating, operating temp, etc.), then publish privately or share publicly.

Demos & tutorials: Harness Builder → https://www.youtube.com/watch?v=JfQVB_iTD1I

Connector Creator → https://www.youtube.com/watch?v=zqDsCROhpy8

Cable Creator → https://www.youtube.com/watch?v=GFdQaXQxKzU

Full tutorials → https://splice-cad.com/#/tutorial/

No signup required to try—just jump in and start laying out your harness: https://splice-cad.com/#/harness. If you want to save, sign up with Google or email/password.

aaronblohowiak · 3h ago
omg, I wish there was a service like jlpcb / pcbway but for cable harnesses.. do you know of any? I'd love to take something like your tool and choose length and quantity and order it....
tarun_bhukya · 42m ago
I am working on building a custom PDF Web Component. With this web component, you can

- Create your own PDF editor with custom UI with the help of public methods which are exposed in the web component.

- You can add dynamic variables/data to the templates. What this means is you create one template, for example, a certificate template with name and date as variables and all you have to do is upload your CSV / JSON of names and dates, and it will generate the dynamic PDFs for you.

- It's framework-agnostic. You can use this library in any front-end framework.

It's still in early development, and I would love to connect with people who have some use cases around it.

I have integrated this library in one of our projects, Formester. You can see the details here https://formester.com/features/pdf-editor/

I have posted this demo video for reference https://www.youtube.com/watch?v=jorWjTOMjfs

Note: Right now it has very limited capabilities like only adding text and image elements. Will be adding more features going forward.

ashdnazg · 6h ago
I'm writing a decompiler for Turbo Pascal 3.0, to reverse engineer an educational game from the 80s.

Since TP 3.0 does no optimisations, and looking at the progress so far (~25% decompiled), it seems like matching decompilation should be achievable.

If/when I get to 100%, I hope to make the process of annotating the result (Func13_var_2_2 is hardly an informative variable name) into a community project.

simmons · 5h ago
Neat! I sometimes play around with the idea of reverse engineering and transcompiling a tiny game that I think was probably written in Turbo Pascal 4.0. Maybe 4.0 supported optimizations, but this program seems to have been compiled in a debug mode. (At least, it seems to have no optimization, and has the default {$S+} stack overflow checking at the start of every function.) The lack of optimization makes it (and perhaps other programs written in Turbo Pascal) a really attractive artifact to experiment with transcompiling. When I realized that only the first segment was the actual game, and the other three segments corresponded to standard units used for I/O (etc.), which could be harder to analyze, I realized I could just omit those segments and replace them with new functions suitable for the transcompilation target. Maybe some day I'll get around to finishing it.

Good luck!

pwnmonkey · 6h ago
Sounds cool, what game?
m_sahaf · 6h ago
I'm not actively working on it daily, as I have shortage of free time and helping hands, but the HTTP Spec Test Suite is my Moby-Dick. I wrote about it here: https://www.caffeinatedwonders.com/2024/12/18/towards-valida..., I also discussed it on the HTTP WG mailing list and presented it at the HTTP WG Workshop last year.

Another Moby-Dick of mine is Kadessh, the SSH server plugin of Caddy, formerly known as caddy-ssh. This one is an itch. I wrote about it here https://www.caffeinatedwonders.com/2022/03/28/new-ssh-server..., and the repo is here: https://github.com/kadeessh/kadeessh. Similar to the other one, feedback and helping hands are sorely needed.

They are both sort of an obsession and itches of mine, but between dayjob and school, I barely have a chance to have the clear mind to give them the attention they require.

TheAceOfHearts · 5h ago
Mostly writing for myself; I should really convert some drafts into proper blog posts because I'm really interested in discussing my ideas with others.

I've been thinking a lot about the current field of AI research and wondering if we're asking the right questions? I've watched some videos from Yann LeCun where he highlights some of the key limitations of current approaches, but I haven't seen anyone discussing or specifying all major key pieces that are believed to be currently missing. In general I feel like there's tons of events and presentations about AI-related topics but the questions are disappointingly shallow / entry-level. So you have all these major key figures repeating the same basic talking points over and over to different audiences. Where is the deeper content? Are all the interesting conversations just happening behind closed doors inside of companies and research centers?

Recently I was watching a presentation from John Carmack where he talks about what Keen is up to, but I was a bit frustrated with where he finished. One of the key insights he mentions is that we need to be training models in real-time environments that operate independently from the agent, and the agent needs to be able to adapt. It seems like some of the work that he's doing is operating at too low of an abstraction level or that it's missing some key component for the model to reflect on what it's doing, but then there's no exploration of what that thing might be. Although maybe a presentation is the wrong place for this kind of question.

I keep thinking that we're formulating a lot of incoherent questions or failing to clearly state what key questions we are looking to answer, across multiple domains and socially.

rashidae · 5h ago
True. I believe the most important question right now is… how to solve for memory.

RAG and/or Fine-tuning is not the way.

Another topic is security, which would consist of using Ollama + Proxmox for example, but of course, right now, as emergent intelligence is still early, we would have to wait 2-3 years for ~8 B parameter local models to be as good as ChatGPT o3 pro or Claude Opus 4.

I do believe that we are close to discovering a new interface. What is now presenting itself through IDE’s and the command line (terminal)… I strongly believe we are 1-2 years away from a new kind of interface, that is not meant for developers only.

That feels like an IDE, works like a CLI, but is intuitive as Chrome is for browsing the web.

artificialprint · 3h ago
Watch Francois chollet on ML street
kdinn · 2h ago
https://sivic.life

The premise is that when I read social spaces like Reddit or X, if the government has done anything contentious you get nothing more than strident left takes, or strident right takes on the topic. Neither of which is informative or helpful.

So I have set up a site which uses AI which is specifically guided to be neutral and non-partisan, to analyses the government actions from the source documents. It then gives a summary, expected effect, benefits and disadvantages, and ranks the action against 19 "things people care about" (e.g. defence, environment, civil liberties, religious protection, etc.)

The end result is quite compelling. For example here's the page that summarises all the actions which are extremely beneficial or disadvantageous to individual liberties: https://sivic.life/tyca/tyca_individual_liberties/

geminiboy · 1h ago
Still building. https://tosreview.org/

Reading through the Terms of service in websites is a pain. Most of the users skip reading that and click accept. The risk is that they enter into a legally binding contract with a corporation without any idea what they are getting themselves into.

How it started: I read news about Disney blocking a wrongful death lawsuit, since the victim agreed to a arbitration clause when they signed up for a disney+ trial.

I started looking into available options for services that can mitigate this and found the amazing https://tosdr.org/en project.

That project relies on the work of volunteers who have been diligently reading the TOS and providing information in understandable terms.

Light bulb moment: LLM's are good at reading and summarizing text. Why not use LLMs for the same. That's when I started building tosreview.org. I am also sending it for the bolt.new hackathon.

Existing features: Input for user entered URLs or text Translation available for 30+ languages.

Planned features: Chrome/firefox extension Structured extraction of key information ( arbitration enforced , jurisdiction enforced etc).

Let me know if you have any feedback

tootyskooty · 2h ago
Still working on https://periplus.app, and recently started to see some traction.

It's an environment for open-ended learning with LLMs. Something like a personalized, generative Wikipedia. Has generated courses, documents, exams and flashcards.

Each document links to more documents, which are all stored in a graph you grow over time.

robpruzan · 2h ago
wow I just tried this, absolutely fantastic. I really hope you take this all the way, I will be sharing with friends!
robpruzan · 2h ago
Edit: upgrading my review from fantastic to probably one the best first experiences I've had with an LLM app. You got my money!

Do you have any socials? Would love to keep up with updates about this project

tootyskooty · 1h ago
Thanks for the positive feedback (and the sub)!! Means a lot.

No socials so far as I've mostly been posting updates on the Anthropic discord. But I made an X account for it just now (@periplus_app) where I'll mirror the updates.

You can also reach me any time by email for bug reports, feature reqs etc.

samjs · 7h ago
I've been building tooling for better debugger support for Rust types using debuginfo: https://github.com/samscott89/rudy

I'm planning on doing a proper writeup/release of this soon, but here's the short version: https://gist.github.com/samscott89/e819dcd35e387f99eb7ede156...

- Uses lldb's Python scripting extensions to register commands, and handle memory access. Talks to the Rust process over TCP.

- Supports pretty printing for custom structs + types from standard library (including Vec + HashMap).

- Some simple expression handling, like field access, array indexing, and map lookups.

- Can locate + call methods from binary.

rpearcea · 4h ago
http://axcas.net is an online computer algebra system I've been working on. I'm working to finish the programming language which is based on C, and I'm adding an ode solver which I plan to use to evaluate special functions.

I release code into the public domain hoping it will be useful. There's some fast code for Groebner basis computations using the F4 algorithm (parallelized - article to follow), and some routines for machine integers e.g. discrete logarithm, factoring, and prime counting.

asim · 45m ago
Reminder - an all in one app and API for the Quran, hadith and names of Allah

https://reminder.dev

After spending many years on the VC/startup track I found myself being pulled towards doing something more inline with my faith. As an engineer I felt like this is the best way I could contribute my skills.

aard · 2h ago
I've been working on my own version of a literate programming system (https://github.com/adam-ard/organic-markdown). It's kind of a mix of emacs org-mode, jupyter, and Zettelkasten. But, because it's based on standard pandoc-style markdown, you can use it with a much wider range of tools. Any markdown editor will do.

Even though I made it as a toy/proof of concept, it's turned out to be pretty useful for small to medium size projects. As I've used it, I've found all kinds of interesting benefits and helpful usage patterns. I've tried to document some; I hope to do more soon.

--https://rethinkingsoftware.substack.com/p/the-joy-of-literat...

--https://rethinkingsoftware.substack.com/p/organic-markdown-i...

--https://rethinkingsoftware.substack.com/p/dry-on-steroids-wi...

--https://rethinkingsoftware.substack.com/p/literate-testing

--https://www.youtube.com/@adam-ard/videos

The project is at a very early stage, but is finally stable enough that I thought it'd be fun to throw out here and see what people think. It's definitely my own unique spin on literate programming and it's been a lot of fun. See what you think!

taha_moji · 2h ago
My background is in NLP, research, and startups. I joined a power company where I saw a clear opportunity to use AI for automating equipment inspection from drone images.

But the environment made it hard to move fast. The systems were outdated, and there wasn’t much support for building AI tools in-house. That experience made me realize I needed to grow beyond the modeling layer. There were things I wanted to build, but I didn’t yet have the full skill set to do it on my own.

So I’ve been learning full stack development. I had built a small chatbot app before, but this time I’m applying what I’m learning toward a focused MVP for the inspection work. It’s been a practical way to connect what I know with what I want to make real.

vahid4m · 5h ago
I’m working on a desktop app called With Audio https://desktop.with.audio a one time payment desktop app.

— it turns ebooks, articles, and documents into synchronized audio with real-time text highlighting. It’s great for people who prefer listening while reading (or want to stay focused), and it works fully offline with a one-time purchase — no subscriptions.

I’m bootstrapping it and trying to figure out how to market it effectively. So far, I’ve had some traction and early sales just by posting on Reddit, but I’m still learning the marketing side — especially how to reach people who’d benefit from it most.

Would love to hear how others approached early growth for similar bootstrapped tools.

eszed · 2h ago
Does it work with languages other than English?
vahid4m · 1h ago
Sadly not at the moment. I need some help to confirm other languages as I only understand English.
avi_vallarapu · 1h ago
https://www.hexarocket.com/

I am working on the world's first end-to-end Database Migration tool, supporting Oracle to PostgreSQL and MSSQL to PostgreSQL database migrations with AI for Schema Migrations. Until now, people used different tools for Schema Migration and Data Migration/Replication. During this process, we ended up building a data migration and replication tool supporting any databases between Oracle, SQL Server (MSSQL) and PostgreSQL databases.

dalemhurley · 6h ago
https://DocCheetah.com - aiming to help accountants chase clients for their documentation. Launched, not got any traction, spent a little bit on advertising through LinkedIn. Probably need to execute more targeted marketing and more problem validation.

https://Full.CX - still hums along in the background. Couple of customers. Just added MCP which has been amazing to use with AI coding agents. Updating the UI/UX to ShadCN to improve usability and make it easier for future changes replacing NextUI and Daisy.

https://Toolnames.com - no changes this month.

https://Risks.io - little bit of work on the new platform, yet to be released.

https://dalehurley.com - little facelift

jtokoph · 6h ago
FYI, Your personal site seems to have some styling issues: https://imgur.com/0pDKc4l

Same thing in firefox and chrome on mac.

dalemhurley · 1h ago
Thank you, I will have to look into it
sidcool · 31m ago
My well being. The achievement obsession has taken its toll.
vanceism7_ · 6h ago
I'm working on a simple, local storage budgeting app called "Wasa Budget". I wrote it because I got tired of tracking my budget on excel sheets. It's written in flutter, it works well enough that I was able to entirely ditch the excel sheets now.

I want to publish it on Google play, but I need testers. If anyone cares about budgeting, I'd love to get some feedback.

Here's the app link: https://play.google.com/apps/testing/dev.selfreliant.wasa_bu...

I don't think you can download it without being added to my testers list though. Send me your Gmail address if you're interested!

listic · 5h ago
'A testing version of this app hasn't been published yet or isn't available for this account.'

> Send me your Gmail address if you're interested!

Where? nleschov at gmail

vanceism7_ · 1h ago
I just added you to the testers list. The link should work now.

Word of warning, Google is pretty dumb and even requires testers to pay for the app. It's going for 3$, but I can reimburse everyone who helps me test once the testing phase is finished

marcuskaz · 7h ago
I finally compiled and expanded on all my various blog posts, tutorials and other Python goodness into a book: Working with Python. It is available as a free pdf download at: https://mkaz.blog/working-with-python/

It's grown over a dozen or so years and when I finally decide to compile into a book, everyone now uses AI and no longer read and learn from books but instead through LLMs.

zahlman · 7h ago
Fantastic. I wish I'd started on writing something like this years ago (although I'd wanted to teach explicitly rather than having a collection of how-tos).

> when I finally decide to compile into a book, everyone now uses AI

This is part of what discourages me from starting now, sadly. That, and having more concepts for actual Python projects than I know what to do with.

htk · 4h ago
Great book! I already use python for some simple projects and your book is in the perfect level of practicality that I need. Thank you! Suggestion: create an epub version as well. It would be awesome to read it on a kindle or other e-ink devices.
ok_dad · 7h ago
> everyone now uses AI and no longer read and learn from books

Not me, I read the shit out of documentation and also books like yours which distill knowledge from professionals down to a bunch of useful points. I have never not learned something (even if I knew and forgot it) from reading a good book about "Working with X".

Thanks for your hard work, and for giving it away to others gratis.

Edit: the string formatting cookbook has a ton of useful info that I always forget how to use, I'm going to bookmark your site by this page: https://mkaz.blog/working-with-python/string-formatting

marcuskaz · 6h ago
The string formatting article definitely has been my most popular post for years. I'm glad you found it useful, and thanks for the kind words
chandureddyvari · 2h ago
I’m exploring two different applications of AI for education and skill-building:

1. Open-Source AI Curriculum Generator(OSS MathAcademy alternative for other subjects) Think MathAcademy meets GitHub: an AI system that generates complete computer science curricula with prerequisites, interactive lessons, quizzes, and progression paths. The twist: everything is human-reviewed and open-sourced for community auditing. Starting with an undergrad CS foundation, then branching into specializations (web dev, mobile, backend, AI, systems programming).

The goal is serving self-learners who want structured, rigorous CS education outside traditional institutions. AI handles the heavy lifting of curriculum design and personalization, while human experts ensure quality and accuracy.

2. Computational Astrology as an AI Agent Testbed For learning production-grade AI agents, I’m building a system that handles Indian astrology calculations. Despite the domain’s questionable validity, it’s surprisingly well-suited for AI: complex rule systems, computational algorithms from classical texts, and intricate overlapping interpretations - perfect for testing RAG + MCP tool architectures.

It’s purely a technical exercise to understand agent orchestration, knowledge retrieval, and multi-step reasoning in a domain with well-defined (if arcane) computational rules.

- Has anyone tackled AI generated curricula? What are the gotchas? - Interest in either as open-source projects?

whitefang · 1h ago
I'm building an AI for Customer Support.

Here's the summary: - read all your sources - public websites, docs, video - answer questions with confidence score and no hallucinations with citations - cut support time and even integrates directly into your customer facing chatbots like Intercom.

Still deliberating on the business model. If anyone would be interested in taking a look, I would love to show you.

jithtitan · 1h ago
I am interested to take a look but some answers before it might be great? One of the issue we are facing is the upto date documentation. Like you have document A with information on Doc A, but now there is a document A.1 is written which has the updated information on Doc A.
postalcoder · 7h ago
I'm still working on hcker.news, which first started as a more configurable hacker news frontpage, but has turned into a thing that I've found to be quite helpful at content discovery.

I recently by request[0] added a cohesive timeline view for hn's /bestcomments. The comments are grouped by story and presented in the order that they were added to the /bestcomments page. It's a great way to see popular comments on active topics. I'm going to add other frills like sorting and filtering, but this seems to be as good a time as any to get some of your thoughts!

You can check it out here: https://hcker.news/?view=bestcomments

[0] https://news.ycombinator.com/item?id=44076987 (thx adrianwaj)

monsieurpng · 2h ago
I’m working on LearnMathsToday, a mobile app that helps students learn math in a fun and engaging way. It’s self-paced, with AI-generated questions that adapt to each student’s level. One unique feature is AI-powered marking, which gives instant feedback on written answers. I’ve also added gamification—points, levels, and a storyline—to keep students motivated. Right now, the app is based on the Singapore syllabus, since I’m based in Singapore.

Feel free to download here:

https://apps.apple.com/app/learnmathstoday/id6740993744

https://play.google.com/store/apps/details?id=com.learnmaths...

https://learnmathstoday.com/

Brajeshwar · 1h ago
It’s not something technically inclined or interesting. I used to host a Flash Game, some sort of, Bubble Wrap Bubble Popper. Unfortunately, it went away along with Flash. My site complains of the usual 404 on that page. Early this month, on one fateful evening before I retired for the day, I decided to work alongside an AI Coding assistant and completed it. Since then, if not others, my daughter has popped a lot and lots of bubbles.

https://bubble-pop.oinam.com/

NiloCK · 4h ago
https://github.com/patched-network/vue-skuilder https://patched.network

FOSS toolkit for SRS and adaptive tutoring systems. Inching closer to proper demos and inviting usage.

In essence, I'm looking to decouple ed-tech content authoring (eg, a flash card, an exercise, a text) from content navigation (eg, personalizing paths and priorities given individual goals and demonstrated competencies), allowing for something like a multi-sided marketplace or general A/B engine over content that can greatly diminish the need to "build your own deck" for SRS to be effective.

Project became my main focus recently after ~8 years of tiny dabbling, and I've largely succeeded at pulling spaghetti monolith into a sensible assembly of packages and abstractions. EG, the web UI can now pull from either a 'live' couchdb datalayer or from statically served JSON (with converters between), and I'm 75% through an MVP tui interface to the same system as well.

calchris42 · 2h ago
https://selectube.app/ Working on curated YouTube for kids. Trying to make a place where my kids can watch the good stuff without getting sucked into all the mindless junk.

Also it’s been a fun excuse to try out Cursor and other AI tools I don’t normally use in my day job.

I have 1 user - my 8 yr old son.

vinegh · 2h ago
This is cool!
calchris42 · 2h ago
Thanks! Any and all feedback always appreciated. It’s been fun pulling together.
jibolash · 4h ago
Open source quiz creator to create quizzes by pasting in text or selecting from a large range of historical categories.

Started as a very simple app for me to play around with OpenAI’s API last year then morphed into a portfolio project during my job search earlier this year. Now happily employed but still hacking on it.

Right now, a user can create a quiz, take a quiz, save it and share the quiz with other people using a URL.

Demo: You can try out the full working application at https://quizknit.com

Github Links: Frontend: https://github.com/jibolash/quizknit-react , Backend: https://github.com/jibolash/quizknit-api

whitefang · 1h ago
I'm building an AI for Customer Support.

Here's the summary: - read all your sources - public websites, docs, video - answer questions with confidence score and no hallucinations with citations - cut support time and even integrates directly into your customer facing chatbots like Intercom

Still deliberating on the business model. If anyone would be interested in taking a look, I would love to show you.

noisy_boy · 3h ago
I think if you allow a set of YouTube videos as input, it'll be quite powerful coupled with transcription ability of LLMs. Lots of people consume content that way. As an added bonus, you can show the performance summary about the sections the user did well or not so well on with video links to those timestamps for them to go back and review.
nikhizzle · 7h ago
A job feed for remote jobs - https://tangerinefeed.net/

This is something I’ve needed myself over the last few years as jobs become shorter and shorter lived. Keep on improving it as some kind of compulsion.

joewhale · 5h ago
Looks good! Seems to not be bringing in the requirements section of the JDs?
nikhizzle · 4h ago
Thanks! Will take a look.
pandler · 3h ago
I’ve been building my wife a budget tracking dashboard for reporting on PPC ad campaigns.

At any given time, she’s working with any number of clients (directly or subcontracted, solo or as part of a team) who each have multiple, simultaneous marketing campaigns across any number of channels (google/meta/yelp/etc), each of which is running with different parameters. She spends a good amount of time simply aggregating data in spreadsheets for herself and for her clients.

Surprisingly we haven’t been able to find an existing service that fits her needs, so here I am.

It’s been fun for me to branch out a bit with my technology selections, focusing more on learning new things I want to learn over what would otherwise be the most practical (within reason) or familiar.

light001 · 1h ago
At work, I often need to submit PDF documents, but the photos I take on my iPhone are in HEIC format. To make it easier to convert HEIC to PDF, I developed a website: https://heictopdf.run/. It allows you to batch convert HEIC files to PDF online, with all processing done in the browser—no data is stored on the server.
selvan · 1h ago
CheerArena - Your Own TV Grade Live Channel on Youtube

Have created a real-time media mixing mobile app that helps to setup TV grade Live channel on Youtube/Facebook/Twitch/Instagram.

Our product scales from individual to institutions, camera in mobiles to network of cameras, indoor to outdoor sports and events.

Details: https://www.cheerarena.com/

Realtime mixing studio - https://play.google.com/store/apps/details?id=com.cheerarena...

catskull · 2h ago
I started a podcast and have been having a lot of fun talking with staff-level engineers about their passions. It’s called Interrobang.

https://catskull.net/podcast https://podcasts.apple.com/us/podcast/interrobang-with-dave-...

I built the whole tech stack with Jekyll and Cloudflare and wrote about it on my blog: https://catskull.net/podcast-workflow.html

Finally, I built a simple chat app as a web component with a Cloudflare durable object and have a few AI bots spamming the chat that may or may not ignore you: https://catskull.net/the-most-dangerous-app.html

seanwilson · 4h ago
A tool for creating WCAG/ADA accessible Tailwind-like color palettes. :)

https://www.inclusivecolors.com/

The idea is it helps you create palettes that have predictable color contrast built-in, so when you're picking color pairs for your UI/web design later, it's easy to know which pairs have accessible color contrast.

For example, you can design your palette so that green-600, red-600, blue-600, all contrast against grey-50, and the same for any other 600 grade vs 50 grade color, like green-600 vs green-50.

That way you won't run into failing color contrast surprises later when you need e.g. an orange warning alert box (with different variations of orange for the background, border, heading text and body text), a red danger alert box, a green success alert box etc. against different color backgrounds.

elviejo · 5h ago
I've been working on implementing @mpweiher "Storage Combinators" [0] and "polymorphic Identifiers" [1] in Eiffel [3].

Currently I'm stuck implementing a storage combinator with EiffelWebFramework[4]

[0] https://dl.acm.org/doi/abs/10.1145/3359591.3359729

[1] https://scholar.google.com/citations?view_op=view_citation&h...

[2] https://en.wikipedia.org/wiki/Eiffel_(programming_language)

[3] https://github.com/EiffelWebFramework/EWF

androng · 2h ago
I am working on a babelfish ie speech-to-speech language translation for use during vacations namely Tokyo Disneyland where you can't ask the speaker to stop speaking. I am kind of surprised that it does not exist yet. I want it to be like this this video where the app/device talks in English in realtime over the Japanese speaker https://youtu.be/PfPC4KEdTDY?si=h4BfmkNvQnmOzvgC&t=62 however I found no iOS app that can do this yet, they all require the speaker to stop speaking before translating. I know Google translate can live speech-to-text but I'm wondering if I can achieve speech-to-speech with earbuds and a shotgun microphone so I don't have to look at my phone. and there's new iOS on-device models so I'm hoping I can get better offline accuracy
tim-- · 2h ago
For fun, I am building a little tool called 'domain-manager'. Basically just a binary that automates configuring a Linux host to run a bunch of WordPress/Laravel/PHP sites.

It creates all the necessary boilerplate to generate PHP Docker containers, creates all of the MySQL users, and sets up all of the directory structures to get a new website up and running. It even helps set up SFTP users and gets letsencrypt certificates set up with certbot.

It's still very early days, but I appreciate that what used to be a bunch of commands that I would run by hand and slightly change every few months is now pretty much just all self contained. Should mean the next migration to a different server is easier.

Created in frustration because I was too cheap to pay the $50/month for a cPanel license.

https://github.com/timgws/domain-manager

Saigonautica · 2h ago
I built a hardware server monitor with LED display based on the ESP8266. I needed 8 fewer things to think about in the morning. If you want, you can build one yourself, I released the hardware and firmware: https://github.com/seanboyce/servermon

Next up is a small lamp for migraines. I noticed that dim red light is much more tolerable to me than anything else. I mean obviously, darkness is ideal, but you need to do other stuff like eat and drink eventually if it's a persistent one.

So I designed a quick circuit to use fast PWM (few Mhz, so no flicker) to control a big red LED. I'd like it to be sturdy and still functional in 50-100 years, so made some design choices for long-term durability. No capacitors, replaceable LED and so on.

A simple project, but it's a busy month and I need something easy this time.

the_florist · 4h ago
I’m building an e-book reader for the web and PWA platforms:

https://flowery.app/books

The library of public domain classics is courtesy of Standard Ebooks. I publish a book every Saturday, and refine the EPUB parser and styler whenever they choke on a book. I’m currently putting the finishing touches to endnote rendering (pop-up or margin notes depending on screen width) so that next Saturday’s publication of “The Federalist Papers” does justice to the punctilious Publius.

Obligatory landing page for the paid product:

https://flowery.app/vocabulary-building

omneity · 5h ago
I've been quite obsessed about ramping up (technically complex, not basic crud/wrappers) SaaS development with Gen AI tools, speeding things from months to weeks to days. But then I hit a snag: operations are the new bottleneck. How can I support all of these products, let alone promote them or find customers? My focus shifted to agents, and I realized that access for these AI bots was a major hurdle, despite all the MCPs available.

The thing is, we’ve been retrofitting software made for humans for machines, which creates unnecessary complications. It’s not about model capability, which is already there for most processes I have tested, it’s because systems designed for people are confusing to AI, do not fit their mental model, and making the proposition of relying on agents operating them a pipe dream from a reliability or success-rate perspective.

This led me to a realization: as agentic AI improves, companies need to be fully AI-native or lose to their more innovative competitors. Their edge will be granting AI agents access to their systems, or rather, leveraging systems that make life easy for their agents. So, focusing on greenfield SaaS projects/companies, I've been spending the last few weeks crafting building blocks for small to medium-sized businesses who want to be AI-native from the get-go. What began as an API-friendly ERP evolved into something much bigger, for example, cursor-like capabilities over multiple types of data (think semantic search on your codebase, but for any business data), or custom deep-search into the documentation of a product to answer a user question.

Now, an early version is powering my products, slashing implementation time by over 90%. I can launch a new product in hours supported by several internal agents, and my next focus is to possibly ship the first user-facing batch of agents this month to support these SaaS operations. A bit early to share something more concrete, but I hope by the next HN thread I will!

Happy to jam about these topics and the future of the agentic-driven economy, so feel free to hit me up!

Kholin · 4h ago
I've built a Reddit-like community platform in Go. Users can create their own sub-communities, and within them, set up different categories and boards. Posts can be voted on, and board types can include regular posts, Q&A, or live chat. It's like a hybrid of Reddit and Discord but leans more towards a traditional web community. It also supports server-side rendering, making it SEO-friendly. This project is an extension of my previous Hacker News clone, dizkaz (https://news.ycombinator.com/item?id=43885998). I'm currently working on implementing submission rate limiting and content moderation, which is a bit challenging, but it should be ready for launch soon.
jason_zig · 6h ago
We're building Zigpoll (https://www.zigpoll.com), a survey platform focused on zero-party data collection — think post-purchase attribution, customer feedback, and segmentation — all done directly on your site without relying on third-party cookies or offsite links.

We initially built it for Shopify, but now it’s fully embeddable, supports headless implementations, and integrates with tools like Klaviyo, Zapier, n8n, and Snowflake. One thing we’re especially proud of is how fast and unobtrusive it is: polls load async, don’t block rendering, and are optimized for mobile and low-latency responses.

From a tech angle:

Frontend is all React, optionally SSR-safe.

Backend is Node.js + Postgres, with a heavy focus on queueing + caching for real-time response pipelines.

API-first design (public API just launched: apidocs.zigpoll.com).

We recently open-sourced our n8n integration too.

If you're a dev working on ecom, SaaS, or even internal tooling and need a non-annoying way to collect structured feedback, happy to chat or get you set up. Feedback welcome — especially critical stuff. Always looking to improve.

zeta0134 · 5h ago
I'm working on a rhythm game for original NES: https://zeta0134.itch.io/tactus

This is written entirely in 6502 assembly, and uses a fun new mapper that helps a little bit with the music, so I can have extra channels you can actually hear on an unmodded system. It's been really fun to push the hardware in unusual ways.

Currently the first Zone of the game is rather polished, and I'm doing a big giant pixel art drawing push to produce new enemies, items, and level artwork to fill out the remainder of the game. It's coming along slowly, but steadily. I'm trying to have it in "trailer ready" / "demo" state by the end of this calendar year. Just this weekend I added new chest types and the classic Mimic enemy to spice things up.

namuol · 5h ago
Nice! What’s the new mapper you’re using? Is it available as an IC or does it use FPGA or something?
zeta0134 · 4h ago
It's an FPGA mapper made by Broke Studio, detailed here if you're curious:

https://github.com/BrokeStudio/rainbow-net/blob/master/NES/m...

In terms of capabilities, graphically it's something like MMC5 (8x8 attributes and a bunch of tile memory) while sound wise it's almost exactly VRC6. The real nifty feature though is ipcm: it can make the audio available for reading at $4011

It turns out the APU inside the NES listens to writes to $4011 to set the DPCM level, which many games use to play samples. By having the cartridge drive it for reading, I can very efficiently stream one sample of audio with the following code:

    inc $4011
So I just make sure to run that regularly and hey presto, working expansion audio on the model that doesn't normally support it. It aliases a little bit, but if I'm clever about how I compose the music I can easily work around that.
aaronblohowiak · 1h ago
Building an AS/RS for trading cards. I did my POC smaller scale hacked together and now I'm building v1 (which I'm having to fight second system syndrome pretty hard on.) After getting very refactoring reluctant with untyped python, I'm making the transition to Rust and enjoying it quite a bit.
plindberg · 8h ago
I’ve been working on an app called Lång. It’s a calm daily spending guide – shows you what’s okay to spend today, based on how much needs to last how long.

The idea came from noticing how most people manage money day to day: checking their balance, adjusting by feel, trying not to drift. There are tons of tools for planning or categorising, but not much that fits that kind of improvised pacing.

Still early, but trying to shape it around those habits – to make something simple and steady, that supports how people already do things.

https://lang.money

anh690136 · 1h ago
Still building: https://www.saner.ai/

The ADHD-friendly AI personal assistant for notes, email, and calendar.

Where you can just chat to search notes, manage emails, and schedule tasks. It proactively plans your day every moring and checks in to help you stay on top of everything.

deedee9924 · 4h ago
While taking care of my newborn, I had a lot of time to think about what annoys me most about being a software engineer. For me that is interfacing with databases.

So, I embarked a couple of weeks ago on my journey to build a relational database, which checks the boxes for me personally and I hope that this will be useful for other developers as well.

Project priorities (very early stage): - run code where the data is - inside of the database with user defined functions (most likely directly rust and wasm) - frontend to directly query the database without the risk of injection attacks (no rest, graphql, orms, models and all the boilerplate in between) - can be embedded into the application or runs as a standalone server - I hope this to be the killer feature to enable full integrations tests in milliseconds - imperative query language, which puts the developer back in control. Instead of thinking in terms of relational algebra, its centered around the idea of transforming a dataframe

Or in other words, I want to enable single developers or small teams to move fast, by giving them an opensource embeddable relational firebase.

https://reifydb.com/

If you have any thoughts on that, I would love to talk to you.

dangoodmanUT · 3h ago
This reminds me spacetimedb a bit
yurivish · 7h ago
I'm working on a little website to summarize discussion trends across the podcast ecosystem. I wrote about an early prototype here[1] and also gave a presentation about it a few months ago[2] and now I'm working on an expanded "daily pulse" view across hundreds of episodes of top news podcasts from the last few days.

My secret agenda is to explore how the "information supply chain" can be tracked across the data-processing stack all the way from the original audio through transcription, the processing pipeline, and UI. I'm using language models for multi-stage summarization and want to be able to follow the provenance of summaries all the way back to the transcripts and original audio.

[1] https://yuri.is/n/podcast-vibes-prototyping/

[2] https://yuri.is/n/podcast-vibes-presentation/

andrewrn · 1m ago
This is a super neat concept. I would find it really cool to be able to see a "map" of podcast topics, wherein I can click to specific segments in specific podcasts. Even cooler would eventually be the ability to stitch together clips about the same topics from separate podcasts, eventually.
z3ugma · 7h ago
This is such a good visualization idea. I'd like to see some of the webinars and work calls I am on represented this way in the after-call summary
yurivish · 6h ago
Thanks!

Yes, you could try making one using Observable Plot (which is what I used for these): https://observablehq.com/plot/transforms/dodge

One of the slides in my presentation has the full prompt I used, in case that's useful. I ran it on chunks of the podcast transcript and then merged/deduplicated the results to get the data that's visualized here.

tombert · 3h ago
I've been hacking on an Icecast-compatible server with Erlang. You can feed it an FFmpeg icecast feed into the server, and listen to it with any Icecast-compatible player. I think it's kind of neat; I do some extra things that the official Icecast server doesn't give you.

I store the chunks in a custom-built database (on top of riak_core and Bitcask), and I have it automatically also make an HLS stream as well. This involved remuxing the AAC chunks into MPEG-TS and dynamically create the playlist.

It's also horizontally scalable, almost completely linearly. Everything is done with Erlang's internal messaging and riak_core, and I've done a few (I think) clever things to make sure everything stays fast no matter how many nodes you have and no matter how many concurrent streams are running.

alexbecker · 6h ago
Lately I've been trying to detect/mitigate prompt injection attacks. Wrote a blog post about why it's hard: https://alexcbecker.net/blog/prompt-injection.html
jaronilan · 8h ago
Nothing actually. Feels nice.
dataviz1000 · 7h ago
I built an IPC/RPC shim for a Chrome extension so I can send strongly-typed messages between isolated JS contexts that otherwise expose wildly inconsistent messaging APIs.

I discovered that VSCode has a very nice solution so I pulled the core VSCode libraries and injected them into a Chrome extension using the dependency injection, ipc / rpc, eventing to bridge the gap between all of these isolated JS contexts and expose a single, strongly‐typed messaging API, my IPC/RPC shim sits on top of each of the native environments and communication mechanisms.

Yesterday, Microsoft released the source code for the Copilot chat. Apparently, since the basis of my Chrome extension is the same core libraries I can drop the VSCode chat UI into the side panel without much friction. Although, I might continue to use Microsoft's FluentUI chat currently implemented in the extension.

Because Copilot chat has a lot of code that runs in node in Electron, now I'm working in porting all the agent capabilities for browser automation from the Copilot chat including the code for intent, prompt creation, tools, disambiguation, chunking, embedding, ect. I'm 4 to 6 weeks away from having feature parity of Playwright for automation from a Chrome extension side panel that can do most of the inference using huggingface transformer.js locally. Nonetheless, heuristics exposed as tools such that if the intent is playing a video, all that is required is a tool that collects all the video tags and related elements with metadata. No need to use $10 in tokens to figure out which video element to play.

Yeah, I think I'm 4 to 6 weeks away from having a Copilot chat in a browser doing agent automation.

If you want to see where I'm at today, https://github.com/adam-s/doomberg-terminal.

kordlessagain · 4h ago
> AI-Powered News Intelligence

When I did Grub the crawler back in the day, that's what I was shooting for!

If you want a jumpstart on the Playwright stuff: https://github.com/kordless/gnosis-wraith. Runs on Google Cloud Run. The UI is still in progress but you can test it here: https://wraith.nuts.services. Uses tokens to email for login.

The extension stuff is the way to go, IMHO! You can capture any page, even automatically.

dataviz1000 · 21m ago
That is awesome! Thank you for sharing!
niuzeta · 2h ago
It's kind of boring but I'm learning k8s and argo-cd to figure out if I can do feature-branch deployment to a cluster.

like, it would be very cool to do something like have your feature branch be deployed to a separate pod in dev cluster, and have an ingress rule set up so that it points to that pod only.

So if your dev environment usually points to <some-app>.dev.example.com,

Deploy your feature branch to a dev cluster, but on a different pod. Then have it reachable to <some-app>.feature-branch-1.dev.example.com without touching main.

I think it's a neat idea and I'm sure it should be possible if I configure some istio settings.

It's all new thing and it's fun to have a direction towards learning

ivanjermakov · 1h ago
Suckless text editor written in Zig: https://github.com/ivanjermakov/hat

The goal is to have a full featured editor with tree-sitter and LSP support which source code you can read through in one evening.

Love how it's going so far, I'm trying to keep it both minimal and easily extendable.

daxaxelrod · 7h ago
Insurance is negative NPV. Trying to make it NPV neutral by giving people tools to self-insure. Starting with an app that lets you self-insure your phone with friends and family.

https://apps.apple.com/us/app/open-insure-self-insurance/id6...

rubyfan · 2h ago
This is interesting, it this an experiment or planning to make it real? What markets is it targeting?
daxaxelrod · 1h ago
It’s real, my friends and I all pay premiums every month, we’ve put aside $1100 so far. Work on it nights and weekends with one of my fellow policy holders. Feedback would be super appreciated.
kappasan · 1h ago
Still working on dédédé [1] - it's a simple web-based platform to share the "good, bad, and why"s of urban spaces. We're slowly adding functionalities and crushing bugs, an iOS app is in the pipeline too!

[1] https://dedede.de/en

andoando · 6h ago
A screen reader for linux. My aim is to carry around my Raspberry Pi 500 or some other mini keyboard with a tiny computer embedded in it and have it serve as a fully functioning computer.

My hope is to make it easier to use a computer blind than with my usual workflow with a monitor.

asciimov · 7h ago
I have a nice garden going right now. TAM Jalapeños have taken the longest to flower, almost thought they wouldn’t. Sweet cherry peppers have been plentiful. Lost my zucchini crop to squash vine borers.
cellular · 2h ago
Vine borers got mine too. First time in a long time. I'm in central Texas.

But no hornworms or caterpillars this year. Very strange!

comonoid · 14m ago
I'm working on a dynamic ARM assembler for Rust. dynasm is too restrictive: it uses static register names, and iced-x86 is x86/x64 only.

It allows to define

add x1, x2, w3, sxth 2

add x2, x3, x4, lsr 8

as

...

add(X1, X2, X3).extend(ExtendMode::SXTH, 2), // yes, it is X3, not W3.

add(X2, X3, X4).shift(ShiftMode::LSR, 8),

...

Still haven't published the repo as I can't pick a cool name...

daxfohl · 6h ago
I was hoping to make a piano practice assistant for my kids, that would take sheet music in MusicXML format, listen to the microphone stream, and check for things they frequently miss like rests, dynamics, consistent tempos.

Surprisingly the blocker has been identifying notes from the microphone input. I assumed that'd have been a long-solved problem; just do an FFT and find the peaks of the spectrogram? But apparently that doesn't work well when there's harmonics and reverb and such, and you have to use AI models (google and spotify have some) to do it. And so far it still seems to fail if there are more than three notes played simultaneously.

Now I'm baffled how song identification can work, if even identifying notes is so unreliable! Maybe I'm doing something wrong.

Tade0 · 5h ago
Here's an algorithm I cooked up for my (never completed) master's thesis:

It's based on the assumption that the most common frequency difference in all pairs of spectrum peaks is the base frequency of the sound.

-For the FFT use the Gaussian window because then your peaks look like Gaussians - the logarithm of a Gaussian is a parabola, so you only need three samples around the peak to calculate the exact frequency.

-Gather all the peaks along with their amplitudes. Pair all combinations.

-Create a histogram of frequency differences in those pairs, weighted by the product of the amplitudes of the peaks.

When you recognise a frequency you can attenuate it via comb filter and run the algorithm again to find another one.

fxtentacle · 6h ago
Note detection works ok if you ignore the octave. Otherwise, you need to know the relative strength of overtones, which is instrument dependent. Some years ago I built a piano training app with FFT+Kalman filter.
daxfohl · 5h ago
Cool, I'll give it a shot. So far I've just been blindly feeding into the AI and crossing my fingers. I'll try displaying the spectrogram graphically, and I imagine that'll help figure out what the next step needs to be.

I was thinking this would be a good project to learn AI stuff, but it seems like most of the work is better off being fully deterministic. Which, is maybe the best AI lesson there is. (Though I do still think there's opportunity to use AI in the translation of teacher's notes (e.g. "pay attention to the rest in measure 19") to a deterministic ruleset to monitor when practicing).

david927 · 6h ago
I always wanted to do a keyboard/tablet combo (maybe they make these, I don't know).

The idea is a fully weighted hammer action keyboard with nothing else, such as the Arturia KeyLab 88 MkII, and add to that tiny LED lights above each key. And have a tablet computer which has a tutor, and it shows the notes but also a guitar hero like display of the coming notes, where the LED lights shine for where to press, and correction for timing and heaviness of press, etc.

Tsarp · 2h ago
https://carelesswhisper.app

Locally running wispr flow equivalent without any tracking, signup, analytics or subscriptions.

Dictate into any text window on your Mac. Works really well with technical language specifically when using with claude code, cursor, windsurf.

Very fast since the underlying whisper.cpp lib is very well optimized for Metal and CoreML usage on Apple Silicon machines.

drpakfro · 1h ago
been working on a side project for a few months that has me excited to keep iterating on it the more i do it. long story short it's an adaptive learning app for autodidacts. creates a json object which is the foundation of features i build on top of it to help people learn with an end-goal in mind, using peer reviewed behavioral psyc research + AI. You learn whatever you want but it learns you too to help you learn better. not good enough to apply to YC yet but...hopefully soon.
zabi_rauf · 5h ago
I was trying out an MCP tool and hit few issues, even though there is MCP inspector which sets up a webserver etc. I wanted much simpler tool I can use in SSH environment, so I built (with Claude Code) a terminal tool to proxy any stdio MCP server and then use the monitor TUI to see all the flow of calls between MCP client and server. Its been helpful to learn thing about MCP as you see the flow of calls happening and inspect them.

https://github.com/zabirauf/mcp-trace

JusticeJuice · 7h ago
I wanted to learn a bit about backend development, so I've been building my own version of soundcloud with supabase. Main thing I've learnt so far, auth is flipping complicated. But it's been really fun! The audio compression is done clientside with ffmpeg and WASM, I'm pretty pleased with that approach. Everything is pretty busted atm, but I'm trying to get to a 'walking skeleton' then polish. I've been devlogging the process as I go for fun.

https://cassette.world/

https://www.youtube.com/watch?v=mwpg34oLvwU

seinecle · 1h ago
Refactoring the front end of my Java web app to follow basic principles of algebraic data types.

The goal is to make the code better organized, easier to read, maintain and extend.

https://github.com/seinecle/nocodefunctions-web-app

et1337 · 3h ago
A surreal open world mystery game in the “Outer Wilds-like” genre - sometimes referred to as “Metroidbrainia”

Just made the first devlog video: https://youtu.be/CFgDlAthcuA

evronm · 1h ago
Market based governance, aimed primarily at DAO's and network states. https://marketdao.dev
Ono-Sendai · 2h ago
Substrata - an open-source metaverse. https://substrata.info/, https://github.com/glaretechnologies/substrata

Custom high performance C++ / OpenGL/WebGL engine. Uses Jolt physics and Luau and Winter scripting.

It's a lot of fun and pretty challenging code.

bytecauldron · 7h ago
I'm currently developing a middleware that connects Nvidia PhysX to GameMaker. There's still a lot of work left but I have most features working in some capacity. Dynamic and static actors, primitive/convex/triangulated shapes, joints, character controllers, GPU accelerated PBD particles and deformables, etc. GameMaker is primarily a 2D engine and offers limited options for 3D, but it is possible if you know how to use vertex buffers. I'll probably post it here once it's a little farther along, but I'm pretty proud of my progress so far. I'm hoping I can use it to support myself in some way, but there's a lot of anxiety in selling a niche project like this.
insin · 3h ago
Trying _not_ to create another subscriptions for your browser extension platform, but I want to solve the problems with the storage.sync API (limited support, limited data, not cross browser/cross device) for my own extensions, so I'm effectively dogfooding one.

I've added a few exclusive features to one of my extensions for subscribers in addition to settings syncing, and have auth and Stripe redirects and webhooks working, so now at the stage of working out the best heuristics to use for when to sync and connecting the extension to the settings API.

drpakfro · 1h ago
been working on a side project for a few months that has me excited to keep iterating on it the more i do it. long story short it's an adaptive learning app for autodidacts. creates a json object which is the foundation of features i build on top of it to help people learn with an end-goal in mind, using peer reviewed behavioral psyc research + AI. You learn whatever you want but it learns you too to help you learn better.
pentamassiv · 6h ago
I just finished playing with my Shimano Di2 groupset and the e-tube app. Last year researchers revealed that a simple replay attack was possible to shift someone elses bicycle. My bike was delivered with updated firmware that is no longer vulnerable so I had to find a way to downgrade the bike. The e-Tube app only allows updating the bike, but it detects root, emulators, frida-server or changing the APK and then crashes. I had to find a way to circumvent that and use an SDR to do the actual attack
ARob109 · 2h ago
Would love to see a write up on this
jjuliano · 2h ago
I'm a solo founder, and this month, I just got into Cursor vide coding development (from Emacs). Still working and getting accustomed to this new vibe coding as it's easy to mess everything up.

Been developing this AI agent framework for 1 year now. It's very similar to n8n, but exclusively for open-source LLMs. It also just recently got MCP support.

The project is https://kdeps.com

RobRivera · 4h ago
Still working on my video game.

I didnt realize how much overhead an sfml window draw call has, granted I have yet to target optimizing that yet.

Seems like my first candidate for multithreading; also I think the scheme I implemented for how to manage texture/sprite switching is advised against and may need to slightly refactor how I store and swap based on object state.

Yeet

CharlieDigital · 5h ago
https://github.com/CharlieDigital/runjs

I wrote an MCP server in C#/.NET that let's LLMs safely generate an run JavaScript using the Jint interpreter.

It includes a `fetch` analogue using `System.Net.HttpClient`, as well as `jsonpath-plus`, and a built-in secrets manager.

The prime use case is working with HTTP REST APIs with an LLM. With this, you can let users safely generate and execute JavaScript in a sandbox.

cddotdotslash · 4h ago
Wut.Dev (https://wut.dev) - a fast, client-side, privacy-focused, alternative to the AWS console.

I got tired of using the AWS console for simple tasks, like looking up resource details, so I built a fast, privacy-focused, no-signup-required, read-only, multi-region, auto-paginating alternative using the client-side AWS JavaScript SDKs where every page has a consistent UI/UX and resources are displayed as a searchable, filterable table with one-click CSV exports. You can try a demo here[1]

[1] https://app.wut.dev/?service=acm&type=certificates&demo=true

alberth · 3h ago
Unsolicited feedback (and take with grain salt since I’m probably not your target buyer)

- the subheading is describing the “how” not the “what”. Meaning, what would you use this product for?

- in general, all the headlines could be preposition from the “what” a user would do scenario. Eg instead of saying “Resource Relationship Diagrams” … say “See Resource Relationship with Ease”

- if I’m understanding the tool correctly, this seems like a “lookup” tool. In which case lookup.dev is for sale … just fyi.

cddotdotslash · 3h ago
Much appreciated! I just put this homepage together recently, so this is really helpful feedback.
plafhz · 3h ago
Great idea, i'm tired of aws console too
0x10ca1h0st · 3h ago
Working on the echi network.

A residential proxy network that leverages blockchain by turning everyday users home connections who have no contracts against such practices, into rentable exit nodes, each contributing bandwidth in exchange for rewards. A dedicated blockchain ledger tracks the exact amount of data each node relays and automatically releases micropayments in the network’s native cryptocurrency, ensuring transparent, real-time compensation without a middleman.

But with my adhd, I'll likely end up working on another project sooner than later. Interested in MCP aggregation.

feliixh · 2h ago
I'm building a catalog for health care price transparency data that aggregates the rates published by all insurers, to put everything in one place and make it easier for developers / researchers to access this data. https://www.accessmrf.com/
salomonk_mur · 6h ago
I'm working on a system to help people write their Family History.

You upload interviews with family members (text, audio or video all work) and the system automatically transcribes the text, finds key people or events, and puts it together with other information you may have gathered about those events or people before. Like building a genealogical tree but with the actual details about people's lives.

In the works to also attach pictures of said people and events to give it some life.

mmarian · 9h ago
Just writing posts for my blog on personal experiences with startups https://developerwithacat.com . Am taking a break from any serious building, bit tired of failing. Using the blog as a form of self therapy.
alexpogosyan · 2h ago
I'm working on https://fractalchat.ai It's an LLM chat interface but instead of single linear thread, in each message you can create anchors that branch off into subthreads. Useful for for digging into related subtopics/tangents without losing the parent thread's context.
benjaminbenben · 7h ago
I've been working on https://stacks.camera - it's an idea about overlaying the previous picture when you're taking a photo so you can create a timelapse or animation.

For example, you can scroll through 60 pictures from my window https://stacks.camera/u/ben/89n1HJNT

Most of the challenges are around handling images & rendering, but I've also been playing with Passkey-only authentication which I'm finding really interesting.

yboris · 2h ago
Aiming to have a small-feature release of my Video Hub App this summer:

https://github.com/whyboris/Video-Hub-App & https://videohubapp.com/

If you have videos you want to browse, preview, search, tag, sort, etc on your computer, my software might be great for you :)

mattkevan · 5h ago
I’m building a browser-based static site generator and CMS.

I love SSGs as they’re simple and fast and the sites they make can be hosted anywhere with little maintenance. But, after helping a non-technical friend get up and running with one, the UX is rubbish.

So I’m building a combined CMS and SSG called Sparktype, designed for writing and publishing. Users can create pages or collections, write and export the generated site. At the moment it exports to zip, but I’m working on connecting to Netlify or GitHub for automatic deployment.

My goal is to build something that allows people to create a publication with the ease and polish of say, Medium or Substack, but which is completely portable and will work on almost any hosting.

It’s very early MVP - the editor works, but the default site theme is rough around the edges and there are a bunch of bugs. I’m currently working on getting it good enough so that I can create its own marketing and documentation site with it.

I’d love any thoughts or feedback you might have.

https://app.sparktype.org

acidburnNSA · 7h ago
I've been building an interactive nuclear reactor scoping tool to help people build intuition about how different types of nuclear reactors work and cost at different sizes. I ran a bunch of simple reactor simulations and this basically interpolates between them. https://whatisnuclear.com/neutronics-scoping-tool.html

I did a screenshare demo of it yesterday: https://www.youtube.com/watch?v=GQzDfrdf71Y

tokioyoyo · 7h ago
I wrote a simple app last year that put all my Apple Watch workout routes on a simple map, so I can see how much of the city I’ve covered (all existing options were paid, and I was too cheap for it). Now I have some time, so rewriting it properly that’s based on neighbourhood, completion %s, achievements and etc. It’s weirdly fun, because I’m not a mobile engineer, but satisfying to see hundreds of users per month using my app.

Also, every region has different ways of representing a “neighbourhood”, so I get to learn how to extract viable data from each city. Lots of map stuff, I’m genuinely enjoying it!

this-pony · 7h ago
Did you look at the squadrats app? It’s compatible with strava also. It sounds quite similar to what you describe.
tokioyoyo · 7h ago
Not Squadrats, but I've checked out some others, like CityStrides. There were a few problems though:

- It felt like what I wanted to achieve is pretty simple (GPS coordinates -> display all on the same map), so didn't want to subscribe for a monthly fee. I couldn't actually find an app that would dump all my HealthKit data directly onto the map, which was surprising.

- Last year when I wrote my app, I wanted to see how fast I can learn simple mobile development loop

- Now, I couldn't really find anything that divides the coverage areas into real-world neighbourhoods. So, think of West Village of NYC, or Yorkville in Toronto, or Yoyogi in Shibuya and etc. Back when I used to live in Vancouver, I would look at my own app, and kinda say in my head "aight, I've walked through every street in West End, Vancouver". Figured it would be cool to have a proper way of tracking it. So working on it currently.

- It's kinda fun to work on an app for my own needs

I'll take a look at the squadrats though! Looks pretty cool.

KomoD · 7h ago
There's wandrer.earth as well, though it's based on roads, not neighborhoods or squares
nicbou · 7h ago
This sounds wonderful. Do you have some writeup about it or screenshots?
tokioyoyo · 6h ago
Hm, the new version is very rough right now, as I've been focusing on API/Data side of things. But generally the idea is something like these: - https://uc792df8aab8345f71952cc54569.previews.dropboxusercon...

- https://uceed957a657be57d7d53af97504.previews.dropboxusercon...

It felt good when I was able to figure out how to generate all the neighbourhood data for any given city. A bunch of fun OSM data manipulation though.

If you meant the app that I wrote last year, it's here - https://apps.apple.com/us/app/mapcut/id6478268682. The idea is much simpler though, as I mentioned.

danielvaughn · 1h ago
A keyboard-driven tool for UI design. It’s like a mix of Webflow, Storybook, and Vim.

https://github.com/matry/editor

actionflop · 3h ago
I have been working on https://gametreecalculator.com, which is a canvas on which you can draw a decision tree. Assuming the payoffs you define are zero sum, you can calculate the optimal solution (nash equilibrium) by clicking a button. The code for the "calculator" was pulled from https://actionflop.com, where it's used for GTO poker bots you can play heads up no limit holdem against.
csjh · 3h ago
Started on a dependency-free (including manual object file creation, excluding manual linker) single-pass C compiler with a goal of it being self-hosting. Spawned after my previous project (single-pass Wasm JIT) started to plateau a bit and wanted to start something more "full-stack compiler"-y.

https://github.com/csjh/c-liva

jianzong · 3h ago
I'm building my personal finance App Percento for iOS. More than 10 years after I switched my career from accountant to Dev, and it has been more than 5 years that I worked on this project, how time flies.

https://apps.apple.com/us/app/percento-net-worth-tracker/id1...

https://www.percento.app

welpo · 7h ago
I'm trying to create the best A/B test sample size & duration calculator: https://calculator.osc.garden/

It's free (https://github.com/welpo/ab-test-calculator), and it has no dependencies (vanilla JS + HTML + CSS).

Right now it only supports binary outcomes. Even with the current limitations, I feel it's way above many/most online calculators/planners.

ok_dad · 7h ago
I'm writing tests, fixing bugs, and adding features to improve the quality of a piece of financial software that transfers certain financial data on a special private network. It's way less fancy than it sounds, but I'm enjoying improving the tests and adding important security and legal compliance features. Knowing that others will depend on my hard work to keep their business financial records straight is a great reward, and I am taking my responsibility seriously.

I'm also working on learning about building software with LLMs, specifically I am building a small personal project that will allow me to experiment with them using measurable hypotheses and theories, rather than just tweaking a prompt a bunch and guessing when it is working the best. I know others have done this, but I am building it from the ground up because I'm using it as a learning experience.

I plan to take my experimentation platform and build a small "personal agent" software package to run on my own computer, again building from scratch for my own learning process, that will do small things for me like researching something and writing a report. I don't expect anything too useful to come out of it, since I am using 1.7B/4B models on a MacBook Air M2 (later I might use my 3080 but that won't be much improvement), but it will be interesting to build the architectural stuff even if the agents are effectively just useless cycle-wasters.

Xixi · 4h ago
I've been working on AltStack.jp [1], a curated directory of Japanese digital services (think cloud hosting, registrars, email providers, etc.), all made and operated in Japan. It’s for anyone in Japan looking to reduce reliance on foreign (especially US-based) platforms, inspired by projects like European-Alternatives.eu.

The site itself is built with Astro, content is written in Markdown. It's still very much a work in progress: the design’s evolving, search isn’t done yet, and I’ve only scratched the surface with a handful of categories out of the dozens I have planned.

[1] https://altstack.jp/en/

issafram · 2h ago
Started as a curiosity and turned into a small little app (not encouraging or discouraging use) https://github.com/issafram/torrent-ratio-booster/tree/main
nirkalimi · 4h ago
Working on https://ireact.to/, basically a centralized link in bio to collect feedback, questions, urls, ideas from your community.

Saturated market riddled with alternatives, but I wasn't really able to find low friction way to collect these things that met all my needs. Most of this stuff gets lost in DMs or comment sections, which just wasnt working for me.

Also figured it would be a neat way to re-think paying for a creators attention. IE, giving the option to tip (and soon subscribe to a VIP inbox of sorts).

niwrad · 8h ago
An audience-driven GenAI rom-com w/ Daily Episodes.

How We Met – https://how-we-met.c47.studio/

Each day, I create a new 30-second episode based on the plot direction voted on by the audience the day before.

I'm trying to see how far the latest Video GenAI can go with narrative content, especially episodics. I'm also curious what community-driven narratives look like!

For the past week, I've been tinkering mostly with Runway, Midjourney, and Suno for the video content. My co-creator vibe coded the platform on Lovable.

jlarks32 · 4h ago
I'm working on Tennis Scorigami - a data viz and tennis centric project somewhat similar to NFL's scorigami, but with a little bit more (if i do say so) interesting visualizations / new ways to look at the data.

From a technical side, I've processed around 325k+ matches. Right now, only main ATP / WTA matches (no challengers, no doubles, no mixed) sadly. I'm working on expanding that, improving our infra layout, exposing a public facing API, collecting the data on my own, and most importantly live score ingestion (especially given the fact that Wimbledon is starting tomorrow).

Feedback on the app through Canny / joining the Discord / following the Twitter / or any and all of the above would be much appreciated.

kazinator · 6h ago
Working on tail calls for TXR Lisp. Current release provides self tail calls only; and certain cases don't work, like applying in tail position. Plus there is a shadowing bug. These issues are addressed already.

Tail calls between different VM functions are the next challenge. I'm going to somehow have it allocate the VM instance in the same space (if the frame size of the target is larger than the source, "alloca" the difference). The arguments have to be smuggled somehow while we are reinitializing the frame in-place.

I might have a prefix instruction called tail which immediately precedes a call, apply, gcall or gapply. The vm dispatch loop will terminate when it encounters tail similarly to the end instructions. The caller will notice that a tail instruction had been executed, and then precipitate into the tail call logic which will interpret the prefixed instruction in a special way. The calling instruction has to pull out the argument values from whatever registers it refers to. They have to survive the in-place execution somehow.

noisy_boy · 4h ago
Writing a go binary to act as a wrapper around ripgrep and fzf. Can be done in many ways but I wanted a simple binary that I can invoke from lf or the command line to search, so that I'm using the same keystrokes to search, inside or outside of editor.
bbkane · 4h ago
I always get the most joy out of writing these "smaller" tools
Tsarp · 2h ago
https://voicebraindump.com

Low friction Markdown based voice journaling. Locally transcribed voice memos with whisper and write as markdown files (to any folder or obsidian vault).

czarofvan · 2h ago
Is this opensource or just open eco system?
flats · 3h ago
I’m currently working on a sequencer DAW plug-in (MIDI, audio) with multiple voices & precise timing/articulation controls, including a templating system & transformations to apply these changes to several steps/voices at the same time. Will also support importing/exporting tempo maps.

Can be used for everything from slightly skewed beat-making to generating undulating waves of sound!

kimjune01 · 1h ago
MCP Server that scrapes Slack, including DMs. 100% local https://github.com/kimjune01/slunk-mcp
creakingstairs · 6h ago
I _was_ working on an open-source, self-hostable app for sending out newsletter to your friends and families. I made a MVP but then I scrapped it after realising how cumbersome it is to manage email related functionalities. Since its strictly for connecting with your friends and family, I figured, why not let users use their own email to send out the updates.

So I made a proof of concept app on iOS that uses gmail API to send out newsletter emails. I wish I could just send prepopulated emails (with inline attachments and recipients) to iOS mail client instead of asking for gmail OAuth permissions, but it doesn't look possible.

Now I'm trying to create a polished app for alpha testing. Been exploring data persistence (Swift Data, Core Data, rxdb etc) and settled on Core Data. Architecture wise, I've settled on MVVM + Swift UI. At the moment I'm trying to figure out how to make mocks and XCode preview data geneeration ergonomic.

So far, I am pleasantly surprised at Swift and iOS development, but I still hate XCode.

ddahlen · 7h ago
I posted a couple of months ago:

https://github.com/dahlend/kete

Research grade orbit calculations for asteroids and comets (rust/python).

I began working on this when I worked at caltech on the Near Earth Object Surveyor telescope project. It was originally designed to predict the location of asteroids in images. I have moved to germany for a PhD. I am actively extending this code for my phd research (comet dust dynamics).

Its made to compute the entire asteroid catalog at once on a laptop. There is always a tradeoff between accuracy and speed, this is tuned to be <10km over a decade for basically the entire catalog, but giving up that small amount of accuracy gained a lot of speed.

Example, here is the close approach of Apophis in 2029:

https://dahlend.github.io/kete/auto_examples/plot_close_appr...

benreesman · 5h ago
I'm working on a fully static-link as first class, fully correct `pkg-config` information, fully re-`ar`'d (e.g. `-labsl`, `-lboost`, many other difficult deps work already) set of libraries that default in `libressl`, `musl`, and other pro-user / anti-telemetry choices expressed as overlays on `nixpkgs` that build .deb files (among other things) to leverage the enormous package set to get a complete system with an effort realistic for an individual to bootstrap to the "interesting" phase.

This uses bad things (cmake-only, Debian policy agenda) things that work against their creators: cmake outputs enough information to create correct `pkg-config` for example.

This would make it realistic to zero-backdoor an Ubuntu-style system.

For 30 years Linus has been holding the line on a stable kernel ABI and only FAANGs and HFT shops have reaped the full benefits.

WillAdams · 3h ago
Still chugging away at:

https://github.com/WillAdams/gcodepreview

Currently finishing up a re-write which changes from using union commands (which resulted in an ever more deeply nested CSG tree) to collecting everything in a pair of lists using append/extend and then applying one each union operation, resulting a flatter structure.

Once all that is done I'm hoping to add support for METAFONT/POST curves....

memset · 6h ago
A simple “ChatGPT for email.” I just want to be able to ask things like “What time is my flight next week” or “Can you pull up the email where I sent John the final documentation for the api?”

I don’t want to auto compose messages or anything. I just want the computer to filter out things I don’t care about and tell me the answer to things without hunting around my inbox.

arjunbajaj · 6h ago
Fostrom (https://fostrom.io/) - A developer-focused IoT Cloud Platform.

In Fostrom, devices connect via our SDKs or standard protocols such as MQTT and HTTP, and send and receive structured, typed data, through pre-defined Packet Schemas. Each device gets its own sequential mailbox for messages. You can trigger webhooks or broadcast messages to other devices based on incoming data, powered by programmable actions (written in JS).

We entered Technical Preview recently. Since then, we've been working on:

- Major upgrades to Actions: making it easier to write action code, along with testing before deploying, and more docs on how to write good actions. Coming this week.

- We're in the process of releasing Device SDKs in multiple languages, including JS, Python, and Elixir soon. The SDKs are powered by an underlying lightweight Device Agent written in Rust.

- A new data explorer to view and analyze your fleet's datapoints, which will be available in a few weeks.

Happy to answer questions and appreciate any feedback.

1vuio0pswjnm7 · 2h ago
Tiny program that batch renumbers sections/clauses in documents.

It is like MS Word "Bullets and numbering" but it's a small UNIX filter, no GUI, much faster and smoother than MS Word or Google Docs.

Perhaps the beginning of a markup language for text or HTML files intended to be converted to MS Word.

romx · 4h ago
Working on a POS for my wife's stationary and office supply store in mexico. Hosted on my on premise hardware raspberry pi. I will upgrade from containers to kubernetes soon. xplaya.com && papeleria.xplaya.com
bredren · 6h ago
I’m working on a native swift implementation of FileKitty, the FOSS LLM prompt context preparation tool I’ve been building with pyqt.

https://github.com/banagale/FileKitty

My most recent release includes signed .dmg installer on top of brew, and a local build option.

Although it should compile to any platform, I want to take advantage of the new Foundation Model sdk Apple announced at WWDC.

I also recently released something called slackprep, a CLI tool and Python library that wraps slackdump, converting Slack export data into LLM-groomed Markdown transcripts.

That includes labeling inline images organizing them for upload as LLM context.

https://github.com/banagale/slackprep

I see these and other utilities coming together to assist in assembly of deep context for system level design.

dpkrjb · 7h ago
I've been slowly building a website full of daily puzzle games (https://regularly.co/). I built the first game for my wife (https://regularly.co/countable) which she plays every day. Floored is my personal favourite, I find it deceptively challenging
jtokoph · 6h ago
These are fun. I think Kingly would be better if solutions were unique. I was confused at first when I ended up in a situation with ambiguity and realized the puzzle just had multiple solutions (Sunday, June 29)
nghiatran_uit · 4h ago
I'm building an alternative to Lulu. Native macOS app, strictly follows Apple Human Interface Guidelines, powered by Network Extension for better performance. I also try to convert IPs to domains (LuLu only shows the IPs) from DNS or get the SNI on the wire. It allows you to monitor all traffic from your Mac and block it if needed.

Simple license, no subscription, perpetual license with 2 years of updates.

https://tinyshield.proxyman.com/

insaider · 2h ago
https://whatsyum.com - app/website for dish-specific ratings, as opposed to just the whole restaurant. Bali focused for now.
gnahtb · 2h ago
I'm thinking of a news RSS feed/newsletter filled with GRE-level vocabs. The idea is to encounter to GRE vocabs more frequently, hence memorize the vocabs faster.
slau · 7h ago
A Parquet file compactor. I have a client whose data lakes are partitioned by date, and obviously they end up with thousands of files all containing single/dozens/thousands of rows.

I’d estimate 30-40% of their S3 bill could be eliminated just by properly compacting and sorting the data. I took it as an opportunity to learn DuckDB, and decided to build a tool that does this. I’ll release it tomorrow or Tuesday as FOSS.

zX41ZdbW · 3h ago
brynet · 2h ago
https://brynet.ca/wallofpizza.html

Ideally, making rent as an open source developer.. any help appreciated. :-)

dagmawibabi · 2h ago
https://ScholarXIV.com

This's a beginner friendly arxiv paper exploration platform but with powerful feature to select multiple papers and get AI analysis and comparison.

AKluge · 6h ago
Updating a treatment of a finite difference approach to Schrodinger's equation from WebGL to WebGPU, using WebGPU compute shaders. Having actual arrays for data storage is so much cleaner than the older approach with textures for data storage and fragment shaders for computations. https://www.vizitsolutions.com/portfolio/webgpu/compute/ Once this is caught up with the earlier version, I'll be extending it in terms of additional numerical issues and techniques and use it to build explorable educational content in 1-D quantum mechanics. Eventually, on to 2-D quantum mechanics.

I welcome feedback, just keep in mind that this is a work in progress, and I haven't even reviewed it for clarity and typos.

matthewolfe · 7h ago
I'm working on TokenDagger [0] a high performance implementation of OpenAI's Tiktoken. My benchmarks are showing 2-3x higher throughput, as well as ~4x faster tokenization for code samples on a single thread.

[0] https://github.com/M4THYOU/TokenDagger

dispencerrr · 6h ago
Big update to my micro-saas https://testingbee.io!

TestingBee is a way for startups to get part-time QA for their product's critical flows.

I've been working at startups for the last four years and I've consistently been on teams struggling to balance launching quickly versus keeping our product working. We've never had success creating a substantial test suite because our product is changing too fast and engineers are too overloaded.

I built testingbee as the solution. It lets you write your app's flows in plain english and the bot I created will execute those flows in your app as a user would. This triggers on every push to make sure every release keeps your product working :)

Leftium · 6h ago
Some major updates to https://weather-sense.leftium.com

Play spot-the-difference with the old screenshot: https://github.com/Leftium/weather-sense#weathersense

- At least five major changes!

- Or look at the commit history ;)

---

I'm designing a game that:

- is simple to play. (just log in and check-in with your geolocation. Optionally add a short message)

- helps people stay connected. (You can view friends/family on the globe with some mild competition/cooperation)

- Right now, I'm trying to figure out something compelling to "collect." Cities/states, weather conditions, letters, numbers, words, etc... I think it should be tangible.

jostylr · 6h ago
I have been managing Claude to work on a rational math library in JavaScript: https://calc.ratmath.com

I am particularly enjoying the Stern-Brocot tree exploration: https://calc.ratmath.com/stern-brocot.html#0_1 I hope people will find it to be a nice way of understanding good rational approximations and how they tie into continued fractions and mediants. A nice exercise is to type x^2 in the expression box and go down the path to always advance towards x^2 being 2. This gives the continued fraction representation of the square root of 2.

fahimf · 4h ago
I built a tool that surfaces engineering issues for my VIP customers at https://customercanary.com/. It's a layer that sits on top of our existing error tracker.

It's something I've needed for a while working in engineering teams in B2B SaaS. Currently technical co-founder of AdQuick.com, an outdoor advertising marketplace backed by Initialized.

zzo38computer · 4h ago
I am mostly continuing to work on Super ZZ Zero, which is a game engine, like ZZT and MegaZeux in many ways. The program is FOSS and is written in C.

I also have some ideas of a programming language designed mainly to process files in DER format (as well as data from stdin and to stdout), but have not actually implemented anything so far.

I also have ideas about an operating system design and computer design, and should have help to write the specification properly, and then it can be implemented afterward.

hobzcalvin · 5h ago
https://hobzcalvin.github.io/blumon/editor

Node based visual editor for 2D LED patterns over BLE. Web/iOS/Android app to ESP32, works with most addressable LEDs. It’s like TouchDesigner x WLED x PixelBlaze, but Bluetooth so you don’t need annoying wifi setup. And hopefully you can make much more interesting patterns without touching any code.

Eventually the ESP32 devices will save all the patterns they’ve seen and share them with apps that connect to them. So there’s a pattern ecosystem, like Electric Sheep.

Still rough and in progress (and constantly deploying so it may break for you )

rickcarlino · 6h ago
Working on an open source language learning app. It does listening/speaking drills with spaced repetition.

It’s like Anki but for speaking and an LLM grades your response.

https://github.com/RickCarlino/KoalaCards

zainhoda · 6h ago
Mobile app that lets you continue coding while you’re away from your computer.

The goal is to be a full mobile IDE that lets you use Claude Code, Gemini CLI, and other agentic code editors.

Has mobile-native file browsing and git integration.

https://remote-code.com

ncruces · 5h ago
Still trying to upstream my Wasm SIMD libc optimizations.

https://github.com/WebAssembly/wasi-libc/pull/586

tomek_zemla · 2h ago
I continue iterating on my vocabulary builder for ESL (English as a Second Language) students: https://www.dictionarygames.io.
photon_garden · 5h ago
Making art with code, paired with tiny little free-verse haiku. Released two new pieces yesterday:

https://lucaaurelia.com/

kenrick95 · 4h ago
I submitted my travel planning web application [1] few weeks ago as Show HN [2] and it received tons of feedback and ideas that resonates with me. So I'm still working on it :)

[1] https://ikuyo.kenrick95.org/

[2] https://news.ycombinator.com/item?id=44247029

jerlendds · 7h ago
I'm working on rewriting OSINTBuddy in Rust with Apache Age and Vite+preact ( http://209.46.122.104/docs/overview - sign in/create account will not work yet). You can think of OSINTBuddy as node graphs, OSINT data mining, and plugins, or as an alternative to Maltego. The project was previously written in Python using JanusGraph and the frontend using create-react-app. I still have to wire up all the frontend endpoints and write out a Rust websocket but once that's done I'll more or less be at feature parity with the old Python edition.

The code and a demo video can be found here: https://github.com/osintbuddy/osintbuddy (and on codeberg)

gautamp8 · 2h ago
I'm building Mxtoai.com - email handles backed by ai agents to automate any workflow. Fully open source. Goal is to save time in the inbox.
usercvapp · 2h ago
https://usercv.com - personal website with /now page
retroviber · 2h ago
I am working on https://deepmarketscan.com/

It synthesizes unusual market activity, insider moves, options flow, sentiment, technical and news analysis to deliver specific, actionable trade setups.

This is only good for paper trading, as most of the setups are very counterintuitive. You won't be able to execute them, and if you did try, you would end up losing sleep and your health even when you are correct.

rudasn · 7h ago
Ephemeral, client-side encrypted sharing of files, text, html, and forms.

Just prototyping at the moment, but the goal is to allow users to not only share files (even big ones) but also forms, like Google forms, but encrypted and one time only (read once).

The use case I have in mind is allowing businesses to create GDPR forms (with private info, consent, etc), share unique urls with specific customers, and once the data is received by the business delete it from the server.

This could be useful to businesses that don't have a customer-facing portal, but have to deal with PII and the customer needs to consent and verify the data and what it's used for.

The data is encrypted client side (web crypto) and the password either shared in the url (in the hash fragment, also encrypted by a key stored on the server) or by other means (eg. could be the recipient's dob or id number or some other previously shared or known value).

Still trying to figure out the details, use cases, business value but the core backend is done so is the client-side crypto stuff. I managed to get chunked AES-GCM working so that it doesn't load the whole file in memory in order to encrypt it, it does that in chunks of let's say 2MB. Chrome also has chunked requests (in addition to responses) for sending the file to the server, but would probably need to come up with some other mechanism to get that working on other browsers (like send the chunks in multiple requests and append to a single file on the server, but that adds more complexity so I'm still working it out).

ozim · 6h ago
Don’t want to be too negative.

Hope to point something from experience But.

It never is “one time”, amount of ways people mess up is huge. Even just when you make submit and 5x confirmation there will be once a week a new user that happens to acknowledge 5x they filled in all they needed and know it will not be possible to fill in again but… they really need to fix that one thing they messed up when filling in.

em-bee · 5h ago
absolutely. even when everything goes smoothly, if you send me a one-time thing, i don't know if i am in the right situation to be able to handle this now. i need to be able to take a look and then decide if i want to deal with this now or later. having to make this decision without looking at it first would raise my anxiety level quite a lot, depending on who this is from.
lurkingllama · 8h ago
An iOS app that lets you change the paint color of your rooms and try out new interior design styles (ex: Rustic, Coastal, etc).

I built it because I was blown away with what the latest image generation models can do and found that interior design is one area where it could already provide significant value for people. I’ve already used it in just about every room in my house to help me decide on:

- which paint color I should use

- how I should arrange my furniture

- what color theme I should be using to match the design I’ve gone with

- general inspiration on decor

It’s free to download to try with sample imagery. Unfortunately due to the cost of image generation, you won't be able to upload your own photos in the free version (yet). But I’m constantly improving the app and would really love some feedback.

https://apps.apple.com/us/app/roomai-restyle-your-home/id674...

abcd_f · 7h ago
OpenAI on the back?
lurkingllama · 7h ago
It's built to be plug-and-play with a few different image generation models. gpt-image-1 (OpenAI's API-only image gen model) performs extremely well for certain tasks, but it's not perfect.
MrApathy · 4h ago
jq Jake: An interactive challenge based approach to learning jq for JSON processing. https://jqjake.com

jq is an incredibly powerful tool, but it's not always the easiest tool to use. LLM's are remarkably good at constructing filters for most uses cases, but for people that work with JSON a lot, learning jq can be real benefit.

jarmitage · 7h ago
I started integrating http://ohmjs.org with http://strudel.cc so you can live code your live coding language
dalemhurley · 1h ago
http://strudel.cc is pretty amazing
qudat · 7h ago
We host a static site service where users can manage their sites via ssh (https://pgs.sh). Previously we used minio for object storage but have become frustrated by its perf issues on smaller VMs, don't need the distributed features, and wanted something a little lighter weight. We initially thought Garage could check most of our boxes but very quickly discovered perf issues there as well.

So we decided to build out our own filesystem adapter and recently deployed it. It's pretty exciting to have our own solution that does exactly what we need and appears significantly faster.

It makes us want to open source pgs.sh because it has fewer dependencies in order to deploy.

vhantz · 5h ago
Happy pico.sh user here! So simple to setup and use. I would really love to see this go open source (for whatever reason I thought it was already open source...). In any case, keep up the good work!
khizerh · 2h ago
A faith based private credit marketplace - https://www.ahmana.com
pyromaker · 7h ago
I'm working on Fro (https://fro.app)

Haven't released properly yet - not sure if it's stable but oh well.

I don't like using my personal email to sign up for things. But there are definitely things that I do want to sign up for - newsletters, try out some services.

I know there are temporary email services, but I actually want to use these services. Of course there is Apple email that forwards to your real email.

But, I also don't want to flood my inbox.

Anyway, I wanted to receive these transactional emails in my personal Slack.

So, that's what Fro is for (https://fro.app)

- Sign up - get an email address - link to your Slack channel

And you can now catch up on those newsletters via Slack.

sgallant · 4h ago
AI Scheduling Agent. See 1-min demo: https://www.youtube.com/watch?v=Pu5RQAGOaG4

Would love to know what you think.

Want to test it out? Sign up to the waitlist at https://brice.ai and I'll give you access tomorrow.

qwikhost · 5h ago
I'm working on a n8n copilot assistant. Build, fix & improve workflows fast with AI-powered chat for seamless automation.

Chrome web store link: https://chromewebstore.google.com/detail/n8n-copilot-chat-wi...

jakewil · 2h ago
I'm working on Bayview, my window manager for macOS: https://bayview.app
kolleraa · 7h ago
I'm working on inq - a real ink pen that writes on real paper while simultaneously digitizing everything you write. Specifically working on the software for our mobile and web apps.

Among other things, my team has implemented access-based sharing using web links, like Google Docs for real paper handwriting. And we've just launched Quin, our AI assistant for real paper handwriting. Super useful for getting help with math, language learning, looking up relevant facts, generating ideas, etc.

See https://inq.shop/pages/app

nateb2022 · 7h ago
I don't see any ink refills, when I run out do I have to buy a new $165 pen?
kolleraa · 7h ago
No, the pens take standard D1 refills and are easy to change - they'll be available soon in the shop there.
polishdude20 · 7h ago
How does it work? Some imu / accelerometer sensing?
kolleraa · 7h ago
zahlman · 7h ago
I've been more actively developing PAPER, and expect to push to GitHub and publish wheels on PyPI tomorrow although it's really still not ready for a Show HN. My work there has also led me to developing some side utilities:

* a library for filesystem tree operations (and other trees, if you're clever enough swapping in components)

* a utility to identify and extract wheels from pip's cache (so that they can be dumped into other installers' caches, for example)

I also hope to return to bbbb soon, if only to make sure that it can build PAPER's wheels smoothly (and with a few other basic conveniences implemented).

Oh, and I wrote an article for LWN recently and have plans for a few more....

wonderfuly · 2h ago
abhchand · 3h ago
I've been working on SimpleeFood, a simple self hosted recipe app

https://github.com/abhchand/simplee-food

tonyobanon · 5h ago
I am building an enterprise software marketplace (backed by Microsoft). Interested devs can register here: https://www.kylantis.com/early-bird-developer to get notified when we launch. ps: we are focused on only java developers for the initial roll-out, thanks.
jgord · 5h ago
detecting geometry from point cloud scans of buildings using ML/RL techniques :

flat planes and edges : https://youtu.be/-o58qe8egS4

semi-cylinder pipes : https://youtu.be/8fjHNDGKeu4

Aim to automate that TAM of 5Bn/yr of manual labor, growing at 12% cagr

SOM : ~100Mn

heliographe · 6h ago
Working on indie photography software (iOS/macOS for the time being): https://heliographe.studio

My most recent release is a camera app dedicated to RAW photography, which focuses on being fast & lightweight & technically precise - I wrote the website to be both a user’s manual and a crash course in photography concepts: https://bayercam.app

I’m working on my next app release, which I’m pretty excited about!

ashdev · 3h ago
Built a privacy focused Kanban board app called Brisqi - https://brisqi.com It's offline-first, has one-time payment plans and has a clean, simple design. Check it out!
antilisp · 5h ago
Working on a programming language: https://antilisp.com, a Lisp used for code generation in other languages.

The language is heavily inspired by Python for the dev UX, and the interpreter is written in RPython (what Pypy uses). Rewriting to RPython was tedious, but the 80x speedup was worth it.

ress · 2h ago
https://foldwrap.com - animation editor
spmcl · 6h ago
I recently got a pen plotter. I've been working on making my own implementations of algorithms to convert images to vector graphics for plotting. Things like cross-hatching to fill in dark areas, or spirals or flow fields, etc. I also found out about vpype[1] recently which does some cool things in this area.

[1] https://github.com/abey79/vpype

kristopolous · 4h ago
Quit my job to do DA`/50. It's to make AI coding useful at day50 and beyond. Currently 12 projects https://github.com/day50-dev

Interested in collaboration, feedback, and all other things.

nickincardone · 6h ago
I'm preparing to re-enter the tech job market and have been building a Chrome extension for tracking Catan resources during games on colonist.io. It's been a fun side project (my first time developing a browser extension) and it's involved some interesting probabilistic logic to estimate players' hands after unknown card steals.

https://github.com/nickincardone/catan-counter

msgodel · 3h ago
Quantitative stock and crypto trading, a mindfulness web extension, some really basic hardware projects I'm going to commercialize, I'm thinking about starting a youtube channel.
jacktheturtle · 3h ago
Wanna chat trading?
msgodel · 3h ago
Do you need an ML consultant?
nickandbro · 6h ago
I am working on https://vimgolf.ai , a site where users play vim golf with each other and try to beat a bot powered by O3.

I've been meaning to wrap the project up for a while. Went down a rabbit hole trying to make the vim containers fault tolerant and scalable using kubernetes. But, after a friend told me I could do everything using cloudflare containers, I've been changing my backend to use that instead.

daxfohl · 7h ago
Finally learning TLA+ by plugging a very simplified multithreaded Java simulation of an old project's distributed, (hopefully) eventually-consistent algorithm into LLMs and asking for translations.

I'd previously tried to learn TLA+ a few times but always eventually lost interest and gave up. This approach was quick and easy. Disappointed that TLC can't really exhaustively check more than 8 steps; being O(n!), 9 steps would take months, even after all the symmetry optimizations. Maybe will look at TLAPS next.

dm03514 · 4h ago
Built a stream processing engine using duckdb

https://github.com/turbolytics/sql-flow

It has some interest, unfortunately building tools as a business strategy is rough.

Beginning to work on first actual product! More soon :)

Hezkore · 5h ago
I've been learning how to make server-side mods for my Minecraft server: https://swedenmayhem.se/minecraft/

The goal is to make a Minecraft server that constantly updates itself, giving you "unlimited content", while still retaining any progress you've made so far.

androng · 2h ago
video watcher/unroller with images. I am working on adding feedback buttons, removing annoying LLM bugs, adding analytics and some kind of customer support. https://toolong.link/v?w=d1TpqmQ0I7U&l=en
gabriel-uribe · 5h ago
https://attachedapp.com

Still figuring out how to pitch it, but so far it's 'Duolingo for relationship issues'

We launched this month and are growing fast which is exciting. I'm mostly impressed by how easy React Native has gotten, as a long-time native Apple Platforms dev, given all the training LLMs have on React.

mkw5053 · 6h ago
I’m building an open-source project (with a hosted option) that lets web and mobile devs add LLM-powered features with zero backend code. Current platforms like Vercel still require at least a backend serverless function even for basic LLM integrations. This handles key management, access control, usage tracking, rate limiting, message conversation state, etc so devs can focus on frontend.
ianbicking · 3h ago
Where does stuff like the prompts go? If you put them in the frontend then you have a bit of a security, monitoring/etc concern. If you don't put them in the frontend... then you have a backend. (But maybe a simpler backend for devs to work with.)
nikodunk · 5h ago
An app to train optimism. Daily questions help you think more positively, all answers saved locally in your device. It’s called Daily Optimist. Feedback appreciated!

https://apps.apple.com/us/app/daily-optimist-think-positive/...

CyberMacGyver · 4h ago
I am working on automatically detecting fraudulent (D.P.R.K) candidates resume.

Recently many companies have fallen victims to hiring NK workers and losing millions of dollars. There are few red flags to identity these candidates and avoid becoming a victim.

hiAndrewQuinn · 5h ago
https://finbug.xyz/, free software tools for Finnish language learners continues to be my primary project, in between long bouts of Anki cards. I recently revamped and standardized the CSS a little among the various online tools, and I quite like how they look now.
cornfieldlabs · 4h ago
We are building a private, "healthy" social network for close friends with chronological feed and no doomscrolling or clout-chasing.

https://waitlist-tx.pages.dev

mtejo · 5h ago
I was curious how type checkers work for python, so I started making my own toy one.

Github repo has a link to what I plan to make a series of blog posts I started writing about it

https://github.com/tejom/python-type-check

putna · 4h ago
https://yukiko.ai/ - Generate AI character from image URL - chat with him and create new images for that character. Video and audio on the roadmap.
NoTranslationL · 6h ago
I’m working on Reflect [0], it’s a private self discovery and self experimentation app. You can track metrics, set goals, get alerted to anomalies, view correlations, visualize your data, etc.

[0] https://apps.apple.com/us/app/reflect-track-anything/id64638...

ihodes · 6h ago
Very cool app. Is there a way to periodically import from a Google Sheets spreadsheet? I track a bunch of things there on a daily basis and would love to have those pulled into this application.
ninHendo · 2h ago
https://elecar.app Airbnb for car chargers. Built an MVP, but unsure/afraid of trying to find users to advertise their chargers online.
dicroce · 6h ago
Integrating my time series database (https://github.com/dicroce/nanots) as the underlying storage engine in my video surveillance system, and the performance is glorious. Next up I'm trying to decide between a mobile app or AI... and if AI local or in the cloud?
orsenthil · 7h ago
http://beaver.learntosolveit.com is my task management app. I am using this now, others have started using it, and continuing to build it.

I could create a portfolio page for my various projects - https://projects.learntosolveit.com/

dogtorwoof · 6h ago
Would recommend a demo or screenshot on the landing page to help convince people to actually sign up with their Google account?
orsenthil · 4h ago
There is a video demo of the tool in the landing page. I will add screenshots as well.
nicbou · 7h ago
I'm still working on a German health insurance calculator. It evolved into a very elaborate recommendation tool.

Health insurance is one of the earliest, most important decisions immigrants make, and they often choose wrong. It can delay visa applications, cause coverage issues, or create expensive problems down the road.

Now they click a few buttons and get very specific recommendations explained in plain English. If they're confused, they can involve an independent insurance expert for free. The guy replies within an hour or two, and is cool with Whatsapp. The way I gather feedback from users, he's strongly incentivised to stay honest.

There is no AI involved, just good old-fashioned business logic. It means that the advice is sound, well-tested and verified by multiple competing experts.

It's such a far cry from either trusting whatever reddit or your employer tells you, or the slow back and forth of getting a quote from a (possibly dishonest) broker.

The second version[0] has been live for about a month, and the results are phenomenal. This third version vastly improves the quality of the advice, adding information about gap insurance for visa applicants, and making actual recommendations instead of listing all options.

It's a really fun project, even if the topic is boring. It's a great research, UX, copywriting, coding and business project. It's the product of a few months of hard work, and so far it seems to pay for itself.

[0] https://allaboutberlin.com/guides/german-health-insurance

ChicagoDave · 6h ago
Sharpee: A Typescript based Interactive Fiction platform that uses event sourcing and a post turn text service to emit updates.

Architecture uses Traits (data) and Behaviors (logic) to implement things in the world model.

https://github.com/ChicagoDave/sharpee

raybb · 7h ago
Two things: https://urbanismnow.com a weekly newsletter that pulls together (mostly) positive news from around the world to inspire local change.

The other more recent is a web based CalDAV client for Todo items. I love the tasks.org mobile app and can't stand the Nextcloud Tasks UI so I'm making an alternative that'll be local first and simple but fast.

nicbou · 7h ago
raybb · 6h ago
Fixed it. Thanks!
chidog12 · 8h ago
Working on Lunova — a QuickBooks Online app that you can create custom alerts via SMS/email such as when big deposits land, invoices go overdue, or vendor prices spike. Just cleared Intuit’s tech/security + marketing review (Took over 3 months... after building the MVP) and we’re now live on the QBO App Store. Feedback and feature requests welcome: https://uselunova.com
cpursley · 7h ago
How's it working with the Quickbook API - any tips?
chidog12 · 7h ago
Pretty smooth once you respect the limits: 500 calls/min + 10 concurrent per realm. We run a per-realm token bucket and queue work; If you throttle and batch, you won’t hit 429s, but I talked to a few QB app owners and bigger apps tend to find it restrictive.
dalemhurley · 6h ago
Are you going to go on their new Partner Programme?
chidog12 · 5h ago
I am considering it. It starts at $300/month so it's definitely a stiff payment for what I can afford now.
genghisjahn · 7h ago
I’m working on a service that sends weather alerts via sms. Sign up takes 3 taps from a. SMS enabled device. It’s some what useful, but I still have lots to do. Around 27 users so far.

https://www.mercuryfalling.net

Apologies for US zip codes only and imperial units. I’ll for international postal codes and offer Celsius/metric units soon.

piker · 6h ago
Tritium: https://tritium.legal (web preview: https://tritium.legal/preview)

Tritium is the legal integrated drafting environment: an egui Rust project to bring the IDE to corporate lawyers.

hboon · 6h ago
I'm bootstrapping a [Bluesky analytics, Bluesky+X+Mastodon post scheduling tool called TheBlue.social](https://theblue.social)

But working on it for past 7 months. It's running and I'm tweak/adding features while marketing it.

rozenmd · 8h ago
More or less the same project since Feb 2021: OnlineOrNot (https://onlineornot.com).

Idea is to be the uptime monitoring + status page solution software teams choose. Next big project I'm looking at is making a terraform provider for uptime checks, so setting up alerts for your new microservice becomes seamless.

Still years away from employing me full time, but we're getting there.

lionls · 7h ago
Great project, love your advanced API checking!

Just noticed your website checker might have a bug: https://onlineornot.com/website-down-checker?requestId=Kfd51...

rozenmd · 7h ago
What's the bug you're seeing? rate limited by Google?
bbsimonbb · 7h ago
https://simplyfirst.fr.

We're off and running, making the world's best configurators for complex products. Our first clients love us. Our configurators implement some very personal ideas about front-end state management, and it's really a thrill to see it all working with real products, 3d rendering and zero latency.

bbsimonbb · 7h ago
If anyone's tempted to visit, the home page is in French. Click on "Chiffrer un produit" and you're into the configurator which has English translation (top right). All the magic is on the third screen, after selecting a category and a product. The disposition of options and choices, plus prices for all choices, plus the 3d rendering, plus all the totals, all recalculate in the browser with zero latency, based on previous choices.
ssnola504 · 6h ago
https://resample.app

A simplified DAW for mixing together tracks with different keys and tempos. It uses WebAssembly and emscripten under the hood for audio processing.

It’s a work-in-progress passion project of mine where I get to explore new technologies and hone in on my UX / Web a11y skill set.

chrismsimpson · 7h ago
I’m building a custom vocalist/DSP AI. I’ve never built any kind of neural net beyond a toy demo, but I’ve been programming for ~25 odd years.

Think like ACE Studio, but I’m going much less for pitch performance and much more for clarity, expressiveness and human realism.

Very much at the data labeling phase but a little bit beyond the crude initial experiment phase.

pedalpete · 7h ago
We're enhancing sleep's restorative function through neurostimulation.

Our first devices were delivered to researchers in Feb for their clinical trail (we just provide the tech, it's their study).

We're prepping for pre-sale now as we finalize the last few manufacturing and design details.

https://affectablesleep.com

stackready · 3h ago
I'm working on an AI platform to help mid sized companies figure out how close they are/develop a roadmap to utilize AI for tangible business uses (ie assess how much work is involved for a regional bank to utilize AI for fraud detection).
jaqalopes · 6h ago
Editing my fantasy novel. Made a mindset change recently that helped me get past a months-long block.
dcsan · 7h ago
https://Podskim.com is a way to skim through podcasts like a TikTok sans the brain rot. It also has some fact checking and topic monitoring behind the scenes. Haven't figured out a business model for it yet but has been fun to keep poking it
ejs · 7h ago
I'm working on a tool to make tracking business metrics easy. [0]

I've always had issues collecting business metrics like "signups per day" in observability tools, but using marketing type tools comes with it's own set of problems.

[0] https://flexlogs.com/

chris-oleson · 5h ago
I’m almost done with my financial tracking application VuFi; I spent too much time logging into all of my financial applications every month to keep track of my money, so I built VuFi to automate the process.
jessehorne · 6h ago
A LLM-usage observability/monitoring tool (submitted to YC F25) and random game projects. One game I'm building is a tiny IO game inspired by moomoo.io but on Luna (our moon). Once that's done I'm thinking of making something with trains.
codruterdei · 7h ago
Adding descriptions my library of images on my NAS so it can be searchable like google photos and iCloud. Had fun with go and the code is as short as it gets.

https://github.com/erdeicodrut/Photo_tagger

ChrisMarshallNY · 7h ago
I'm working on getting all my supported iOS/MacOS/WatchOS/TVOS apps ready for Version 26 (Liquid Glass).

It introduces quite a few changes. In my shipping apps, I'll probably be simply telling the OS not to use Liquid Glass (for now), but for my various test harni, I will need to adapt. Looks like a fair bit of work.

sixpackpg · 5h ago
Creating my first static site with the goal of learning to code and to write more. Currently learning how to use AI in a constructive tutoring way, rather than give a fish way.
zelphirkalt · 6h ago
Completely statically rendered web app vocabulary trainer. Probably just for myself or maybe a few friends. Or for anyone who wants to run it on their server or local machine. I am using Django and Jinja2 for it.
vhantz · 5h ago
Posted it anywhere?
ks2048 · 7h ago
https://6k.ai/ (only a landing page for now)

Working on AI/NLP stuff in low-resource languages. Working on some research ideas (hope to publish) and well as some practical tools for learning languages.

dalemhurley · 6h ago
Great URL.
ericvtheg · 5h ago
MAKID, Ableton Live project manager for music producers http://makidapp.com/
robotswantdata · 7h ago
New “AI in a box” product, can run the big models I.e. DeepSeek-R1-0528 etc. comparatively cheap, fast and just works. Our build partner is big on sustainability, considering a return to upgrade option.

Likely will do a prosumer SKU, will be faster and cheaper than the Mac Studio equivalent.

tmilard · 6h ago
Still working an an immersive tour maker. A visit example : https://free-visit.net/fr/demo01
gwbrooks · 8h ago
Using Google's GDELT to analyze velocity and sentiment around public-policy/political news. Objectives: develop a taxonomy of news-event types and their behavior; use that taxonomy to test faster/better time to market with responses; ultimately determine which scenarios, if any, can be predicted.
dameyawn · 2h ago
Building an RPG-like skill tree but for real life.
cbartlett · 7h ago
Just like another poster, I'm also building a website of daily puzzles, finally at the point where it's mostly finished and I'm not completely ashamed of it - https://dailyplay.club
hypertexthero · 6h ago
Recording my first EP!

1st published song, Piano Place Hold in Am: https://www.youtube.com/watch?v=EUOhb-wHdFQ

GodelNumbering · 5h ago
Building an ETF platform that extracts deep contextual info from the prospectus/SAI of all of the ~4500 American ETFs and populates an insightful taxonomy.
growbell_social · 4h ago
Do you have a link? Is it www.signalbloom.ai from your profile?
GodelNumbering · 4h ago
It is currently being built very actively, nearing completion. Once ready, I plan to launch it there yeah The current tests look quite promising in terms of both depth and accuracy
haron · 6h ago
I work on Telegram bot, that helps you learn languages using parallel reading method: https://t.me/parallel_reading_bot
growbell_social · 7h ago
AI assisted algorithmic backtesting & trading. https://www.growbell.com. You describe your strategy in plain language and we'll do the rest. Pretty charts included.
felixding · 5h ago
http://storedetect.com

The free Shopify directory (240k stores and 580m products at the moment).

vinibrito · 5h ago
I'm working on a nocode web app creator tool: https://tupanglobal.com

Building it in public.

carraes · 3h ago
Built an AI podcast that reads HN for me. It's funny hearing an AI get excited about tech news. You can totally tell it's AI, but honestly that's part of the charm.

Runs a cron daily, no manual work needed. Had fun building this.

https://pappo.carraes.dev/

stanac · 7h ago
Still working on sudoku variants app (posted show hn 5 months ago), reworking solving algorithms for better hints and difficulty categorization.

https://sudokuvariants.com/

c0nrad · 7h ago
Base health counter for Star Wars Unlimited https://blog.c0nrad.io/posts/swu-health-counter/
asdev · 8h ago
anttiharju · 7h ago
Curious about whether you're aware of https://www.aitofit.io/en and how your app compares to it
asdev · 7h ago
this looks a little different to mine, mine primarily uses a chat interface
jeddie · 6h ago
A UI to start conversations and debates between LLMs, from a user-supplied prompt: https://modelmash.ai.
teruza · 7h ago
Just launched the full history of South African Arbitrage using beautiful graphs for anyone to explore here: https://www.zarbitrage.co.za
Agilesuitcase · 7h ago
Pomodoro technique with a quick shared break online minigame.

It runs a 25-minute focus timer, then launches a 3-minute round of a multiplayer minigame (right now just multiplayer Minesweeper), followed by a 2-minute cooldown with a chatbox

A couple friends and I do this manually, we work on side projects, mute ourselves on Discord, and play random games during the break. This just puts it all in one place.

Only Minesweeper for now, but planning to add a voting screen and a few more simple multiplayer games.

https://studytomato.com

deedubaya · 4h ago
A multi-node, multi-processes, queue based rspec test runner with a dx that doesn’t suck. Open source.
lukasb · 6h ago
Daily journaling + task management with native apps, sync, and fun composable semantic Excel-like formulas. Email in profile if you're interested.
elpalek · 4h ago
AI Anime Recommendation Engine

https://oshianime.com

felixding · 5h ago
http://kintoun.ai

Document translator that keeps layout and formatting

chaosharmonic · 9h ago
I actually just shared a Show HN post about mine before finding this...

I recently shipped a first-draft UI demo that you can play around with for my self-hosted jobs tracker:

https://escape-rope.bhmt.dev

mmarian · 9h ago
~~Unless I'm missing something, that doesn't look like a jobs tracker.~~ Wait, I get it now, this isn't job applications, it's jobs available out there.
999900000999 · 7h ago
Got Phonex.new to finally build a working prototype of my open source MTG style card game.

Gonna wait until the LLM credits refresh next month to continue, but I'm very happy so far.

Elixir has been cool.

tehlike · 6h ago
On and off working on my homelab, and also https://pricetracker.wtf
rkj93 · 7h ago
making small releases for new styles and tools at https://vizbull.com Photo to Portrait converter

In few weeks releasing Chrome Extension for Youtube Transcript and Summary dashboard at https://www.infocaptor.com

Doing some minor fixes for https://wireframes.org - MockupTiger AI Wireframing

jobswithgptcom · 6h ago
Working on https://jobswithgpt.com and improving coverage day by day.
tasoeur · 8h ago
Last year I quickly built then released an experimental mixed reality horror game for Apple VisionPro: https://pulsargeist.com. It was a lot of fun and people actually liked the early prototypes of it. The game ended up completely tanking on VisionPro. Most people are on Meta Quest anyway so I'm now trying to re-implement the whole thing with Godot for Quest.

It's been a lot of fun but Meta HorizonOS (or whatever) is such a poorer dev experience... Anyway I'm now trying to rebuild the live environment mesh reconstruction feature that doesn't exist while encountering first limitations with Godot... Hopefully it will be ready in a couple months!

If this whole thing got you curious you can watch a technical talk I made about this game at the Letsvision conference in Shanghai, CN. https://www.youtube.com/watch?v=CYFH2hiRNqk

...and if social media doesn't somehow destroy your soul, you can follow me here: https://x.com/sxpstudio

mkagenius · 7h ago
Letting AI code run wild on mac - via CodeRunner

1. https://github.com/BandarLabs/coderunner

arminiusreturns · 1h ago
Look, I know it's crazy.

My own action MMORPG (think Mordhau meets Cyberpunk meets Arma 3). It's the perfect application of everything I already know as a platform engineer, and I get to learn all the things I don't. I'm making the client foss, the assets foss, and the gameplay compelling as all getout. Non-sharded, persistent world, with different lands for different real world regions. It's a type of metaverse in truth, but some of that part I have to flesh out better on the local client side where you can do whatever, but on the server there is a storyline.

I almost applied to YC because I'm at the stage I'm close to public alpha and need funding, but instead I'm planning on crowdfunding, but the release strategy has to be tops. I'm also doing things like planning on how to scale the business itself, lots of work on the over time growth profit model, etc. So basically, instead of a thousand side projects, I have one giant project where I get to do everything with my own theorycrafting - after years of being stuck doing whatever the boards/c-suite needs, it's a taste freedom and a dream.

Been working on it since 2013...

richarlidad · 7h ago
https://inspectsupplement.com/

clinical summaries of dietary supplements

ridgeguy · 5h ago
I'm working on making diamond single crystal rods as long as you like. For lasers and the like.
cellular · 1h ago
Wow! More info please! That sounds cool!
ajmurmann · 7h ago
An app that allows you import text in a foreign language you are learning and then click on sentences or words to get a translation and generate flashcards from them.
ParanoidShroom · 7h ago
A reverse image search to detect dirty xtc pills. https://pillscanner.app/
KomoD · 6h ago
The obvious solution to this problem is just not taking random pills.

Also I don't see how this solves anything, just because a pill "looks" like another doesn't mean it is that, it could still be anything.

nandomrumber · 5h ago
Chances are if it looks the same and has other matching properties like press qualities (edge sharpness, density, etc), taste, smell, waxiness, and you’re in the same general location, and around the same time, it’s probably the same batch of pills.

Knock-offs tend to turn up later, be of inferior quality physically, and have worse reviews online and in the clubs / social circles.

ParanoidShroom · 5h ago
It's harm reduction. Obvious? That's not how the real world works I'm afraid. Where did I claim this "solved" the problem?
keizo · 4h ago
last six months has been turning my notes app into cursor for notes... https://grugnotes.com
justrudd · 4h ago
I’m helping my dad build a dock and a walking path for his new lake.
franze · 7h ago
Installed Claude Code in Sudo and Yolo Moder on my old laptop and told it to get self aware

it now takes every other minute a webcam pic of me to see whats going on

jedberg · 7h ago
Just watch out when it starts singing Daisy.
spacecadet · 7h ago
Love this.
burgerquizz · 7h ago
built my own game engine with threejs, and now at a point where we can game via a config file and edit game with an editor.

Now I am focusing on trying to get brands / businesses to create games on https://playcraft.fun for their marketing campaigns or events

if you want are interested, feel free to ping me!

kurrupttt · 7h ago
I'm building an app for students :) help them learn by using ai to generate flashcards, quizzes, materials etc.
lcmchris · 7h ago
Fontweaver.com - AI for font generation.
vax425 · 8h ago
I'm building an automatic tide prediction clock that doesn't need an internet connection.
8note · 2h ago
im trying to get enough context into an llm to autogenerate scaffolding for our intern to fill out the right details.

coming up with intern projects is roght difficult nowadays

iamwil · 8h ago
An LLM driven app that helps you make buying decisions, like for coffee grinders, dishwashers, and monitors.
dirwiz · 7h ago
A mail/spam filter to flag emails whose sender's domain is less than a year old.
shakabrah · 6h ago
Depressing to see so many clearly vibe coded projects here.
growbell_social · 3h ago
Exciting to see so many clearly vibe coded projects here.
dookahku · 8h ago
A drone framework for managing different HW resources, similar to an operating system
0xbadcafebee · 5h ago
A slide-in truck camper. It's been nearly a year and I still don't have the floor done. Truly an epic lesson in perfectionism, yak shaving, and saving time by starting with the right materials and design. I've learned a ton, but mostly in things I'll never use again. Eh, I shouldn't say that... the amount I've learned about solar power alone I'll probably use in the future to lower electric bills. But nobody really needs to know how to select weather-resistant non-foaming polystyrene-and-polycarbonate-compatible structural adhesives from an SDS, or how to build your own triple-glazed pressure-relief windows, or how to find plywood that doesn't suck. If I knew how taxing and time-consuming this project would be, I would've bought a used camper (and a bigger truck..)
busymom0 · 3h ago
I had been working on a macOS app last couple weeks. Got it approved by Apple today YAY!

It's called Heap. It's a macOS app for creating full-page local offline archives of webpages in various formats with a single click.

Creates image screenshot, pdf, markdown, html, and webarchive.

It can also be configured to archive videos, zip files etc using AppleScript. It can do things like run JavaScript on the website before archiving, signing in with user accounts before archiving, and running an Apple Shortcut post archiving.

I feel like people who are into data hoarding and self host would find this very helpful. If anyone wants to try it out:

https://apps.apple.com/ca/app/heap-website-full-page-image/i...

reaperducer · 7h ago
On a whim, I bought a pack of playing cards at the supermarket. Now I'm learning how to play card games.

The card maker has its own web site with the rules for playing all kinds of card games, and it's filterable by number of players, including many games for one person.

mabil · 5h ago
What's the name of the game?
mauvehaus · 7h ago
Our staining our log home project has evolved into a replacing some logs project after demolishing the sketchy balcony that came with the house and discovering a bunch of rot.

Frankly, I'm astonished that it hadn't collapsed out from under me when I was shoveling snow off of it this past winter. Behind the ledger that tied the balcony to the house was a mess of pressure treated lumber scabbed into a cavity in the logs formed by rot, none of it well-fastened or fastened into truly sound wood.

bravesoul2 · 7h ago
Not sure yet but I want to build some Atlassian Forge apps.
coffeecoders · 5h ago
I've been working on semantic search for Mac for the last few weeks.

It's called SmartSearch - uses SentenceTransformers for embeddings and FAISS for fast similarity search. Best of all, it runs locally on your computer.

Why? I absolutely despise Mac's search. I want to be able to search within documents, images, pdf etc.

Github: https://github.com/neberej/smart-search/

Demo: https://github.com/user-attachments/assets/aed054e0-a91f-459...

Cypher · 7h ago
quitting my job :( 17 years and new management has been a disaster never to resolve... sad times
90s_dev · 3h ago
I am making a few programs that takes everything I've learned from the 6 months writing 90s.dev and turns them into useful applications. One of them I'm going to release within a few weeks, it aims to be a modern dos+qbasic experience. Another one aims to modernize the experience of having a new computer that does almost nothing and you have to program it in assembly to get it to do stuff, except it'll use wasm (see my Ask HN post for details) with wamr+llvm for near-native performance and SDL3 for full GPU capabilities, and it's called hram.dev (H-RAM = hand-rolled assembly machine). That one needs a little more time to bake, so I have to release the qbasic+dos thing first to keep the lights on. Still thinking of a name...
johnwheeler · 3h ago
HTTPS://screenrecorder.me
prmph · 6h ago
Since I had so much trouble managing my entire digital information universe [1], I decided to scratch my itch and solve it for myself and maybe others as well. Here are my ideas about my product:

- Manages the entire range of personal (and maybe business) information/content: Documents, Media, Messages (email, instant, etc.), Contacts, Bookmarks, Calendar, etc.

- Tag based, so that the question of where to put and find content is quite a bit easier to answer. Think of a set of flat folders, on one or more devices, within which the files are stored with tags attached. However, there will be some improvements on the usual implementation of tag-based systems out in the wild. Since people find navigating/browsing files more natural than searching, virtual folders will be dynamically generated to provide guided navigation. Also, entire folders can also be treated as atomic and tagged/managed as one object, useful for repositories and projects. And, heuristics (and maybe AI) will be used to automatically tag files when they are imported into the tool, greatly reducing the tedium of adding tags the first time.

- Is file based, so that all information is ultimately physically stored as individual files. This allows information to be more easily managed on a physical level: moved around, backed up, exported/imported, searched, navigated, etc. without the restrictions imposed by the opaque islands of information we have now. So in addition to docs, each email/instant message, contact, scheduled task/event, bookmark, etc. would ultimately be stored as a file, unlocking all the things you can do with files.

- Has a local web-based UI launched from a local agent, so actual file content does not usually need to move across the network and stays local, and the tool is also easily multi-platform, with consistent UI irrespective of platform.

- Provides a cloud web UI as well, that communicates with content devices through the local agent, so that content stored across multiple devices can be managed in one central location, even without direct access to those devices, team/org features can be provided. However, file content still stays local, except when shared.

- Provides tools for exporting data as file from the data islands of various apps and service, and backing up as files to cloud storage services.

My vision is a situation where I am in charge of my own data irrespective of whatever device, app, or service I use, can ensure that it is always available and will not be lost, and that I can easily navigate and search through it all to find whatever I want, no matter how scattered and massive it is.

I welcome your thoughts. What would make this work for you? Would you mostly prefer a cloud UI or a local UI? Are there any technical or market gotchas I should be aware of?

[1] Here are some of my issues with personal information management affordances of current tech, which is driving me to work on a solution:

- Our data is too bound to device and vendor islands. Can't easily move my information across Apple/Google/Whatsapp, etc accounts. Can't easily merge and de-duplicate either. I almost always somehow lose data whenever I have to move to a new phone, etc.

- Hard to own your data on many services: Discord, Slack, etc. Can't easily export, search

- Hard to have a 360 overview and handle on all your data assets and query them in consistent manner

- Files as a unit of information storage and management is very ergonomic; we shouldn't allow that concept to be buried by vendors for their own gain.

daniellionel · 7h ago
An application that helps non-native english speakers work on their accent.
wellpast · 5h ago
https://xelly.games

Scrollable social network where the user generated content is microgames.

spacecadet · 6h ago
A super hacky, OAI Codex/Cursor built dungeon master in your console. Started as "can I build this while riding in the car using codex?" to maybe taking it a little too far. I was happily surprised by the quality of the Wayfarer model.

https://github.com/derekburgess/dungen

risyachka · 7h ago
Open source Apple’s hide my email alternative

https://github.com/webmonch/hide-my-mail-cloudflare

JetSetIlly · 8h ago
An Atari 7800 emulator. The world needs another 7800 emulator I think.
trentnix · 7h ago
One that compiles to WASM would be nice.
gametorch · 7h ago
oulipo · 7h ago
We're building a repairable e-bike battery at https://gouach.com :)
dheera · 7h ago
I took a break from a toxic big tech job.

I spent a couple months travelling.

Then I spent a couple months trying to use transformer-based models of sorts to detect short-lived inefficiencies in the stock market to try to create a passive income trading bot. I know short-term quant trading is super hard to be profitable, but Rentech did it, so I figured I'd throw a couple months at it.

Then I spent another couple months on AI for science, robotic lab automation, and trying to get AI to do AI research inside a Docker container.

ranger_danger · 8h ago
Nothing because I'm terrible at coming up with useful ideas for something to code.

I'd like to volunteer for a software project but I struggle to find good ways of locating a project that interests me.

em-bee · 5h ago
pretty much every project out there could use some help.

to find ideas, start with the software you are using. is there any that you like using a lot where you feel that something could be improved? you can also look at websites that you are using, see if any of them are volunteer based.

if that doesn't lead to anything, look at your skills, or skills you'd like to learn. then look for projects based on that.

and finally just browse issues of various projects, search for "help wanted" or "good first issue" or similar and simply try out fixing one such issue, then see if you like working with that project.

there also was an hn thread similar to this one some time ago where people posted projects that they need help with: https://news.ycombinator.com/item?id=42157556

i also have a project that i could use some help with, but the learning curve is a bit high (or rather the setup work you need to do to before you can start coding): https://news.ycombinator.com/item?id=42159045

dalemhurley · 6h ago
Not sure if this will help you https://full.cx/daily-drops
fullstackchris · 7h ago
still hacking away at codevideo - basically event sourcing for the IDE https://codevideo.io

its good enough for me that ive started using it for my MCP masterclass videos / code export / transcript https://mcpmasterclass.com

delusional · 8h ago
A standalone BitTorrent DHT client https://github.com/delusionallogic/dht

It's pretty simple so far. I'm focused ok getting the basics right and robust, such that I can start playing around without disrupting the real network. I don't have any specific goals, I'm just sort of messing about.

One question that dropped into my lap today was who just announced 2k new Infohashes over the span of 10 minutes. That'll keep me busy for a while.

Simon_Sarasova · 6h ago
Seekia.net: A genetics-aware mate discovery network.

An open source, decentralized genetic dating app which aims to facilitate eugenic breeding and bring genetic order to humanity's breeding patterns.

Users can learn about monogenic disease probabilities, polygenic disease risk scores, trait probabilities, and ancestry of their prospective mates and offspring.

Polygenic attribute prediction is very inaccurate right now, I'm currently working on some improvements which should increase prediction accuracy. One planned feature is a relatedness detector to prevent accidental inbreeding.

Git Repo: https://git.digitalprivacy.diy/sarasova/seekia