I am about to begin a PhD in astronomy. Until last month I was working at Caltech for 3 years on code which calculates orbits of asteroids to high precision. This code is being used on several NASA telescopes now to predict when they will image known asteroids (NEO Surveyor, SphereX, maybe Roman eventually). I was allowed to open source it and I am planning on making it the basis of my PhD research: https://github.co…
Ever thought of making a presentation about this subject and putting it on YouTube? :-) It sounds really impressive.
Ask HN: What are you working on? (April 2025)
571–580 of 1001 posts
Re: Ask HN: What are you working on? (April 2025)
#572OkNext! ( https://oknext.io ) - a task manager for solopreneurs and small teams. I'd love for you to try it out! It is browser based only for now and pretty basic. I'm adding features sparingly as needed but my next task is to add some documentation for brand new users and making what it can already do more obvious.
Re: Ask HN: What are you working on? (April 2025)
#573Premium tooling to work with JSON Schema ( https://www.sourcemeta.com ). I'm a member of the JSON Schema Technical Steering Committee, and been making a living consulting with companies making use of JSON Schema at large. Think data domains in the fintech industry, big OpenAPI specs, API Governance programs, etc. The tooling to support all of these use cases was terrible (non-compliant, half-baked, lack of advanced f…
Re: Ask HN: What are you working on? (April 2025)
#574The first ever SQL debugger – runs & visualizes your query step-by-step, every clause, condition, expression, incl. GROUP BY, aggregates / windows, DISTINCT (ON), subqueries (even correlated ones!), CTEs, you name it. You can search for full or partial rows and see the whole query lineage – which intermediate rows from which CTEs/subqueries contributed to the result you're searching for. Entirely offline & no usage o…
Cool! We're dealing with many complex CTEs and costly queries. Would be useful to have those visualized one by one.
Re: Ask HN: What are you working on? (April 2025)
#575I've only built it for Minneapolis and Chicago for now.
Re: Ask HN: What are you working on? (April 2025)
#576Re: Ask HN: What are you working on? (April 2025)
#577A tree cutting tool. Take photos of the tree from 6 different angles, feed into a 3D model generator, erode the model and generate a 3D graph representation of the tree. The tool suggests which cuts to make and where, given a restricted fall path (e.g. constrained by a neighbors yard on one side). I create the fallen branches in their final state along the fall plane, and create individual correction vectors mapping…
How does the graph representation help you solve the problem?
This became convoluted and I just opted for a far easier method of solving vector intersections.
Its also not perfect since I haven't factored in rotation origin very well, and I'm now pursuing a far simpler physics-based approach
Re: Ask HN: What are you working on? (April 2025)
#578input a relevant url, it will decide if it IMDB or Youtube or a list. using an llm, it will attempt to extract the movies or series from the list and find the relevant IMDB link.
Then I have a masonry view of movies & series I have and have not watched, sortable by tags that I can rate and add notes to.
Re: Ask HN: What are you working on? (April 2025)
#579Learning Rust by building a simple database using it. I’ve done my share of programming languages (PHP, C++, Python, Ruby, Haskell) and for the last 10 years I’ve been working in OCaml (which I love so much ) but Rust would be a nice addition IMO. And I never implemented LSM style database before! So that’s fun. I only just started and the pace will be slow (I have 3h/week to spend on it on a good week), if you are c…
LSM style should be an interesting path, especially when it comes to optimization.