[-] [email protected] 3 points 1 year ago

Happy birthday! 🍰

[-] [email protected] 4 points 1 year 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

[-] [email protected] 3 points 1 year ago* (last edited 1 year 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 ¯⁠\⁠_⁠(⁠ツ⁠)⁠_⁠/⁠¯

[-] [email protected] 3 points 2 years ago

This happened to me with mobile Firefox too, RIP my sessions

[-] [email protected] 3 points 2 years ago

import qualified Urbit.Ob.Ob as Ob (fein, fynd)

Why

[-] [email protected] 4 points 2 years 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...

[-] [email protected] 3 points 2 years ago* (last edited 2 years 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

[-] [email protected] 3 points 2 years ago

"We are told that technology is helping redistribute wealth from the common people to a small subset of extremely rich men. But, as an extremely rich man, I don't really understand why this is a bad thing? Technology seems pretty cool to me!"

[-] [email protected] 3 points 2 years ago

During the interview, Kat openly admitted to not being productive but shared that she still appeared to be productive because she gets others to do work for her. She relies on volunteers who are willing to do free work for her, which is her top productivity advice.

Productivity pro tip: you can get a lot more done if you can just convince other people to do your work for you for free

[-] [email protected] 4 points 2 years 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

view more: ‹ prev next ›

200fifty

0 post score
0 comment score
joined 2 years ago