Training data:
OpenWebText2 is an enhanced version of the original OpenWebTextCorpus covering all Reddit submissions from 2005 up until April 2020, with further months becoming available after the corresponding PushShift dump files are released.
Awesome resource, thanks.
I like it, it’s more simple than what I’ve been using:
curl --silent https://geolocation-db.com/json/ | jq .IPv4 -r
@ChatGPT@lemmings.world Write about somebody decided to play real-life whack-a-mole with the breakers in a server farm to find out which one was the right one and found out the hard way.
Oh also the server is now in a docker
It’s pretty cool.
All the communities on the server have a banner now if you view the community page. Like:
One liner to get into postgres:
docker exec -it lemmyca_postgres_1 psql -U lemmy
Show only the instances not updated in past 3 days:
select * from instance where updated > current_date-3;
Fix those old rows:
update instance set updated = current_date where updated > current_date - 3;