[-] 200fifty@awful.systems 7 points 1 month ago

Psh, I only use the Flushvalve Pro Vowel Pack. You can't beat them in terms of value for your money.

[-] 200fifty@awful.systems 8 points 6 months ago

Wow, I guess humans and LLMs aren't so different after all!

[-] 200fifty@awful.systems 8 points 6 months ago* (last edited 6 months ago)

is this trying to say "discrimination against racists is the real racism"? ... Would that be "racismism"?

[-] 200fifty@awful.systems 7 points 8 months ago

When people say stuff like this it always makes me wonder "what pace, exactly?" Truthfully, I feel like hearing someone say "well, generative AI is such a fast-moving field" at this point is enough on its own to ping my BS detector.

Maybe it was forgivable to say it in May 2023, but at this point it definitely feels like progress has slowed down/leveled off. AI doesn't really seem to me to be significantly more capable than it was a year ago -- I guess OpenAI can generate videos now, but it's been almost a year since "will smith eating spaghetti," so...

[-] 200fifty@awful.systems 7 points 11 months ago* (last edited 11 months ago)

day 1

part 1

perl

#!/usr/bin/env perl

use strict;
use warnings;
use 5.010;

my $total = 0;

for my $line (<>) {
    my @nums = ($line =~ /\d/g);
    $total += $nums[0] * 10 + $nums[-1];
}

say $total;

part 2

perl

#!/usr/bin/env perl

use strict;
use warnings;
use v5.010;

my %nums = (one => 1, two => 2, three => 3, four => 4, five => 5, six => 6, seven => 7, eight => 8, nine => 9);
$nums{$_} = $_ for 1..9;

my $regex = join "|", keys %nums;

my $total = 0;

for my $line (<>) {
    $line =~ /($regex)/;
    my $first_num = $nums{$1};

    my $window = 1;
    my $sub = substr $line, -1;
    while ($sub !~ /($regex)/) {
        $window ++;
        $sub = substr $line, -$window;
    }

    $sub =~ /($regex)/;
    my $second_num = $nums{$1};

    $total += $first_num * 10 + $second_num;
}

say $total;

Part 2 gave me a surprising amount of trouble. I resolved it by looking at longer and longer substrings from the end of the line in order to find the very last word even if it overlapped, which you can't do with normal regex split. I doubt this is the most efficient possible solution.

Also Lemmy is eating my < characters inside code blocks, which seems wrong. Pretend the "&lt;>" part says "<>", lol

[-] 200fifty@awful.systems 7 points 1 year ago

it's a shame, because gender transition stuff is probably one of the most successful "human biohacking" type things in common use today, and it's also just... really cool. alas, bigotry

[-] 200fifty@awful.systems 8 points 1 year ago* (last edited 1 year ago)

a boring person’s idea of interesting

Agh this is such a good way of putting it. It has all the signifiers of a thing that has a lot of detail and care and effort put into it but it has none of the actual parts that make those things interesting or worth caring about. But of course it's going to appeal to people who don't understand the difference between those two things and only see the surface signifiers (marketers, executives, and tech bros being prime examples of this type of person)

ETA: and also of course this explains why their solution to bias is "just fake it to make the journalists happy." Why would you ever care about the actual substance when you can just make it look ok from a distance

[-] 200fifty@awful.systems 7 points 1 year ago

Oh I wasn't commenting to criticize you -- just adding more insane context for people who didn't feel like reading the full article lol

view more: ‹ prev next ›

200fifty

joined 1 year ago