If you’re interested in (co-)moderating any of the communities created by me, you’re welcome to message me.

I also have the account @Novocirab@jlai.lu. Furthermore, I operate the bot account @daswetter@feddit.org, which posts in !daswetter@feddit.org.

  • 13 Posts
  • 37 Comments
Joined 2 years ago
cake
Cake day: February 27th, 2025

help-circle





  • Yeah, unless one happens to have one of the beefier Raspi 4 or Raspi 5 variants (which, of course, would be an overpriced choice if their sole purpose is to be a home server). To give specific recommendation for cost-effective beefier home server hardware: Used Thin Clients. For example, Dell T530 Wyse (or T520, or T540, or the 6x0 series).












  • The only thing I disagree with is this:

    This continuing saga shows how important regulation and legislation are to protect consumers, whether it’s individuals like us, or companies that are being bullied into complying with some pretty odious demands.

    This makes it look like anti-repair lawsuits were something that can natuarlly occur, and that the solution were some form of government intervention. By and large, that’s not true: It’s the existing copyright laws which are the government intervention — what we are calling for is not a restriction of freedoms for the greater good (regulation), but a return of freedoms that were unjustly taken from us.

    (Just so no-one misunderstands me: I’m no opponent of regulations, and am wholly aware that, very often, they actually protect freedom in the greater scheme of things. My point is that terms like “regulation” and even “new legislation” do have a bad ring to many people in the Western hemisphere and beyond, and we needlessly cease discursive territory if we neglect the fact that we are victims of overreaching, oligarch-serving regulation, which we seek to abolish.)



  • ffmpeg is usually the tool of choice.

    An example for batch converting of all AVI videos in a folder:

    for i in *.avi; do ffmpeg -i "$i" "${i%.*}.mp4"; done

    Source & further reading here on StackOverflow. The comments to the answer provide examples of how to explicitly tweak the quality level. Inverting what this specific comment suggests, conversion from H264 to H265 could be done by something like this, assuming all your videos’ names end on .mkv:

    for f in *.mkv; do ffmpeg -i "$f" -map 0 -movflags faststart -c:v libx265 -c:a copy -c:s copy "${f/x264/x265}"; done

    I wonder: if one wants to make things run in parallel, would that be as easy as adding " & " before the last semicolon here? I suspect this could work as long as there are only a few handful of files, but lead to troubles once there’s more.



  • Besides finding better ways to positively recognize bots, we also need to invent ways that make it quicker to realize “false alarm, this user is actually legit”.

    For example, users should have an option to pin posts and comments to their profile, and I suggest to provide at least two different ‘tabs’ for this in the public profile: One tab just for the usual “posts and comments you would like the world to see”, but another tab for “some recent, complex interactions between you and other (established) users that in your eyes prove quite well you’re not a bot”. The purpose is simply to save others, worried that you could be a bot, some time of going through your posts in search of signs for humanity. Yes, this can be gamed to some degree (what can’t?). However, at a technical level, the feature is little more than a copy of the “pin” feature that would be very nice to have anyways, so we can get an appreciable improvement in our ability to tell users from bots for very little programming effort.


  • Novi Sad@feddit.orgtoSelfhosted@lemmy.worldGood mini PC?
    link
    fedilink
    English
    arrow-up
    7
    ·
    edit-2
    1 year ago

    What hardware do you currently use and what software do you intend to run on the new machine? And what’s your budget situation?

    In any case, I would always recommend to buy used or refurbished hardware. Even if it’s not necessary financially, it’s better for the environment.