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/)HP
Posts
27
Comments
2,602
Joined
2 yr. ago

  • America has been turned into a dystopia by republicans where in order to vote, you have to provide birth certificate, social security card, a signed permission slip from your late parents, a blood sample, a piece of the Shroud of Turin, a moon rock, and 75 thousand dollars in unmarked non-consecutive bills.

  • I feel like if ChatGPT were the only LLM on the market, they’d have a real path to profitability, but it’s not even the best LLM on the market. And the open source models are nearly as good, meaning the vast majority of people who need an LLM can run it on their own hardware.

    It’s kind of like trying to make a profitable business out of offering a special sauce that isn’t as good as your competitors sauce, and is barely better than the free sauce from Taco Bell. Oh and it costs you millions of dollars to produce a single bottle.

  • My home server has an NVMe that has the OS and all the Docker Compose stacks and their database data. The big data (photos, movies, backups, etc) are on a big 6 drive RAID 6 array. The NVMe gets backed up to the RAID every night. They go into folders named after the day of the week, so I’ve always got 7 days worth. Then every week or so, I rsync the whole RAID to a big drive at my parent’s house. The reason I do that manually is because I don’t want it happening if I get hit with a ransomware attack.

    That was all relatively easy to set up, but server administration is also my profession, so for normal people, I recommend an easier home server setup and a commercial backup solution.

    I’m actually working on an open source backup solution based on my deduplicating WebDAV server, Nephele. If I can pull it off, it’ll be free and open source to run on your own hardware, or you can pay my company to back up to my hardware.

  • If you’re transferring files over a socket (like through SMB or SFTP), the receiving end usually has a small buffer, like 64KB. It’ll just pause the stream if it’s receiving data faster than it can push it to disk and the buffer gets full. So usually a file transfer won’t use much memory.

    There is some poorly written software that doesn’t do that, though. I ran into a WebDAV server that didn’t do that when I was writing my own server. That’s where you could run into out of memory errors.

  • Apparently people don’t like hearing that. xD

    I use all three, Mac, Linux, and Windows, all the time. Mac is the only one I’m ok with having 8GB of RAM. At least 12 on the other two, unless you use zram swap on Linux, then you can get away with 8. Afaik, Windows doesn’t have anything like that, so 16 is best, but 12 is ok.

    I don’t really understand why people would downvote that.

  • They could pretend to be any domain, yes, but you asked about inspecting a TLS stream, and afaik, there’s no way to do that without the private key. Once the TLS handshake begins, there wouldn’t be a chance for a man in the middle, so that kind of attack would have to be done before the connection is established.