HackerLangs
トップ新着トレンドコメント過去質問紹介求人

hackermanai

no profile record

投稿

Ask HN: Which product branding do you prefer?

2 ポイント·投稿者 hackermanai·2 か月前·1 コメント

コメント

hackermanai
·24 日前·議論
> Claude one shots pretty much everything

What?

> An IDE at this point is best as a tool for code review.

I heard from a friend that most devs building serious stuff still write code. It's shocking but true. (No code review needed.)
hackermanai
·24 日前·議論
At least it didn't succeed yet. They should drop a model somewhere, beating something else in some use case, and maybe people would use.
hackermanai
·24 日前·議論
> You just say, "Go Build me x - it should have y,z features - and build it in golang for me" - and that's it - the 3-4 page Plan comes back - usually pretty credible - and then you click "build.".

What you're describing seems like a workflow for building toys only. There's currently no reality in which someone would actually know what the y,z features are before making them. A plan generated in 5min would likely suggest a suboptimal solution compared to what a good solution would look like (which might take a year or two to figure out, for a human, so still a week or so for SOTA models if at all possible). Building something in golang is cute, but hard to be convinced until more novel applications are being generated from prompts.

The data submitted by Cursor's users tho, that seems to be very valuable.
hackermanai
·29 日前·議論
I think this is a cool approach, like a giant undo stack.
hackermanai
·30 日前·議論
I have this line completion feature in koieditor.com as well, and it's hard to suggest "safe"/good completions at a low latency. Best approach I could think of is a second pass to verify first pass, but adds to latency, or change to better model, which often also impacts latency.
hackermanai
·先月·議論
Many are pro AI, anti hype.
hackermanai
·2 か月前·議論
I think this approach is more common than the hype for actual work. I do something similar, many back and forth, then settle on something often with now known tradeoffs, written by hand to spot issues as a final guard/ keep consistent naming etc.
hackermanai
·2 か月前·議論
Not a textedit fork, but I am building a minimal text editor with niceties based on scintilla. So performance wise on par with Notepad++ et al.
hackermanai
·2 か月前·議論
> Usually performance was the reason for using native APIs rather than web views, but this doesn't seem to be true any more.

It's still true. There's no way around it, web views will always be slower.
hackermanai
·2 か月前·議論
Hackerman Text editor.

595 days and counting.

ᕙ(⇀‸↼‶)ᕗ
hackermanai
·2 か月前·議論
> actively reject multiple safety warnings

Is this like a popup? which most people actively accept without blinking

I think plugin/extensions should be a bit harder to run by default. I get the user friction from extra hurdles before using their plugins etc., but I don't think there is an actually safe way to execute arbitrary code, unaudited, without sandboxing, or other restrictions.
hackermanai
·2 か月前·議論
> “But Local Models Aren’t As Smart”

This is what makes me continuously doubt and rewrite the local-first approach to inline chat in my editor. Next edit/ code complete makes more sense due to latency advantage. But chat is hard.

It's fast and feels good to run locally, but output quality is just not ChatGPT etal.
hackermanai
·2 か月前·議論
> How does anyone at Microsoft/Github thinks this is ok?

Their whole marketing department probably.
hackermanai
·2 か月前·議論
> .. webview ..

That would make it an web app tho. Not sure if that's what OP wants when making Swift apps.
hackermanai
·2 か月前·議論
I recently tested input latency on Mac Mini M2 Pro, keypress to visible pixel (p95 value).

- Zed 36.8ms (26.3 avg) - Sublime 33.5ms (25.9 avg) - VSCode 31.7ms (20.6 avg) - Hackerman Text 15.3ms (12.5 avg)

All editors tested as stripped down as possible, minimal UI etc., empty file, no syntax highlighting. Mostly surprised by VSCode tbh.

Testing on sqlite3.c (with syntax highlighting): Zed 60.5ms, Sublime 37.1ms, VSCode 22.0ms, and Hackerman Text 18.4ms.
hackermanai
·2 か月前·議論
And soon™, https://hackerman.ai/
hackermanai
·2 か月前·議論
> How else are you going to have “a quick glance at code” across project files without using a new view for that?

By showing the text around match inline with the search result in the tree. Especially useful if you do not expect to edit every search result. If you do expect to edit every search result, then Zed's multibuffer is arguably better/ faster.
hackermanai
·2 か月前·議論
I think VSCode use ripgrep and Zed has its own ripgrep-like search. Zed likely still do more work per match due to the multibuffer. A normal nested tree-based result should be faster.

I think multibuffer can be good in edit/renaming use cases, but it's very annoying for fast lookups/navigation across different files (as mentioned elsewhere).
hackermanai
·2 か月前·議論
> Zed felt it had the right to download, install, and run node.js without any permission just to run some LSP (which I don't even use).

Yes. This is bad. Zed keeps installing and running all sorts of random background stuff. This should be an opt-in.
hackermanai
·2 か月前·議論
> never loses unsaved files

This is a big one indeed. I keep many unsaved tmp notes and pastes open all the time. Sublime Text also have it's super smooth pane and window management, so easy to select many tabs, drag and drop tabs to windows etc. Never mind what is unsaved and not. Everything always there on open anyway.

I think this is a highly requested feature in Zed as well, but not sure if they are actually working on this or not.