Advertisement · 728 × 90

Posts by Andrew J. Bromage

Who needs cashflow when you have sucker venture capitalists?

1 week ago 0 0 1 0

And yet YOU, dear reader, are more profitable than Anthropic and OpenAI combined.

1 week ago 0 0 1 0

Unfortunately, the acronym for "Not In Anyone's Back Yard" doesn't sound appropriately connected to NIMBY/YIMBY.

2 weeks ago 0 0 0 0

Threads has coined the term "AI;DR" for just such an occasion.

2 weeks ago 136 7 3 0

There are some fascinating hypothesised factors, like modern cars being close to impossible to steal, which eliminates one kind of gang activity. Or that gatherings of young people are more mixed-gender than in the past, so there is less chance that testosterone-fuelled violence will break out.

3 weeks ago 3 0 0 0

Is it an AI company logo?

3 weeks ago 0 0 0 0

#define braino bool

3 weeks ago 0 0 0 0
Advertisement

It does seem like he's doing less explaining as time goes by.

3 weeks ago 1 0 0 0

I heard about it. Nothing happens in Kilmore, so I'd be surprised if it didn't make the news.

It wasn't a mosque yet, though. It was still a decommissioned church. I noticed the story because my grandfather was the minister of that church in the 1940s.

3 weeks ago 1 0 0 0
Video

Aesop: I TOLD YOU

4 weeks ago 6871 2177 84 156

I'm quoting a colleague, but yes.

1 month ago 1 1 0 0

A colleague commented this morning that the Iran war feels vibe coded. I can't stop thinking about this.

1 month ago 1 0 0 2

The ones we usually call "integers" can be qualified as "rational integers", which sounds like a contradiction in terms.

1 month ago 0 0 0 0

The ones we usually call "integers" can be qualified as "rational integers", which sounds like a contradiction in terms.

1 month ago 0 0 0 0

Yeah, it was just a silly back-of-the-envelope thing because I was curious about just how much the economy of scale actually scales. I was surprised, too.

Trains are MASS transit.

1 month ago 0 1 1 0

I once did a back-of-the-envelope calculation. A full commuter train powered by brown coal has a lower CO2e per passenger-km (or mile if you must) than a bike rider powered by bananas.

Obviously, it has to be a full train.

1 month ago 1 0 1 0
Advertisement
Preview
a green and yellow circle with the words sick sad world in red ALT: a green and yellow circle with the words sick sad world in red
1 month ago 11 0 0 0

Clearing up a couple of misconceptions:

1. There are plenty of businesses like showbusiness.
2. The show need not go on.

2 months ago 0 0 0 0

I only regret, that I have but one upvote to give.

2 months ago 3 0 0 0

Juvenal would be proud.

2 months ago 3 0 1 0

Honestly, couldn't be worse than the tomatoes we get in Australian supermarkets right now.

2 months ago 0 0 0 0

CEO of ZeppelinCo says nobody will be driving in six months.

2 months ago 1 0 0 0

After this, i is now pointing at an aligned subsequence of four floats that you can do the vector comparison trick on.

This is the fastest way I've found to do this kind of search on modern hardware, assuming that you can't exploit the distribution of y somehow (e.g. bucketing).

3 months ago 3 0 0 0

If you have a lot of floats and you need to binary search, you can use this variant:

unsigned logl = ceil_log_2(y.size());
int i = 0;
for (unsigned k = 1 << (logl-1); k > 4; k >>= 1) {
int t = i + k;
if (yt >= y[t]) i = t; // Conditional move instruction
}

3 months ago 1 0 1 0

For the array search part, don't forget that vector instructions exist these days.

With SSE2, for example, you can do four 32-bit float comparisons in parallel, _mm_movemask to put the result in an integer register, then bsr/bsf on that. ARM Neon has all this too.

3 months ago 1 0 1 0
Advertisement

2. The nature of the companies that make it. But less US Robotics, and more Mom's Friendly Robot Company or the Sirius Cybernetics Corporation.

Describing AI marketers as "a bunch of mindless jerks who will be the first against the wall when the revolution comes" is... interesting.

3 months ago 0 0 0 0

Comedy sci-fi made better predictions about the early stages of AI than "hard" sci-fi did:

1. How annoying the products would be. Like, nobody actually wants a Talkie Toaster.

3 months ago 0 0 1 0

"But they were all adults."

3 months ago 0 0 0 0

Who is nominating him for a CV? It's literally the least we can do. en.wikipedia.org/wiki/Cross_o...

4 months ago 0 0 0 0
Preview
Handmade Manifesto Computers are amazing. So why is software so terrible?

Have you seen the Handmade Manifesto? handmade.network/manifesto

4 months ago 2 0 0 0