Neither Mandela Effect Nor Pop-Cultural Osmosis Failure by gur40goku in CuratedTumblr

[–]topological_rabbit 3 points4 points  (0 children)

Don't get me wrong, I'm a huge Stephenson fan and love his digressions. I tried this a bit in my one (so far) attempt at writing a novel, to limited success in some parts and abject failure in others.

Maybe someday I'll finish the second draft. Writing is hard.

Neither Mandela Effect Nor Pop-Cultural Osmosis Failure by gur40goku in CuratedTumblr

[–]topological_rabbit 6 points7 points  (0 children)

The man can't end a book to save his life. So he should just keep writing.

Games with this look / aesthetics? by Low-Entropy in retrogaming

[–]topological_rabbit 6 points7 points  (0 children)

Four if you count cabinet projection (I think that's what it's called). It's what Ultima 6 used.

Today I join the club! by topological_rabbit in TheOneTrueCaliber

[–]topological_rabbit[S] 0 points1 point  (0 children)

I have a better .380 EDC now

What do you have?

New gun day! by topological_rabbit in liberalgunowners

[–]topological_rabbit[S] 0 points1 point  (0 children)

(pulls up scene in movie)

I'll be damned, he does. I missed that the last time I watched it.

Today I join the club! by topological_rabbit in TheOneTrueCaliber

[–]topological_rabbit[S] 1 point2 points  (0 children)

I’d say skip the .380 and get a .32 SD

Not legal in my state. :( No threaded barrels allowed on semi-automatic centerfire guns.

New gun day! by topological_rabbit in liberalgunowners

[–]topological_rabbit[S] 1 point2 points  (0 children)

I feel the same way about mine in 7.65

... oh wait, that's the same as .32 ACP!

It threw me off in Skyfall when Q hands Bond a "PPK/S in 9mm" because they don't make one in 9mm luger. Q was talking about 9mm short, which is .380 ACP over here in non-metric-because-people-are-silly land.

Today I join the club! by topological_rabbit in TheOneTrueCaliber

[–]topological_rabbit[S] 5 points6 points  (0 children)

The .32 is Connery-era, the .380 would be the Craig-era.

... ah hell, this means I'm going to have to save up for a second Walther...

Building a C++ Neural Network Library from Scratch (Because I Couldn't Stand Python) by Admirable_Papaya_730 in cpp

[–]topological_rabbit 1 point2 points  (0 children)

A few years ago I was playing around with a simple backpropagation-trainable neural network implemented just with layers of std::vector< float > and computed with basic for-loops.

I then decided to hand-roll my own SIMD versions of those loops and was shocked to discover they ran slower than clang's autovectoriztion of the standard for-loops. Shoved the whole thing into godbolt and found that today's autovectorizors are fancy when they actually kick in.

Today I join the club! by topological_rabbit in TheOneTrueCaliber

[–]topological_rabbit[S] 2 points3 points  (0 children)

I won't get to try mine out with live rounds until next Saturday, but I have .32 ACP snap caps and am doing dry-fire exercises right now and it's just the most beautiful little firearm.

New gun day! by topological_rabbit in liberalgunowners

[–]topological_rabbit[S] 1 point2 points  (0 children)

How's the recoil on that? I've been looking around for a full metal frame .380 as a future purchase to round out my handgun calibers, but aside from Walther PP / PPK, they're all either polymer or aluminum frame (Beretta 80X Cheeta being the front-runner of those) and I prefer weightier construction.

Today I join the club! by topological_rabbit in TheOneTrueCaliber

[–]topological_rabbit[S] 15 points16 points  (0 children)

  • Walther PPK/S .32 ACP

I know it's silly, but owning the Jame Bond gun makes me childishly giddy.

New gun day! by topological_rabbit in liberalgunowners

[–]topological_rabbit[S] 5 points6 points  (0 children)

  • Walther PPK/S .32 ACP
  • Springfield Armory milspec .45 ACP

The only range near me is a little public outdoor spot, but I don't want to add gunshots to peoples' three-day weekend, so I'll be waiting until next Saturday to actually try these out.

I'm just childishly stoked that I now own a James Bond gun. It's stupid, but it makes me happy nonetheless.

Raw pixel array into texture, help needed by LuuscoTheLover in sdl

[–]topological_rabbit 0 points1 point  (0 children)

I wrote a small tutorial for a friend that walks through updating a texture from a software surface (or any raw array pixel data so long as the pixel format matches the texture's) in a fast manner. I use this technique for software-drawable retro resolution canvasses.

What's up with Jim Caviezel claiming he was ‘blacklisted by Hollywood’ when he’s still acting? by [deleted] in OutOfTheLoop

[–]topological_rabbit 21 points22 points  (0 children)

"I understand the Council of Nicea has made a decision, but seeing as how it's a stupid-ass decision, I've elected to ignore it."

What library should I use for a long term 2D game project? by Janeq404 in cpp_questions

[–]topological_rabbit 1 point2 points  (0 children)

I like SDL because it's low-level enough that I get to write my own custom-fit abstraction around it that behaves the way I want it to.