Live data from Hacker News

Ask HN: What are you working on? (January 2026)

news.ycombinator.com

251–260 of 914 posts

Re: Ask HN: What are you working on? (January 2026)

#252
post #188

Working on finally releasing the programming language I’ve been working on for quite a while. I’m setting up the basic site, which is not a huge deal, but I’ve been inspired by more recent language designers having a streaming presence, so I am working through test runs of streaming my development. I hope to start with demos of the basic language features and then move on to streaming both a reimplementation of my co…

> A low level concurrent and parallel ‘functional’ language I'm not particularly familiar with array based languages, but are you inspired by them at all? Seems like a similar concept. What're your goals for the language? It would be cool to see a parallel execution model unify SIMD, multithreading and gpu. I bet people with a lot of money would be interested if you could apply it to ML

Not particularly inspired by the array languages in general. I do like the idea of a specifics DSL or library that is built from the ground up for ‘vector’ operations (Futhark would certainly be an inspiration here). I do think an (syntax divergences aside) implementation of what is essentially CUDA-like language/library is very possible.

I don’t really have any lofty goals, the language exists to let me have my personal ideal programming language. One of the things I would like to see adopted, by any language, is that the language is able to encode and present provable guarantees about code. So, memory safety, freedom from UB, lack of overflow (integer or stack) is provable in some subset of the language and the proof is done in a logically consistent, verifiable manner.

Of course most of those proofs are not anywhere near feasible for general case code, but the language can restrict allowable constructs in a computation, function, process, or module to a set that makes the desired properties provable by construction.

The language should be capable of unifying and abstracting over SIMD (or other hardware implementations), GPUs, and OS or Userspace multithreading at levels of abstraction from assembly to Haskell or other high level languages.

Re: Ask HN: What are you working on? (January 2026)

#253
I'm working on The Influencer AI(www.theinfluencer.ai), a platform that lets you create realistic and consistent AI personas('ai influencers') to use on social media or as your brand ambassador. You can use this unique AI person in photos and talking videos, for use cases like talking about your product, creating a high quality Instagram persona, photos for your e-commerce site, etc.

Re: Ask HN: What are you working on? (January 2026)

#254
ScreenRecord.in: https://screenrecord.in I have worked remotely for most of my career and have found screen recording a useful tool to share ideas or ask questions. I liked the UX of Loom but always wondered if one could do it without installing any app. Turns out you can! Given today's browsers especially on desktops one can do a lot of things. ScreenRecord.in can record screen, webcam, mic and system audio if the browser supports them. Chrome has the best compatibility. All recording are stored in local storage I am figuring out what features to add.

Re: Ask HN: What are you working on? (January 2026)

#256
I'm working on a continuous chain-of-thought reasoning architecture for generative AI models.

It is similar to Meta's COCONUT. However, instead of the training forward and backwards passes of the reasoning tokens being done serially (slow), they are done in parallel (fast). At inference the reasoning tokens are still decoded serially. The trick is that even though training was done in parallel, the reasoning tokens are still causal and you still get the benefits of increased computational circuit depth.

The kicker is that the architecture is modality agnostic (it doesn't rely on language for its chains of thought), and I want to use it to bring COT reasoning to protein and anti-body generation. Basically, I hope for it to be the OpenAI o1 or DeepSeek R1 for domain-specialized scientific AI.

Re: Ask HN: What are you working on? (January 2026)

#257
Spent about 2 years improving printing and scanning stack of Linux: CUPS, SANE, AirSane, as well as some legacy drivers, and also x86 proprietary driver emulation on ARM with Box86.

Even that "modern" printing stack in Linux is 20+ years old, there's still such an unbelievable amount of basic bugs and low-hanging-fruit optimizations, that it's kinda sad.

Not to mention that it still maintains ALL its legacy compatibility, as in supporting ≈5 different driver architectures, 4 user-selectable rasterizers (each with its own bugs and quirks).

The whole printing stack is supported by 4 people, 2 of whom are doing that since the inception of CUPS in 1999. Scanning is maintained by a single person.

Ubuntu 26.04 LTS is expected to be the last version with CUPS v2. CUPS v3 drops current printer driver architecture and introduces proper modern driverless printing with the wrapper for older drivers. Many open-source drivers are already use this wrapper, but expect a huge disarrangement from the users, as none of the proprietary drivers would work out of the box anymore.

Do you care about printing? Want to improve printing & scanning stack? Contact OpenPrinting! https://github.com/OpenPrinting/

Re: Ask HN: What are you working on? (January 2026)

#259
I'm working on a complex garden planner to keep track of gardens, orchards, and landscaping projects. Meant for very large and very small scales. Public alpha at the end of this month, I hope.

You can see what it looks like right now here: https://x.com/simonsarris/status/2010359423806615907

It is based on a garden designer I made for myself to keep track of my rose garden (I have over 100 roses) and orchard (I have about 15 trees): https://garden.simonsarris.com/

However, my version was very specific to my needs, so this general version requires a lot more work to get it usable for a lot of people.

Post reply on HN