<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Hacker News: aadyachinubhai</title><link>https://news.ycombinator.com/user?id=aadyachinubhai</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Wed, 09 Sep 2026 13:07:09 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=aadyachinubhai" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by aadyachinubhai in "Tracing np.add, all the way down"]]></title><description><![CDATA[
<p>The `.c.src` files with the @arch@ like dispatching logic is specific to numpy. Also, they are currently making efforst to shift to C++ templates using Google's Highway project. I worked on porting `np.negative` to it!</p>
]]></description><pubDate>Wed, 09 Sep 2026 07:23:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=49622568</link><dc:creator>aadyachinubhai</dc:creator><comments>https://news.ycombinator.com/item?id=49622568</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49622568</guid></item><item><title><![CDATA[New comment by aadyachinubhai in "The Navier–Stokes Millennium Prize Problem"]]></title><description><![CDATA[
<p>LLMs can't contribute good code to some of the good OSS math libraries, How is it even solving these problems?</p>
]]></description><pubDate>Wed, 09 Sep 2026 06:37:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=49622107</link><dc:creator>aadyachinubhai</dc:creator><comments>https://news.ycombinator.com/item?id=49622107</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49622107</guid></item><item><title><![CDATA[New comment by aadyachinubhai in "Show HN: n8n like workflows for AI agents that control a real VM"]]></title><description><![CDATA[
<p>Each node in the graph is a plain English instruction. An AI agent executes them in order inside a Docker container with a full browser and desktop. Because each node is independent, the agent stays on task, it doesn't drift or hallucinate its way through a free-form prompt.<p>No programming required to build workflows. If you can describe a step, you can add a node.<p>I personally use it for:<p>- Applying to jobs automatically using my saved credentials, exactly the way I would do it manually<p>- Scraping websites and running data analysis on the results in the same workflow<p>- Checking my university LMS on a schedule for pending assignments<p>A few technical details:<p>- Nodes: Navigate, Do, Read, Fill, Check, Code, ForEach, Bootstrap<p>- Any LLM via LiteLLM: Gemini, GPT-4o, Claude, Ollama, OpenRouter<p>- Watch it work over noVNC, pause and take control, hand back anytime<p>- Chrome sessions persist across restarts via a named Docker volume<p>- Webhook + cron triggers, secrets vault, human-in-the-loop confirmation per step<p>GitHub: github.com/aadya940/orbit-ui<p>Docs: orbit-cua.com</p>
]]></description><pubDate>Mon, 11 May 2026 23:44:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=48102293</link><dc:creator>aadyachinubhai</dc:creator><comments>https://news.ycombinator.com/item?id=48102293</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48102293</guid></item><item><title><![CDATA[Show HN: n8n like workflows for AI agents that control a real VM]]></title><description><![CDATA[
<p>Article URL: <a href="https://github.com/aadya940/orbit-ui">https://github.com/aadya940/orbit-ui</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=48100204">https://news.ycombinator.com/item?id=48100204</a></p>
<p>Points: 6</p>
<p># Comments: 1</p>
]]></description><pubDate>Mon, 11 May 2026 20:24:10 +0000</pubDate><link>https://github.com/aadya940/orbit-ui</link><dc:creator>aadyachinubhai</dc:creator><comments>https://news.ycombinator.com/item?id=48100204</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48100204</guid></item><item><title><![CDATA[New comment by aadyachinubhai in "Show HN: Structured Python control over AI computer use agents"]]></title><description><![CDATA[
<p>Fair, mature frameworks do a lot more. Orbit isn't trying to out-feature them. It's a thinner abstraction specifically for computer-use, where the bottleneck isn't orchestration complexity, it's controllability at the step level. Different problem.</p>
]]></description><pubDate>Thu, 02 Apr 2026 04:11:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=47609901</link><dc:creator>aadyachinubhai</dc:creator><comments>https://news.ycombinator.com/item?id=47609901</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47609901</guid></item><item><title><![CDATA[New comment by aadyachinubhai in "Show HN: Structured Python control over AI computer use agents"]]></title><description><![CDATA[
<p>Most agents are prompt + a bunch of tool calls. Writing everything in one prompt is like writing your entire app in one function. It works until it doesn't, and when it doesn't, you have no idea where it broke. Orbit gives you steps and python control flow instead of prompts, so failures are local, models are swappable, and budgets are per-action. This makes it debuggable.<p>For example, Your `Read` step failed after 3 LLM calls on step 4 of 7. With a monolithic prompt, that's just... it hung.</p>
]]></description><pubDate>Thu, 02 Apr 2026 02:14:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=47609235</link><dc:creator>aadyachinubhai</dc:creator><comments>https://news.ycombinator.com/item?id=47609235</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47609235</guid></item><item><title><![CDATA[Show HN: Structured Python control over AI computer use agents]]></title><description><![CDATA[
<p>Most CUA frameworks are either a black box or raw tool calls with no structure. Orbit sits in between, natural language controls the screen, Orbit lets Python control the flow. Each step has its own model, budget, and typed output, but shares context across the session. Mix cheap and expensive models per step, extract structured data from any screen into Pydantic models, and steer the agent mid-task when it struggles. Built on the OS accessibility tree, not screenshots.<p><a href="https://github.com/aadya940/orbit" rel="nofollow">https://github.com/aadya940/orbit</a></p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47608250">https://news.ycombinator.com/item?id=47608250</a></p>
<p>Points: 1</p>
<p># Comments: 4</p>
]]></description><pubDate>Wed, 01 Apr 2026 23:57:17 +0000</pubDate><link>https://github.com/aadya940/orbit</link><dc:creator>aadyachinubhai</dc:creator><comments>https://news.ycombinator.com/item?id=47608250</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47608250</guid></item><item><title><![CDATA[New comment by aadyachinubhai in "ChainoPy: A Python Library for Discrete Time Markov Chains"]]></title><description><![CDATA[
<p>Why ChainoPy?
Covers most of the fundamental agorithms for Markov Chain Analysis
Memory efficient Model saving
Faster than other libraries (eg: 5x Faster than PyDTMC)
First Package to contain functions to build equivalent Markov Chain Neural Networks from Markov Chains.
Contains Markov Switching Models for Univariate Time Series Analysis</p>
]]></description><pubDate>Mon, 07 Jul 2025 07:08:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=44487501</link><dc:creator>aadyachinubhai</dc:creator><comments>https://news.ycombinator.com/item?id=44487501</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44487501</guid></item><item><title><![CDATA[ChainoPy: A Python Library for Discrete Time Markov Chains]]></title><description><![CDATA[
<p>Article URL: <a href="https://github.com/aadya940/chainopy">https://github.com/aadya940/chainopy</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=44487500">https://news.ycombinator.com/item?id=44487500</a></p>
<p>Points: 1</p>
<p># Comments: 1</p>
]]></description><pubDate>Mon, 07 Jul 2025 07:08:02 +0000</pubDate><link>https://github.com/aadya940/chainopy</link><dc:creator>aadyachinubhai</dc:creator><comments>https://news.ycombinator.com/item?id=44487500</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44487500</guid></item><item><title><![CDATA[Show HN: Autoresume – OpenSource, Resume Builder and TeX Editor with AI Features]]></title><description><![CDATA[
<p>A new opportunity pops up, but your resume is hopelessly out of date. You copy content from LinkedIn, dig up old projects from GitHub, and try to remember what you actually accomplished at your last job. Then comes the formatting Word, Google Docs, endless font tweaks, and still, it never looks quite right. And if you want to tailor your resume for a specific job? That’s another evening gone.<p>I built autoResume because I was tired of this cycle. I wanted a tool that made resume building as easy as pasting a link or dropping in a job description. With autoResume, you can:<p>Paste your professional links (GitHub, personal site, LinkedIn) and instantly pull in your achievements.<p>Edit manually when you want full control, with a clean, code-like editor.<p>Let AI help polish, update, and even tailor your resume to specific roles, just paste the job description.<p>See a beautiful, professional PDF rendered in real time, thanks to LaTeX.<p>Runs locally using Docker.</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=44482508">https://news.ycombinator.com/item?id=44482508</a></p>
<p>Points: 3</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 06 Jul 2025 17:27:02 +0000</pubDate><link>https://github.com/aadya940/autoresume</link><dc:creator>aadyachinubhai</dc:creator><comments>https://news.ycombinator.com/item?id=44482508</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44482508</guid></item></channel></rss>