[-] 200fifty@awful.systems 4 points 3 months ago

yeah, I was more thinking of like my phone's notes app lol. Also, freeform computer note-taking requires weird hardware and can't search the text of my notes, so, still a tradeoff...

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

Language designers are obligated to be linguists as well.

This is why I love Perl. Larry Wall has a linguistics background and created the only programming language where you can conjugate variables.

(I know it sounds like I'm making fun of perl here, and I am, but I also legitimately do love perl)

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

The copyright clause in the US constitution (1789) also frames it in terms of granting rights to authors to "promote the progress of ... useful arts". Strictly speaking author protection is not the origin of copyright but also I was snarkily responding to a person who was arguing in favor of AI-training-as-fair-use and implying copyright was 120 years old, not trying to do a detailed explication of the origins of copyright law

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

I'm sorry for my imprecise wording, I was feeling flippant and I know what I said isn't totally accurate. not a big history person here honestly. I'll try and stick to joke-commenting next time. but also can you just say what you mean instead of darkly hinting.

iirc even though the origin of copyright is not really specifically about author protection, part of the broad-strokes motivation for its existence involved "we need to keep production of new works viable in a world where new copies can be easily produced and undercut the original," which was what I was trying to get at. maybe they picked a bad way to do that idk I'm not here to make excuses for the decisions of 16th-century monarchs

also again I'm not a copyright fan/defender. in particular copyright as currently constituted massively and obviously sucks. I just don't think copyright-in-the-abstract is like the Greatest Moral Evil either, bc I'm not a libertarian. sorry ¯⁠\⁠_⁠(⁠ツ⁠)⁠_⁠/⁠¯

[-] 200fifty@awful.systems 4 points 11 months ago

Oh man, I won't be able to unsee this, lol

[-] 200fifty@awful.systems 4 points 11 months ago

I was never a user of buttcoin on Reddit, but I do greatly enjoy hearing about stupid cryptocurrency things, so putting in a vote in favor of this idea

[-] 200fifty@awful.systems 4 points 11 months ago

day 2

perl

#!/usr/bin/env perl

use strict;
use warnings;
use v5.010;
use List::Util qw/ max /;

# Parse the input

my %games = ();

for my $line (<>) {
    $line =~ /Game (\d+): (.+)/;
    my $game_id = $1;
    my $game_str = $2;

    my @segments = split '; ', $game_str;
    my @game = ();
    for my $segment (@segments) {
        my @counts = split ', ', $segment;

        my %colors = (red => 0, blue => 0, green => 0);
        for my $count (@counts) {
            $count =~ /(\d+) (\w+)/;
            $colors{$2} = $1;
        }

        push @game, { %colors };
    }

    $games{$game_id} = [ @game ];
}

# Part 1

my $part1 = 0;

game: for my $game_id (keys %games) {
    for my $segment (@{$games{$game_id}}) {
        next game if $segment->{red} > 12 || $segment->{green} > 13 || $segment->{blue} > 14;
    }

    $part1 += $game_id;
}

say "Part 1: $part1";

# Part 2

my $part2 = 0;

for my $game (values %games) {
    my ($red, $green, $blue) = (0, 0, 0);

    for my $segment (@$game) {
        $red = max $segment->{red}, $red;
        $green = max $segment->{green}, $green;
        $blue = max $segment->{blue}, $blue;
    }

    $part2 += $red * $green * $blue;
}

say "Part 2: $part2";

Found this much easier than day 1 honestly...

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

I think he means script as in, literally a series of lines to say to your doctor to magically hack their brain into giving you the prescription you need (gee, I wonder how these people ever got into pickup artistry!), not a script as in prescription. I think it's not about cost, it's about doctors... prescribing you the wrong thing for some reason so you have to lie to them to get the correct medication? Is this some conspiracy theory I'm not aware of, lol

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

If it's an improvement over current lemmy UI, I'll take it lol. It's not like standard-lemmy-ui is some old-Reddit-interface-style minimalist barebones thing, but the "new-reddit-ness" doesn't bother me too much personally.

The main reason I can't stand the actual new.reddit is because it collapses threads after like 2-3 replies, and then when you go back out of a sub-thread it has a tendency to lose your place. I'm assuming it's some kind of stupid growth hack on Reddit's part to prevent people from reading comments for too long (not enough ads in the comments section!)

So as long as this one doesn't have that stupid behavior, I'm fine with it lol

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

Dang, I remember seeing this many years ago when it was still at like 1998-browser levels of functionality, really cool to see how much progress they've made! It'd be awesome to have more non-commercial browser engines out there.

I really love the serenity os project as well honestly, glad it's not just me who likes that old style of UI (though I'm sad they seem to have dropped the classic Mac style universal menubar...)

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

I like how the assumption seems to be that the thing users object to about "websites track your browsing history around the web in order to show you targeted ads" is... the "websites" part

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

Raise your hands if you’d rather go back to a world without Airbnb.

I mean the sneers just write themselves

view more: ‹ prev next ›

200fifty

joined 1 year ago