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/)IS
Posts
0
Comments
34
Joined
2 yr. ago

  • Copilot, yes. You can find some reasonable alternatives out there but I don't know if I would use the word "great".

    GPT-4... not really. Unless you've got serious technical knowledge, serious hardware, and lots of time to experiment you're not going to find anything even remotely close to GPT-4. Probably the best the "average" person can do is run quantized Llama-2 on an M1 (or better) Macbook making use of the unified memory. Lack of GPU VRAM makes running even the "basic" models a challenge. And, for the record, this will still perform substantially worse than GPT-4.

    If you're willing to pony up, you can get some hardware on the usual cloud providers but it will not be cheap and it will still require some serious effort since you're basically going to have to fine-tune your own LLM to get anywhere in the same ballpark as GPT-4.

  • The alt text on that XKCD is even better:

    "I recently had someone ask me to go get a computer and turn it on so I could restart it. He refused to move further in the script until I said I had done that."

  • Definitely AI generated. Look at the bottom-right of the Confederate flag. It’s all messed up, classic generative AI “artifacting” for lack of a better word for it.

    Edit: lower down in the thread the original was posted. This was upscaled (very poorly) by AI.

  • They wouldn’t make these games if they didn’t work.

    Part of their shtick is to get you to make any purchase at all. Then you might go on to spend hundreds! Or you might quit. But in some sense that’s also good because the plan was never for you to play for free.

  • There's nothing special about a generic for loop (at least in C-like languages). There's no reason you couldn't do something like for (i = 0; true; i++) to make it infinite. Some languages even support an infinite list generator syntax like for i in [0..] (e.g. it lazily generates 0, then 1, then 2, etc. on each iteration) so you can use a for-each style loop to iterate infinitely.

    Now, whether or not you should do such things is another question entirely. I won't pretend there aren't any instances where it's useful, but most of the time you're better off with a different structure.