So what are the good Australian boot/shoe brands now?
HN user
defen
"US jurisdiction" also includes foreign heads of state residing in, and present in, their own country. I don't think a theoretical definition of jurisdiction is tenable; only a realist one.
Is this a very obscure Norm Macdonald reference?
How does that work when you don't have enough assets to cover the cost of the thing you broke or stole?
I bought my 8 year old daughter the hardcover box set for Christmas. When she opened it her initial reaction was definitely "oh...thanks" (she was clearly not excited about it but wanted to be nice). Within a week it was borderline impossible to get her to put them down and go to sleep at night.
There are some absolutely fantastic web comics out there but none of them have had the cultural impact of Calvin and Hobbes. I don't see how any of them could, to be honest. Even though the technical means of distribution are there at near-zero cost, there's no logistical way in practice to get a webcomic in front of a vast cross-section of society for an entire decade.
IIRC that is how Uber implemented their "Greyball" system, which was designed to prevent government employees from actually hailing rides, without completely locking them out of the system (same idea as "shadowbanning"). One team works on "figure out where people work" with the pitch that you can improve routing and ride-share capacity for predictable demand. Another team works on "Display fake data to users" with the pitch being "This is for testing the mobile app in new markets with no drivers yet". Another team works on "mark a user as unable to successfully hail rides" so you can test the failure paths in the app. Then, only the people at the top have the full picture and can put the pieces together to shadowban the regulators.
Martin Amis level prose is neither possible nor desirable for a technical blog post.
How much liability coverage are you getting for ~ $100/month? In other words if you injure or kill someone with your vehicle how much of that cost will be covered by your insurance company? With Waymo the answer is "not my problem".
I've never lived in Los Angeles but the one that gets you in San Francisco if you do street parking is the street cleaning, and the random vandalizations.
Vibe coding is the breakthrough. There's always been "no-code" solutions to problems in various business domains, but they were invariably janky, underpowered, and/or overpriced. Now we have a way for domain experts to go directly from ACTUAL natural language directly to implementation in a real programming language, fully automated, in minutes or hours. How is that not a science-fiction level breakthrough? In 2011 if anyone had said that would be possible "in 15 years", I think most professionals at the time would not have replied with "yeah it's coming but your timeline is off". It would have been "you have no fucking idea what you're talking about".
Pale Fire is one of my favorite books of all time. BTW the crown jewels can be found in the book, if you know where to look :)
I used exactly what you posted; should I make an empty hello-world type of file instead?
Just creating a file with dummy test like
if (2 * 2 != 5) { @panic("fail"); }
And running `zig test file.zig -OReleaseSafe` takes a couple seconds on my computer.
What kind of computer are you on? I just ran that test (latest master build, first run):
~ % time zig test file.zig -OReleaseSafe
file.zig:1:17: error: expected type expression, found '{'
if (2 * 2 != 5) { @panic("fail"); }
^
zig test file.zig -OReleaseSafe 0.03s user 0.44s system 505% cpu 0.094 total
Granted I'm on an M4 Mac but I wouldn't expect another system to be 20x slower.I love Zig and I am generally very happy with Andrew's benevolent dictatorship and the benefits of having one single smart tasteful person in charge of decisions, but the unused variable one really hurts. My guess is that he's seen what a mess C code can be with regard to warnings and so is just totally unwilling to compromise by adding the concept of warnings to Zig. But if I had one wish about the language, it would be for a command-line flag to disable unused variable errors. So much effort has been put into making iteration fast (all this build system stuff, the custom backend, incremental compilation) and then there's just this giant blocker preventing fast iteration on the editing side.
Multiple people in this thread have mentioned the Seattle real estate market going to shit (for sellers) - is that related to tech layoffs or is something else going on? San Francisco's market is just as crazy as ever.
If OP hadn't written his reply to 'dhouston 19 years ago I for sure would have flagged it as LLM-generated.
It's a compelling example of the common phenomenon where a certified genius in one field makes a blunder by attempting to reason from first principles to analyze a problem in another field. Not that such things never work; there are success stories too, but it's not guaranteed.
If you were buying a computer today to use for DS4 (budget under 10k) what would you get? I care more about inference quality than speed. Or is it better to wait for the rumored M5 studio?
Assuming the port is actually 1:1 without any behavioral changes, these bugs already exist in the Zig code
The "1:1" assumption is a massive unjustified assumption. Rust and Zig have different memory models, so it's possible to do a "1:1" translation of Zig code to Rust and end up with undefined behavior in Rust.
For example, Zig code might make assumptions about lifetimes based on implicit knowledge of which allocator was used for some memory. That could cause problems in Rust if you erase the lifetime https://github.com/oven-sh/bun/blob/main/src/bun_core/string...
If we're imagining a world where the US can't stop China from doing that, I'd probably go on the internet and complain about it.
If LLMs can achieve this level of task in 9 days, why do we even need Bun in the first place? Shouldn't we just write our apps in Rust and not even deal with JS?
Princeton has so much money that they could make it free for all undergrads and literally never run out of money.
Historically speaking is that "enough food to keep someone alive for a year" or "the amount of rice one person eats in a year"?
One man illegally downloading copyrighted material is a crime. Multinational corporations illegally downloading copyrighted material is the only remaining growth area in the US economy and vital to national security.
Whoa, since when is there a Jagged Alliance 3? Is it any good? JA2 is one of my favorite games of all time
It's the LLM-generated-text signature.
let's take a second to think about the threat vectors here. The two obvious ones I can think of are: "AI hallucinates and tells you to put non-food into the food" and "AI hallucinates and gives you unsafe prep instructions" (e.g. "heat the chicken to an internal temperature of 110 degrees"). For both of those, it's not clear why "random recipe from an internet blog" is safer than something the AI generates. At some level if someone is preparing your food you need to trust that they know how to prepare food, no matter where they're getting their instructions from.
To clarify - yt-dlp is a command line tool for downloading youtube videos, but it's in a constant arms race with the youtube website because they are constantly changing things in a way that blocks yt-dlp.
Would this hypothetically be able to download arbitrary videos from youtube without the constant yt-dlp arms race?