ooterness

joined 1 year ago
[–] ooterness 22 points 3 days ago* (last edited 3 days ago) (10 children)

Clippy knows all and sees all.

[–] ooterness 33 points 3 days ago (3 children)

It's a parody of overserious memes that are trying to sound edgy and badass. The archetype is a gun-wielding skeleton that's riding a motorcycle and saying something about thin blue lines, but wolves and other imagery are also adjacent.

Instead, THE_PACK takes that aesthetic, cranks it up to 12, and adds some silly text. Everyone is role-playing as a skeleton that's obsessed with motorcycles (hogs). You have to TALK IN ALL CAPS to be heard over the engine noise. And everyone's friendly and welcoming in a way that edgelords aren't.

A few great examples from the last year or so:

[–] ooterness 13 points 1 week ago* (last edited 1 week ago)

Yeah, Tactical Breach Wizards has been in development since at least 2020. I was in the closed beta in 2022 and it was pretty great. They've finally announced the release date of August 22, and I'm excited.

[–] ooterness 15 points 1 week ago

IS IT THE KIND OF CIRCUS WITH A MOTORCYCLE THAT'S ON FIRE, JUMPING OVER A ROW OF MONSTER TRUCKS, WHICH ARE ALSO ON FIRE?

'CUZ THAT'S PRETTY SWEET, BUT ALSO BORING TO WATCH AFTER YOU'VE DONE IT TEN OR TWENTY TIMES FOR REAL.

[–] ooterness 2 points 1 week ago (1 children)

This gives me Locked Tomb vibes.

[–] ooterness 66 points 2 weeks ago (1 children)

Can anyone prove it's NOT an extra-long cow?

[–] ooterness 20 points 2 weeks ago

FROM THE MOMENT I UNDERSTOOD THE AWESOMENESS OF MY HOG, I CRANKED IT. I CRAVED THE STRENGTH AND CERTAINLY OF BONE. I ASPIRED TO THE PURITY OF THE BLESSED SKELTON. AROOOOO!

[–] ooterness 8 points 2 weeks ago (1 children)

NES only has two buttons, but it did establish the "A on the right" norm. The SNES established the four-button diamond labeled A, B, X, and Y.

[–] ooterness 38 points 2 weeks ago (5 children)

Is this why Ian McCollum's videos are getting altered? Over the years, he's had many historical deep-dives featuring firearms from the Murphy's auction house. In recent months, he's been re-uploading those videos to cover their logo with the word "Morphy's". Even though the auctions are long over, I suppose Google counts them as promoting sales.

[–] ooterness 10 points 2 weeks ago (3 children)

Nintendo set the standard in 1990 with the SNES. Microsoft broke it in 2001 with the Xbox.

[–] ooterness 18 points 2 weeks ago* (last edited 2 weeks ago) (1 children)

Old hotness: Swing Wing

New hotness: Transform into bipedal mech

15
submitted 3 weeks ago by ooterness to c/tipofmytongue
 

I'm trying to find a sci-fi short story. Unfortunately, I do not remember anything about the author or title. It is at least a decade or two old, available for free online.

The entire story is set aboard a starship in deep space, and everyone has advanced technology (nanomachines?) that can repair tissue damage that would normally be deadly. Unfortunately, the ship is hit by a massive radiation burst, nearly killing everyone aboard, causing all kinds of damage, and contaminating much of what's left. Somehow, the worst affected have massive brain damage, and the nanomachines are driving them to instinctively seek raw materials for repairs--which can only be found in the brains of relatively intact survivors.

In short, the whole setup is basically an excuse to have space zombies. The nanomachines keep them alive even when their organs are falling out, but they're dumb and slow and they want braaaaains.

Other things I remember:

  • The protagonist is female, and was protected by the initial burst because she was working inside a large water tank.
  • The protagonist is trying to help her romantic partner, who is comatose, but it's implied they might wake up as a zombie.
  • The protagonist is trying to avoid killing the zombies when possible, because there is still a chance of curing them.
  • The protagonist is looking for raw materials that aren't radiation-contaminated, to help her partner and repair the ship.
123
submitted 4 months ago by ooterness to c/grimdank
 
11
submitted 6 months ago* (last edited 6 months ago) by ooterness to c/[email protected]
 

If you're writing Advent of Code solutions in Rust, then I've written a crate that can fetch the user input data directly from the main website.

Long story short, you provide it a login token copied from your browser cookies, and it can fetch the input data by year and day. Inputs are cached locally, so it'll only download it once for a given problem. This was heavily inspired by the PyPi advent-of-code-data package.

Unlike other AoC-centric Rust crates, that's all it does. The other crates I've seen all want the code structured in a specific way to add timing benchmarks, unit testing, and other features. I wanted something lightweight where you just call a function to get the input; no more and no less.

To use the crate:

  • Follow the AoCD instructions to set the AOC_SESSION environment variable.
    This key is used for authentication and should not be shared with anyone.
  • Add the aocfetch crate to your Cargo.toml [dependencies] section:
    aocfetch = { git = "https://github.com/ooterness/AdventOfCode.git" }
  • Import the crate and call aocfetch::get_data(year, day) to fetch your input data.

An example:

use aocfetch;

fn main() {
    let input = aocfetch::get_data(2023, 1).unwrap();
    println!("My input data: {}", input);
    println!("Part 1 solution: 42");    // TODO
    println!("Part 2 solution: 42");    // TODO
}

If this goes well I will submit it to crates.io, but I wanted to open this up for beta-testing first.

 

This is an open-source FPGA project I've been working on for several years now. It's an Ethernet switch for FPGAs, but you can mix-and-match the usual RMII/RGMII/SGMII interfaces with unconventional options like a plain old UART.

My company uses it internally, but we decided to release it as open source. (Currently LGPLv3 but open to other weak-copyleft suggestions.)

Among other things, we've recently incorporated some new technology that allows picosecond-accurate timestamps to be compared across different digital clock domains. You can think of it as a group of NCOs that all track the same best-fit line.

59
Pyrrhic victory? (lemmy.world)
submitted 1 year ago* (last edited 1 year ago) by ooterness to c/grimdank
 

Reddit users will prevail but also be injured so badly they need life support for 10,000 years. (It's a metaphor.)

view more: next ›