HackerTrans
TopNewTrendsCommentsPastAskShowJobs

anditherobot

no profile record

Submissions

How to make LLM native User Interfaces - Post LLM Workflow

youtube.com
1 points·by anditherobot·5 tháng trước·1 comments

comments

anditherobot
·2 tháng trước·discuss
Microsoft’s biggest dev move would be to make one clear “default” stack for each app type: one for web, one for desktop, one for mobile.

They already have strong tools. Just way too many paths They should make the recommended stack obvious and well-supported.
anditherobot
·5 tháng trước·discuss
I am experimenting with the post LLM Daily Workflow
anditherobot
·5 tháng trước·discuss
Vibe coding sits on an axis from smart autocomplete to one-shotting a $1B SaaS. Traditional software engineering was about holding the system in your head and translating it into syntax, fighting tooling and architecture decisions along the way. I think done properly it removes many of these friction points along the way to validating / implementing the idea.

Now it's easier to traverse a live plan and to quickly make micro pivots as you go.

I also think that architecture needs to change. Design patterns that will help to provide as much context to the LLM as possible to increase understanding.
anditherobot
·6 tháng trước·discuss
Fair challenge to the idea. But what i am saying is that every line of boilerplate, every import statement, every configuration file consumes precious tokens.

The more code, the more surface area the LLM needs to cover before understanding or implementing correctly.

Right now the solution to expensive token limits is the most token-efficient technology. let's reframe it better. Was react made to help humans organize code better or machines?

Is the High Code-to-Functionality Ratio 3 lines that do real work > 50 lines of setup really necessary?
anditherobot
·6 tháng trước·discuss
We're overlooking a critical metric in AI-assisted development: Token and Context Window to Utility Ratio.

AI coding tools are burning massive token budgets on boilerplate thousands of tokens just to render simple interfaces.

Consider the token cost of "Hello World":

- Tkinter: `import tkinter as tk; tk.Button(text="Hello").pack()`

- React: 500MB of node_modules, and dependencies

Right now context windows token limits are finite and costly. What do you think?

My prediction is that tooling that manage token and context efficiency will become essential.
anditherobot
·6 tháng trước·discuss
From punch cards to assembly, to C, to modern languages and web frameworks, each generation raised the abstraction. Agentic frameworks are the next one.
anditherobot
·6 tháng trước·discuss
With Visual Studio and Copilot I like the fact that runs a comment and then can read the output back and then automatically continues based on the error message let's say there's a compilation error or a failed test case, It reads it and then feeds that back into the system automatically. Once the plan is satisfied, it marks it as completed
anditherobot
·9 tháng trước·discuss
Have you tried Scoped context packages? Basically for each task, I create a .md file that includes relevant file paths, the purpose of the task, key dependencies, a clear plan of action, and a test strategy. It’s like a mini local design doc. I found that it helps ground implementation and stabilizes the output of the agents.