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
Ask HN: What Are You Working On? (June 2025)
381–390 of 1001 posts
Re: Ask HN: What Are You Working On? (June 2025)
#382I'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 wor…
Re: Ask HN: What Are You Working On? (June 2025)
#383Peekly 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!
Re: Ask HN: What Are You Working On? (June 2025)
#384Re: Ask HN: What Are You Working On? (June 2025)
#385Re: Ask HN: What Are You Working On? (June 2025)
#386Re: Ask HN: What Are You Working On? (June 2025)
#387- format BigQuery SQL queries better (in my opinion). Support configurations for: maximum line length, standardize casing for SQL keywords and builtin functions (upper or lowercase). BigQuery UI does support formatting but the output doesn't look as "eye-catching" as I want.
- auto converting between standard SQL syntax and pipe syntax in BigQuery. Most queries work but some are not supported (for now - only case I see not supported as query that involves star expression in a group by since it requires the knowledge the underlying column of the table to work - though I haven't seen anyone writing this kind of group by query yet during my work)
- bring all the nested CTE to the outer of the query. this will be helpful such as BigQuery doesn't allow nested CTEs inside a recursive query. (recursive CTE will be handy if you have a CTE that is referenced multiple times - in such case, you can use recursive CTE to materialize that CTE so it is calculated once)
All this is done with the help of ZetaSQL library. I've done the code but have not yet have time to create a simple UI for it yet :)
Re: Ask HN: What Are You Working On? (June 2025)
#388I'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…
Re: Ask HN: What Are You Working On? (June 2025)
#389Re: Ask HN: What Are You Working On? (June 2025)
#390It's a simple (currently macOS) application which aims to target shoulder surfing by using a locally running neural network to detect those looking at your screen.