HN user

prima-facie

1,708 karma

radu at wooptoo.com

Posts25
Comments329
View on HN
www.gl-inet.com 15d ago

GL.iNet Flint 4 Announced

prima-facie
1pts1
www.whathifi.com 4y ago

Is the DTS vs. Dolby war effectively over?

prima-facie
117pts158
news.ycombinator.com 4y ago

G suite legacy free edition for personal use

prima-facie
3pts2
foxdot.org 4y ago

Live Coding with FoxDot

prima-facie
1pts0
metis.fi 5y ago

Reasons to turn down the transmit power of your Wi-Fi access point

prima-facie
2pts0
www.gov.uk 6y ago

Managing incidents before they become crises

prima-facie
1pts0
blog.freron.com 6y ago

Thoughts on Writing Emails Using Markdown

prima-facie
2pts0
www.theguardian.com 6y ago

My pandemic epiphany: I loved becoming a fitness junkie

prima-facie
1pts0
www.extremetech.com 6y ago

Sonos’ frantic flailing illustrates the stupidity of smart tech

prima-facie
89pts83
androidcentral.com 8y ago

Broadcom buying Qualcomm could grind innovation to a screeching halt

prima-facie
1pts0
meta.stackoverflow.com 9y ago

StackOverflow Careers should stop accepting business from predatory employers

prima-facie
2pts0
blog.forallsecure.com 10y ago

Rapid Fire security games

prima-facie
2pts1
money.stackexchange.com 10y ago

How should I begin investing real money as a student?

prima-facie
3pts0
www.yubico.com 10y ago

The UK government to offer U2F secured digital services

prima-facie
1pts0
news.investors.com 12y ago

The rise of Qualcomm

prima-facie
1pts0
wedontneeddst.com 12y ago

We don't need Daylight Saving Time

prima-facie
1pts0
ahprojects.com 12y ago

CV Dazzle: Camouflage from face detection

prima-facie
1pts0
www.quora.com 13y ago

Would becoming homeless be a good strategy to cut costs?

prima-facie
1pts0
jamesclear.quora.com 13y ago

Learning From a Superhuman: The Incredible Life and Fitness of Jack LaLanne

prima-facie
1pts0
www.nydailynews.com 14y ago

Ex Facebook employee spills social network's secrets in new book

prima-facie
2pts0
sciencecareers.sciencemag.org 14y ago

No, You're Not an Impostor

prima-facie
2pts0
www.pcworld.com 15y ago

Wi-Fi Direct vs. Bluetooth 4.0

prima-facie
1pts0
www.mondaynote.com 15y ago

Smartcameras in our future?

prima-facie
1pts1
blog.asgeirnilsen.com 15y ago

Eleven Reasons Your Home Server Should Be a Netbook

prima-facie
1pts0
www.zdnet.com 15y ago

Why software patents are a joke, literally

prima-facie
25pts1

Phones are already running models locally which can be used in the field for specific use cases. Maybe not for frontier coding just yet.

Also you don't need to be connected to the network to use a local AI in many instances. If all mobile apps were done with a local-first approach, then you could use a local AI to query your emails, lookup already visited pages, summarise recently received documents, and lots more. Lots of apps could use an inbox/outbox approach for receiving and sending updates instead of relying on the network at all times. And this pattern could be greatly leveraged by local agents.

This piece is a bit all over the place. I immediately toggled off the `AI enhancements` and read the draft instead. The internet is already full of AI slop, I find human text a lot more valuable, even if unpolished.

LLMs will not be centralised or restrained to any 'clergy', the rabbit is already out of the hat, and open-weights models exist and are widely used. Probably not as good as the latest Sol and Fable but 95% there.

Codex and Claude Code without a doubt have very good models behind them. But they also have really good harnesses built around them. An LLM is only a brain stuck in a cranium in the dark. It can generate endless code/prose, but it can't walk or see on its own, it needs additional tools. If you read any of the local LLM subreddits you will notice people mentioning again and again that the harness/tool-use/template-tweaking makes all the difference on how a model behaves/on how smart it is perceived.

Some folks are already using Qwen models for their daily work. Maybe it can't work in a hands-off/one-shot fashion like the frontier models, but they can help tremendously if you already have some domain knowledge.

People are excited about local LLMs and it's not going away any time soon.

EDIT: https://bun.com/blog/bun-in-rust

Claude Code's dynamic workflows kept 64 Claudes running for 11 days (I would've had to write my own harness to pull this off otherwise).

This highlights the importance of the harness.

The Strix Halo is a great dev machine and a mediocre AI machine. You can run Qwen 3.6 27B at a decent speed, or larger MoE models, and that's about it. For some that's more than enough though, myself included.

At the moment, for around $4000-5000 you can either have speed (a GPU + 32GB VRAM), or you can have capacity - a DGX Spark/Halo, but not both.

I think once someone comes up with a machine which has both it will easily sell for $10000 and people will be queueing to buy it.

And this is exactly my point, the OEMs have more lobbying power and leverage. Anthropic might be valuated at whatever amount, but they're a new player and their only product is a piece of software - which others like Google, OpenAI, etc also have (not identical but similar enough).

EDIT: FYI https://ibb.co/nMYP34Rr

Well, we could expect anything from Adobe. An LLM subscription on top of the regular Adobe subscription sounds like the sort of thing they would do.

Do your local filters run slow? Does your movie render have no sass? Then sign-up for AaaS!

> ISO date and time

Yes, but not always in my experience:

    # Default locale is en_GB.utf8
    
    > date  
    Fri  3 Jul 12:14:20 BST 2026
    
    > date +%x  
    03/07/26
    
    > LC_TIME="C.UTF-8" date   
    Fri Jul  3 12:14:29 BST 2026
    
    > LC_TIME="C.UTF-8" date +%x  
    07/03/26

Laws restricting the use of local AI/LLMs are not going to happen, no matter how much Anthropic might want it. All the major OEMs are now counting on local LLMs to take off. Just look at the OEM support for the upcoming Nvidia RTX Spark platform: Asus, Dell, HP, Lenovo, Microsoft, MSI. All the big names in the industry will have, by the end of this year, Nvidia-powered machines made specifically for local LLM use.

If you are from Europe, even if you're not living in the UK, the en-GB locale will feel a lot more familiar to you than the en-US one.

It uses the dd-mm-yyyy date format like the rest of Europe, the start of the week is on Monday (vs Sunday in the US), the default paper size is A4 (vs US letter), measurement defaults are metric (indeed UK roads use imperial, but the default is otherwise metric), the time format uses 24hrs (vs AM/PM in the US).

Thanks for the detailed response, I really appreciate it.

What I had in mind was an AMD Strix Halo machine, but it seems to have none of the advantages you mentioned. It's neither high bandwidth, nor does it have CUDA support, nor does it have support from the big OEMs. All the boards are from relatively obscure Chinese vendors.

It seems like all the major OEMs have rallied behind Nvidia, if you look at the upcoming RTX Spark laptops.

The biggest thing to watch out for is not just RAM/VRAM but memory bandwidth. You can try to "future proof" yourself with lots of RAM, but if it's 400 GB/S you're still constrained to smaller models.

I'm thinking of getting a SoC machine with 128GB RAM but the bandwidth is limited to 256 GBps. Would you even consider such a machine a decent investment, or should I wait for the newer gen of chips? Thanks!

We replaced Zendesk 2 months ago

There are cases where the workers' right to stay in the country depends on their employment, in which case this creates a huge power imbalance.

We replaced Zendesk 2 months ago

We pulled an ultrahackathon. The team who built this did not sleep much for two days. They worked through Wednesday night, through Thursday, through Thursday night, through Friday. They ate at their desks. They wrote the spec late Wednesday evening and they wrote the cutover commit on Friday afternoon, and in between they did the work that the time between those two moments required.

Cool story but I would not want to be in their shoes. Treating your employees poorly only to justify overnight changes in business needs creates a highly toxic work environment.

Claude for Legal 2 months ago

As someone who has represented themselves in tribunal before I'm definitely interested in this.

The only issue is that in some jurisdictions, like the UK, you can't just offer someone legal advice without being SRA accredited or FCA regulated. I.e. this would effectively make Anthropic a claims management firm under the UK law.

Under article 89I of Financial Services and Markets Act 2000 (Regulated Activities) Order 2001 ("The Order"), advising a claimant or potential claimant, investigating a claim and representing a claimant, in relation to a financial services or financial product claim is a defined regulated activity.

https://www.fca.org.uk/freedom-information/dual-regulation-c...

And is there a legal consequence for AI giving bad/incorrect legal advice? Can they get disbarred?

Of course not :) but unfortunately I've received half-truths and outright lies from actual solicitors, while AI has mostly given reliable advice, even if not procedurally perfect.

There's lots of guarding and unwritten rules in the legal profession so this is not something that will be straightforward to train on, but once done, even if imperfect, will bring legal access to the masses.

Googlebook 2 months ago

With the over-reliance on AI, this looks like a veritable slop-machine, designed to create and consume slop as a primary activity. Good job Google.

Somewhat off-topic: I've spent thousands of pounds on legal advice which has ranged from poor to mediocre. I found that most solicitors would refrain from giving proper advice and are there only to be instructed. You have to do your own homework, read the law, the case-law, prepare notes and documents, etc. With the rise of LLMs I found it easier to do all these things and come prepared to these meetings, or even do some of the solicitor's work on your own. For example I've found Gemini 3 to be exceptional at reasoning on the legal side - to the extent where I was able to explore and reason about very thorny topics from all sides.

I found the legal profession to be a prime candidate to disruption using LLMs, especially the initial consultation phase (Do I have a claim?). One of the things that's protecting the status-quo, for the time being, is the law - for example in the UK you can't actually offer any sort of legal services without being SRA-accredited. There's also lots of secrecy within the profession, and lots of procedural tricks that lay people are not aware of. AI could make all of these more accessible for the lay person.

What Google has done is incredibly clunky and only serves its own interests. We already have methods to prove that we're human.

1. lots of laptops have fingerprint readers & TPM2 build-in

2. lots of folks own Yubikeys or FIDO2 keys - if these became the norm then the price would come down significantly.

Both of these methods only require a tap to authenticate to a website. Both provide public-key authentication, and both provide some level of proof of work / require human interaction, without revealing the identity of the end-user.

Why not use or standardise these? because there's no benefit to Google of course.

You should keep regular backups of your BW vault as a plain JSON file. KeepassXC can now import BW vaults natively (passkeys included). If anything were to happen to Bitwarden you can migrate to KeepassXC as a stop-gap measure.