Viewing profile — pooyamo
pooyamo
HN member- Joined
- Sun, Sep 07, 2025, 4:29 PM UTC
- HN karma
- 43
- Public activity
- 20 items
- HN profile
- View on Hacker News ↗
About pooyamo
Recent public activity
-
comment
Comment #49085010
Does any expert in the field know whether it is really the case that this intelligence we are seeing with frontier models is an "emerging" phenomena, only coming up when the archit…
-
comment
Comment #48956134
The LOOP solution could be written using DOLIST or DO forms too (likewise built-in): (defun calculate (instructions) (let ((result 0)) (dolist (e instructions result) (destructurin…
- story
-
comment
Comment #45969288
Zed team is writing their own in-house GUI stack [1] that leverages the computer's GPU with minimal middleware in-between. It's a lot of work short-term but IMO the payoff would be…
-
comment
Comment #45968975
>vscode fork I wonder why they are not trying to fixup something based on their own GUI stacks like Flutter or Compose Multiplatform. It seems only Zed is truly innovating in this …
-
comment
Comment #45874672
> MusicBrainz Picard I don't think it can be used as a CLI tool. It's mainly a GUI app. I've tested it in the past and it works fine too.
-
comment
Comment #45874646
It's a good tool. However, last I checked, it was not possible to run it in a one-shot stateless fashion, like, passing it a list of music files so it auto-fetches album art, lyric…
-
comment
Comment #45657907
Do other editors and IDEs bundle-in these external language servers? I don't think so, unless they are specifically tied to the language like Eclipse or PyCharm
-
comment
Comment #45604748
Binaries for dynamic libraries of tree-sitter (usually compiled with C compiler) would be smaller than that. For example this [1] .so bundle for 107 different grammars is ~137 MiB.…
-
comment
Comment #45572129
Can you create and run a service that starts when phone is turned on, with a PWA app? Usecase is a backup daemon.
-
comment
Comment #45568943
Thanks! Fixed that example. (In fish shell that I use, it didn't need those quotes that's why I didn't catch it) >there are still missing expressions, such as "add up", "a couple",…
-
comment
Comment #45568345
> I guess this is for when you're knee deep in terminals? One can use it directly in terminal or it can be used as a dependency tool in other scripts similar to the way other UNIX …
- story
- story
-
comment
Comment #45532014
Some stuff like LAPACK and BLAS fit your bill. They are math libraries written decades ago and still in use.
- story
-
story
Show HN: netq – A script to fetch common network parameters, written in POSIX sh
Hi HN, I've written a simple script, mainly to query public IPv4 and IPv6 of a computer. Currently about 14 IP-finder services are supported. It also supports fetching local IP and…
-
comment
Comment #45482464
I've written a similar CLI tool (not a website), netq [1]. I believe it can be an alternative to some of the functionalities of the website. If one is able to get a public IPv6 fro…
- story
-
story
Show HN: Netq – A script to fetch common network parameters, written in POSIX sh
Hi HN, I've written a simple script, mainly to query public IPv4 and IPv6 of a computer. Currently about 14 IP-finder services are supported. It also supports fetching local IP and…