HackerTrans
热门最新趋势评论往期问答秀出招聘

mifydev

no profile record

提交

The role of cat eye narrowing movements in cat–human communication (2020)

nature.com
6 分·作者 mifydev·2个月前·0 评论

Nothing Is Impossible in Software Engineering

twitter.com
2 分·作者 mifydev·2个月前·0 评论

AI Huynya – When AI Goes Wrong

aihuynya.com
6 分·作者 mifydev·2个月前·1 评论

Show HN: Cursor for Userscripts

github.com
56 分·作者 mifydev·5个月前·15 评论

On Writing Browsers with AI Agents

chebykin.org
2 分·作者 mifydev·5个月前·1 评论

Neko: History of a Software Pet (2022)

eliotakira.com
56 分·作者 mifydev·6个月前·13 评论

JSX for AI Video

varg.ai
3 分·作者 mifydev·6个月前·1 评论

Show HN: Browser Code – Coding Agent Inside a Web Page

github.com
2 分·作者 mifydev·6个月前·1 评论

Show HN: Merry Xmas from 90s

90synth-xmas.vercel.app
3 分·作者 mifydev·7个月前·2 评论

Show HN: Sourcewizard – A wizard for generating integration specs

github.com
5 分·作者 mifydev·7个月前·10 评论

Show HN: Sourcewizard – AI installs SDKs in your codebase

sourcewizard.ai
15 分·作者 mifydev·8个月前·23 评论

Remotion – Make Videos Programmatically

remotion.dev
2 分·作者 mifydev·10个月前·0 评论

Show HN: React AI Agent Chat SDK

github.com
2 分·作者 mifydev·10个月前·0 评论

评论

mifydev
·2个月前·讨论
Based on comments below the solution is to make the API public and publish the architecture design, along with the binaries.

This way the company can avoid spending too much money on open sourcing the code, and the community can just rewrite the server while keeping the original binaries running.
mifydev
·2个月前·讨论
This is a very myopic and unnecessary cynical sentiment. It's not about you - agents just need to run without your computer being on all the time. Coding is a background task that needs to run unattended now.
mifydev
·2个月前·讨论
I predict that ntsync will eventually evolve into full blown ntoskrnl.ko and there would be virtually no overhead on calling Windows API. You can almost call it a Linux Subsystem for Windows.
mifydev
·2个月前·讨论
Is it just aligning to EB1A standards, or more rigorous and picky process in general?
mifydev
·2个月前·讨论
Missed opportunity for a tongue twister:

Who coded the code Claude Code code?
mifydev
·4个月前·讨论
I've been experimenting with similar concept myself. The linter loop is the only thing that can keep the agent sane in my opinion, and if anyone can generalize bun+tsc loop to other tasks, this would finally be a way to trust LLMs output.

I was annoyed at how Claude Code ignores my CLAUDE.md and skills, so I was looking for ways to expand type checking to them. So I wrote a wrapper on top of claude-agents-sdk that reads my CLAUDE.md and skills, and compiles them into rules - could be linter rules or custom checking scripts. Then it hooks up to all tools and runs the checks. The self improving part comes if some rule doesn't work: I run the tool with the session id in review mode, it proposes the fixes and improves the rule checkers. (not the md files) So it's kinda like vibe coding rules, definitely lowers the bar for me to maintain them. Repo: https://github.com/chebykinn/agent-ruler
mifydev
·4个月前·讨论
Hm, speculating a bit, but it feels like NTSYNC is essentially a beginning of NT Subsystem for Linux, or maybe ntoskrnl as a kernel module. Feels like the most clean and fast way to port Windows, since the rest of the interfaces are in the user space in real Windows. Essentially should be almost without overhead: user: [gdi32.dll,user32.dll,kernel32.dll -> ntdll.dll] -> kernel: [ntoskrnl.ko]
mifydev
·4个月前·讨论
nice, htmx is infiltrating into the browser standards
mifydev
·4个月前·讨论
Pantheon is closer than we thought
mifydev
·4个月前·讨论
You can just boot freedos to run them, it will execute in real mode which has the same cpu instructions as 40 years ago.
mifydev
·4个月前·讨论
I'm quite concerned about x86 future, but the article has a point if you read it past the title.

It says that x86 is highly standardised - even with different combinations of chips, peripherals and motherboards you know it will work just fine. It's not the case for ARM systems - can you even have something similar to IBM PC with ARM?

I personally know that adding support for ARM devices on Linux is a huge and manual task - e.g. look at devicetree, it's a mess. There is no standard like ACPI for ARM devices, so even powering off the computer is a problem, everything is proprietary and custom.

I don't agree with the article though, x86 is dying and my worry is that ARM devices will bring an end to such an open platform like modern PCs are.
mifydev
·4个月前·讨论
What about the screen refresh rate? Do they deliberately keep it at 60hz so people would buy a MacBook Pro?
mifydev
·5个月前·讨论
Frankly, I don't like this kinds of takes. Yes, people are seeing more spam in their pull requests, but that's just what it is - spam that you need to learn how to filter. For regular engineers who can use AI, it's a blessing.

I'm a long time linux user - now I have more time to debug issues, submit them, and even do pull requests that I considered too time consuming in the past. I want and I can now spend more time on debugging Firefox issues that I see, instead of just dropping it.

I'm still learning to use AI well - and I don't want to submit unverified slop. It's my responsibility to provide a good PR. I'm creating my own projects to get the hang of my setup and very soon I can start contributing to existing projects. Maintainers on the other hand need to figure out how to pick good contributors on scale.
mifydev
·5个月前·讨论
I've submitted it to web store, but I'm sure that the review will be very long. The extension requires a lot of permissions, with this kinds of things personally I'll trust more if i can build from source.
mifydev
·5个月前·讨论
It is passing ACID1 test now!
mifydev
·5个月前·讨论
That's a good point, I'll add support for other models shortly.
mifydev
·5个月前·讨论
Backend service is definitely way to go if you want to serve models for the user.

So Bash and Edit tools are a bit weird, Bash tool is essentially JS execution, and Edit tool automatically generates a script that performs the edits on the page. These tools are needed for the model to explore the page, whatever it does at the end it creates a separate script that will be applied on the page load.
mifydev
·5个月前·讨论
Yup, full access to DOM! Still needs a lot of optimizations, but the trick is that the agent reads the DOM as file, so it can grep parts of it naturally.
mifydev
·5个月前·讨论
Oh that's cool! I've just used wxt to pack extension for firefox and chrome and just used typescript and plain anthropic api. My goal is to make this run fully inside the browser, without any helper binaries, like I've seen with others.
mifydev
·6个月前·讨论
The agent is extremely basic now, there is no context tracking, so create new sessions often.