Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)M
Posts
2
Comments
641
Joined
3 yr. ago

  • Vildt nok at @MaiBarslev laver en whatabout muhammed alligevel.

  • Aj altså, hvor ærgerligt.

  • Da jeg var ung skulle man lægge mange timers hårdt arbejde med en bong for at ødelægge sin uddannelse på idiotisk vis.

  • Several error messages incorrectly using the term “argument” have been corrected.

    Quarrelling over exactly what an argument is. Very pythonic.

  • Deleted

    Permanently Deleted

    Jump
  • "We're going to get real racist on people like you, so don't leave".

  • When you use the pipe you're passing stdout from the left command to stdin on the right command.

    file takes a filename as an argument, it does not read stdin (by default).

    The first command works because head does read from stdin and then echoes the first line, but as an argument to file using command substitution - the $( ... ) bit. Command substitution is neat but this is not really the best use-case for it.

    A better way is to use find with -print0 which makes it use a zero-byte instead of a newline character (otherwise the command will fail in case a filename contains a newline - newlines and spaces in filenames break a lot of scripts if you aren't careful) and -quit, which makes find exit after the first match. And then pass it to xargs which is a utility that transfers stdin to command arguments - In this case the file binary - and handles zero-bytes as seperators when using the -0 arg.

    $ find /usr/lib -maxdepth 1 -type l -print0 -quit | xargs -0 file

    Removing -quit from the find command also works as expected (ie. on each found link).

  • Definitely give Shadow of War a shot if you liked Mordor.

  • That doctor is an imbecile. That was funny.

  • She seems nice.

  • Say the line, Bart!

  • This would be considered petty even for a toddler.

  • Carnivàle had so much potential :-(

  • I think it is the other way around. Some women flirt by acting like young girls (baby-voice, playing dumb/ditsy, etc) and we have been conditioned to perceive those behaviours as flirting.

  • What a guy!

  • Der er ikke noget galt i at bruge LLM hvis det kan lette dit arbejde, men det er vigtigt at du ikke bare tager den tekst der bliver spyttet ud for gode varer.

    En god struktur er noget i stil med:

    En rolle - Start prompten med noget i stil med "Du er assistent til en social arbejder. Dit sprog er neutralt."

    Hvad du ønsker af output: "Lav en opsummering af borgerens udfordringer, muligheder, mål og ønsker".

    Hvis muligt kan du give et eksempel eller mer info om hvilket format du ønsker.

    Herefter de data du har. (Selvfølgelig anonymiseret - Ingen persondata i LLM).

    Din prompt behøver ikke at være så kort som mine eksempler, det er mest fordi jeg ikke har så meget fantasi.

    Hvis outputtet ikke er som du forventer, er det normalt bedre at rette i prompten og prøve igen, end at bede om rettelser. Du kan ikke rigtigt have en samtale med en LLM, selvom man godt kan få det indtryk.

  • Jeg har længe ønsket mig et restaurantsbesøg med din kone, men min familie synes at det er et mærkeligt ønske :-/

  • Some farts have happy endings. I will not elaborate.

  • He refused to leave the plane without a real soldier jacket and all they had around to spare was a women's size.

    I'm just kidding, could you even imagine a high ranking government official being that childish and insecure?

  • Take that back, It was very effective! trump funnelled a lot of money into his own pockets, like he does with any project that he is involved with.