I wanted something more useful to carry than typical gooey lips balm full of petroleum and silicone.
Ask HN: What are you working on? (January 2026)
251–260 of 914 posts
Re: Ask HN: What are you working on? (January 2026)
#252Working 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
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)
#253Re: Ask HN: What are you working on? (January 2026)
#254Re: Ask HN: What are you working on? (January 2026)
#255Currently it's fully-conformant to v2.0 of the spec, while I'm working towards implementing the recently released 3.0 version.
Re: Ask HN: What are you working on? (January 2026)
#256It 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)
#257Even 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)
#258Re: Ask HN: What are you working on? (January 2026)
#259You 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.