Ask HN: What are you working on? (February 2025)
491–500 of 922 posts
Re: Ask HN: What are you working on? (February 2025)
#492This is first attempt, working on another now: https://www.instagram.com/p/DGdORIKNQ5w/
Re: Ask HN: What are you working on? (February 2025)
#493I'm creating an infinite canvas that has all your organization's code and documentation on it. If you zoom in, you can see the code, if you zoom out you see the big picture. By giving everything a place on the map, it becomes easier to figure out your way through the landscape and understand the systems. Different modes can you show you different things: code age, authorship (bus-factor, is the person still with the…
I like the rough idea of C4 but I'm clueless why mural and co doesn't do a better job for infinity boards with boards in boards.
Re: Ask HN: What are you working on? (February 2025)
#494Very cliched, but I am working on my own Lisp dialect. I want a more streamlined syntax and keywords, but keep the "batteries included" idea from CL. So, Scheme/Clojure syntax with a CL live image approach, including condition systems, and a fleshed out standard library. Initially was aiming to use MLIR or at least LLVM but will probably try to handroll to a) reduce dependencies and b) as a learning experience. The b…
Re: Ask HN: What are you working on? (February 2025)
#495It's similar to Hacker Newsletter where I pick the most important news, features, reviews, etc of the week and send that every Friday. The gaming world has a lot of stuff going on and I always found that there was a missing newsletter to curate the important stuff from all the noise.
The challenge at the moment is growing it, I've been doing it for 5 years now and still haven't found a way to increase the number of subscribers, they come mostly from newsletter directories and referrals I would guess.
Re: Ask HN: What are you working on? (February 2025)
#496When I'm starting a new hardware design, I find myself pulling up familiar boards (like Adafruit or Sparkfun's dev boards) as often as the chip's application note. I sometimes prefer a full reference project so I can get useful context like which voltage regulator they used or how the USB port is connected.
But, it's kind of an awkward process because I'll have to download the design files from Github and open it in the native CAD software (Eagle, for example).
I've been toying with how to solve this. I made a script to crawl Github for open hardware designs, then generate a schematic and interactive BOM for each design. Now, hopefully, you can search for "ESP32"[1] or "WiFi"[2] or "Bluetooth"[3] and get a number of designs to view in browser.
[1] https://www.openappnote.dev/tags/esp32/1 [2] https://www.openappnote.dev/tags/wifi/1 [3] https://www.openappnote.dev/tags/bluetooth/1
Re: Ask HN: What are you working on? (February 2025)
#497Working on a new Java logging tool. I'm basically yak shaving, really. Was unhappy with the existing solutions for a new project I'm working on. Depending on how it goes and how the customer feels about it, I'll try to open source it.