arrakark

joined 5 months ago
[–] [email protected] 1 points 3 months ago (1 children)

I think we need more detail. Are there restrictions about what you can write?

[–] [email protected] 12 points 3 months ago (4 children)

Hi. I'm sorry, I didn't mean it that way. People have put a lot of effort into developing Lemmy as both a software and a community, and it wasn't my intention to devalue anyone's efforts or say that it's a lost cause. I think people should continue using Lemmy. This was just literally my stream of consciousness. I'm more upset that the original Reddit is gone and I wanted to highlight how Lemmy is not a perfect replacement.

-43
submitted 3 months ago* (last edited 3 months ago) by [email protected] to c/[email protected]
 

Just some thoughts I have on reddit and lemmy and some interesting things I have found. A piece of original content. No AI.

[–] [email protected] 8 points 3 months ago (6 children)

IEE 754 is my favourite IEEE standard. 754 gang

[–] [email protected] 43 points 3 months ago (7 children)

I don't get it

[–] [email protected] 1 points 3 months ago

So I had this idea for a long time; tell me what you think. What if we build a web crawler to build a database of YouTube URLs? There's just so much content out there that is only a couple of years old that I feel like nobody is shown anymore. Build a nice little web UI that people can utilize with literally iframes. Basically adjust YouTubes algo to show people what they really want. Maybe get a LLM to parse the titles to determine what kind of video it is, and use it to group related videos together

[–] [email protected] 6 points 3 months ago

I used to have a very large air filter standing in the corner of my room. It wouldn't eliminate the need to vacuum, but it would reduce the dust in the air and make it less noticeable. I got rid of it because the filter cartridges were sorta discontinued/really expensive

[–] [email protected] 2 points 3 months ago

Solid take 👍

[–] [email protected] 10 points 3 months ago

Reddit UI.

eeeeeeeeeeww...

[–] [email protected] 6 points 3 months ago (1 children)

You mean you aren't subscribed to the GREATEST COUNTRY ON EARTH?

LAND OF THE FREE? HOME OF THE BRAVE?

MOST SCHOOL SHOOTINGS PER CAPITA?

[–] [email protected] 10 points 3 months ago (1 children)

Yeah I'm not super versed in retro handhelds, but I've seen reviews of products that are not too much more expensive, yet offer like 100x the features and performance. I would imagine the ability to load custom ROMs would be a deal breaker. These review units seem one step away from coming in a cereal box, or as a superhero-themed extra toy you get in a movie theater popcorn combo.

[–] [email protected] 7 points 3 months ago (3 children)

Eh, I think there's a need for appropriate technology here. Lemmy is inherently a multi-modal platform, with images, links, and text. I like the browser skins and apps that browse Lemmy.

As an educational project or simply for fun I say go for it.

 

It's interesting how different countries are dealing and are effected by the declining worldwide birth rates. The most astounding statistic to me is that wildlife populations have dropped +70% over the past 50 years. Frankly, if humans think that we are in the right to drop wildlife populations by such a staggering amount, a slight drop in human populations only seems like a fair way to balance the scales.

 

I am relieved to hear that this tennant got some money back.

There seems to be a difference in views on what housing means to people. To the landlords, it's an exchange, a source of income for losing access to space. Landlords think it's fair to evict a tennant if it means they can charge more for rent. To the tennant, it's literally where they eat, live, and sleep. Their SOL if the landlord kicks them out. The because of this, the demand-curve on a demand-supply graph is steep. This causes the sensitivities were seen in the rental market these past couple years. The supply side is also steep because of NIMBY's.

So what happens? Prices go up and quantities don't change. Current landlords are rewarded, new landlords are hardly created, and tenants are left scrambling as they move from place to place, having their entire life uprooted each time.

And then people wonder why Canada isn't having kids. LOL

30
submitted 5 months ago* (last edited 5 months ago) by [email protected] to c/[email protected]
 

Hey; I just got a Lemmy instance up and running. I'd like to share some tips and things that helped me along the way.

I used the Ansible installer found here. Just following the instructions is pretty clear if you've ever set up a server before. I did have a couple of hickups though:

  • In the hosts config file, there's a like that says "[email protected]: replace with the destination you use to connect to your server via ssh."" There's a typo down below where there is no [email protected], it actually says example.com instead. Do replace it with your username and domain.
  • The customPostgresql.conf DOES need to be tuned for your server memory and CPU; the default did not work for me
  • When it says Configure a DNS A Record to point at your server's IP address. it means you need an IPv4 address for your server. Unfortunately, this means you can't use the cheapest Vultr tier at $2.5/mo, but you have to use the $3.5/mo instance at least.
  • I used the $5/mo Vultr instance instead of $3.5 because 512MiB of RAM caused my server to run out of memory and start killing processes. For some reason nginx would be the first to go.
  • Speaking of nginx; it was not configured to start on startup for some reason. A quick sudo systemctl enable nginx fixed that.
  • To diagnose the memory issue; I had to go docker ps | grep postgres, get the hash/ID for postgres, then do sudo docker logs 5115641fc0b2 to see the logs
  • To see the server logs, the /srv/lemmy/<domain name here> is where the docker-compose.yml file is, so if you cd into this dir, only then can you run docker compose logs -f lemmy or docker compose logs -f lemmy lemmy-ui pictrs to see the lemmy logs
  • Sometimes, pressing a button in the config menu doesn't do anything. Generally, it's a backend issue and not a frontend one, but the front-end does not tell you that anything has gone wrong. If you "Inspect" and open up the console in your browser, you'll see the server request done and you can see the response.
  • I was surprised to learn that you can't make a federated AND private Lemmy instance. I guess it makes sense? I kind of want to save on server bandwidth/resourse by being the only user though...
  • My ISO of Debain did not have a swap file or partitioned any swap space. Create a swap file and make it permanent through the following commands: sudo fallocate -l 1G /swapfile sudo chmod 600 /swapfile sudo mkswap /swapfile sudo swapon /swapfile and then edit sudo nano /etc/fstab and add the line /swapfile none swap sw 0 0. Without the swap Lemmy would crash the server.

Anyways, hope these notes help someone! If you've got any tips I'd love to hear.

view more: next ›