Modern tech, retro tech, 80s/90s music & nostalgia. I live in northern England so most things I post about have a UK slant.

Elsewhere on Fedi:

  • 1 Post
  • 21 Comments
Joined 1 year ago
cake
Cake day: June 7th, 2023

help-circle

  • It’s a little more than 100€

    It’s half as much again! If your budget is that flexible you really should have mentioned it in the original post so that people could give you a wider range of options.

    Translate it up by a couple of orders of magnitude and you get “I want to buy a car, I have €10,000 to spend” … “I found one for €15,000, it’s a little bit more but …”












  • Yes, it matters hugely.

    Let’s say I do a google search for “how to frobitz a widget” and the top result (because as you say it’s in Google’s cache) points me to a post on /r/WidgetFrobitzing.

    I then click through and find that the post is deleted or has been changed to say “lol Spez sucks use Lemmy” or whatever. I’ll almost certainly close that tab and go back to google to find another link. That deprives Reddit of clicks through its ads, of time spent on site, and it also means that user is less likely to follow links to Reddit in future as they will know they’re not as useful as Google thought they were.



  • Slackware. Version 3.1 if I remember rightly, with Linux kernel 2.19.x.

    It was installed from floppy disks, you needed about 10 of them to do a full install including X Windows.

    At the time (1997 or 1998) I only had dial up internet at home, so over the period of several days I brought blank floppies in to work, downloaded the relevant images and copied them on to the disks.

    I then spent most of a weekend trying to persuade an (even then elderly) PS/2 with 4 MB of RAM to become a Linux box. Got there in the end, though!




  • I can’t help with Lemmy, but I’ve been running a single-user Mastodon instance for almost a year now.

    Like you, I found that the media very quickly used up much more disk space than I anticipated. There are a few things you can do.

    You can tune how long media is stored for: some of this is done in the admin interface, but really you need to set up cron jobs to regularly run various tootctl commands. This is the crontab I use:

    SHELL=/bin/bash
    PATH=/home/mastodon/.rbenv/shims:/home/mastodon/.rbenv/bin:/usr/local/bin:/usr/bin:/bin
    
    RAILS_ENV=production
    # Remove media attachments older than 8 days
    11  19  *   *   *     cd /home/mastodon/live && time bin/tootctl media remove --days 8
    # Remove link previews older than 28 days
    22  5   *   *   *     cd /home/mastodon/live && time bin/tootctl preview_cards remove --days 28
    # Remove files not linked to any post
     3  23  *   *   0     cd /home/mastodon/live && time bin/tootctl media remove-orphans
    # Prune remote accounts that never interacted with a local user
    44  1   *   *   *     cd /home/mastodon/live && time bin/tootctl accounts prune
    
    

    You can of course choose even stricter settings but I found that no matter what I did, given that I am following approx 1,000 other Fediverse accounts it still used up more disk space than I was comfortable with.

    So I offloaded most of the media storage onto an S3-compatible service. It’s breaking the self-hosting ethos somewhat, but with Backblaze B2 I can happily store and serve several hundred GB of media files for just a couple of dollars a month. To me, that was a no-brainer.