HackerTrans
TopNewTrendsCommentsPastAskShowJobs

derfurth

no profile record

comments

derfurth
·10 วันที่ผ่านมา·discuss
One could make the case that being SotA in 2026 is very costly and not that important for being SotA in 2030 if much more efficient models indeed happens.
derfurth
·25 วันที่ผ่านมา·discuss
That's an interesting take, however there is no ongoing maintenance related to local models, maybe the only effort is giving more capable machines to the workforce; but yeah I can see how it might feel like a barrier.
derfurth
·27 วันที่ผ่านมา·discuss
In my experience performance is about the same as native on mobile. On desktop I cannot compare as I thankfully never had to make cross platform desktop apps using native platform SDKs, but Flutter is doing fine. I am a working on a non trivial desktop app, and I am pretty happy about it.

Hopefully the desktop story is going improve as Canonical is now leading the Flutter desktop side.
derfurth
·เดือนที่แล้ว·discuss
To me the issue is that ad vendors in the app knows what you read, the NYT have over 300 vendors listed in their privacy section, the Economist about 80. But if you refuse in the NYT they nag you over and over again for accepting cookies.

It’s crazy not to have privacy reading a magazine.
derfurth
·เดือนที่แล้ว·discuss
I had the experts write markdown files that contained the rules looked somewhat like:

## 1A Rule name

Some prose explaining the rules liking to official documentation.

``` if municipality and inhabitants > 10000 then functionA else functionB ```

Then a trivial parser would extract the rules, the DSL was then handled by Lark[1]. So pretty simple, but it made collaborating with experts easier as simulated results would also output some markdown they could read.

1. https://lark-parser.readthedocs.io/en/stable/
derfurth
·เดือนที่แล้ว·discuss
Having worked with domain experts I concur on the difficult time they have expressing the rules of their domains.

Once I built a little domain-specific language for them, that was tested against old jobs to see if they contradicted the past; it was a nifty project and since then I am convinced that DSLs are underrated as a way to encode expertise.
derfurth
·2 เดือนที่ผ่านมา·discuss
I am wondering how much the "perfect alternative then it will prevail" still holds given the amount of money spent on marketing by infrastructure companies, for example Vercel that have an interest in promoting Next.
derfurth
·2 เดือนที่ผ่านมา·discuss
Plugins are often to blame, I had some recurring issues with the full IntelliJ when opening multiple instances at the same time. I switched to Webstorm without any plugins for light editing without all plugins loaded, I have around 5 instances opened at all times without any issues on an old M1 Max
derfurth
·2 เดือนที่ผ่านมา·discuss
Yes plus there is lot of confusion; the author is citing ePrivacy and GDPR that are about PIIs, not at all about consenting to an install.
derfurth
·2 เดือนที่ผ่านมา·discuss
That's why I now use uncloud, simple as docker compose and got rolling deployments

https://uncloud.run/docs/guides/deployments/rolling-deployme...
derfurth
·3 เดือนที่ผ่านมา·discuss
It would be great, however the title is misleading: the only announcement regarding linux desktop is that the DINUM - a relatively small but perhaps influential government agency pledges to leave Windows.

I believe the largest Linux Desktop initiative in France is GendBuntu[1] for the National Gendarmerie

[1]https://en.wikipedia.org/wiki/GendBuntu
derfurth
·5 เดือนที่ผ่านมา·discuss
In my experience the approach matters a lot, I recently implemented Otel with Claude Code in a medium sized ~200k loc project:

- initially it wasn't working, plenty of parent/child relationships problems like described in the post

- so I designed a thin a wrapper and used sealed classes for events instead of dynamic spans + some light documentation

It took me like a day to implement tracing on the existing codebase, and for new features it works out of the box using the documentation.

At the end of the day, leveraging typing + documentation dramatically constrains LLMs to do a better job
derfurth
·7 เดือนที่ผ่านมา·discuss
I had issues in the beginning, now it works fine, Claude is using it all the time to find things in my codebase.
derfurth
·7 เดือนที่ผ่านมา·discuss
Thanks for the tip. I was dubious, I tried GPT 5.2 for a start on a large plan and it was way better than reviewing it with Claude itself or Gemini. I then used it to help me with feature I was reviewing, it caught real discrepancies between the plan and the actual integration!