Skip Navigation

User banner
Posts
1
Comments
117
Joined
2 yr. ago

  • That is really out there!

    Probably not going to use it (since I'm already too used to normal keyboards), but props to the devs for developing something different.

  • Not really sure why you keep bashing The Guardian... Have you seen the UK's top most read papers (The Sun and The Daily Mail)?

  • Yes, I'm aware of that.

    But I have a list of sites I've been collecting that I don't want to show up, and I don't feel like manually adding them to all my searches.

    Also, I use my SearXNG instance on my phone as well, so I don't need to type all those rules manually on a phone keyboard.

  • Basically, an RSS feed is a link that gets updated when there's an update to a website (here's an example from my medium page). Anytime I post something, it gets updated.

    An RSS feed reader is an app that you can use to list out which websites you're interested in, and pulls up any new articles that get published.

    RSS feeds are everywhere, but often hidden beneath the surface. For example, in the youtube page for Reuters you can't see any link to an RSS feed, but if you right-click and press "inspect page source", and then Ctrl+f for the word "rss", you can find the link hidden there: https://www.youtube.com/feeds/videos.xml?channel_id=UChqUTb7kYRX8-EiaN3XFrSQ

    Most RSS feed readers would be able to find that hidden link for you (you'd just have to give it the normal youtube page link). This is how I "subscribe" to things, I just have one central app where I get updates on everything I'm interested in following (blogs, news, videos, etc).

    If a youtuber has both an Odyssey and a Youtube channel with the same content, I subscribe to the RSS feed from Odyssey.

  • If a youtuber I'm interested in mirrors their videos somewhere else, I'll subscribe to that source via RSS. But that's just to divert traffic from YouTube, not because I have a preference either way regarding community interactions (I never read comments on videos).

  • Congrats, and thank you for releasing this!

    Maybe there's a couple of personal projects I could use it for...

  • Meta was talking about adding Mastodon federation to their Threads app. So I very much doubt it.

    They'd probably take an Embrace, Expand, Extinguish approach.

  • I use SearXNG to search for things, with custom redirects and block lists.

    If I want a genuine human opinion on a topic, I add "site:reddit.com" to the search. Hopefully someday there will be a good way to parse the fediverse for info.

  • It's the cool retro thing all the kids are doing these days.

    The 60s are in again.

  • Sure, it's a one-party state, but it's a communist one-party state

    Wasn't communism supposed to be a classless, stateless, and moneyless society?

    people's needs are generally met

    Except if you're a political dissident or a Uyghur.

    You also seem to overlook the massive state surveillance apparatus. The NSA and FBI are probably jealous of how far reaching some of the Chinese systems are.

    China is essentially an autocratic state-capitalist country, with some communist aesthetics.

    But then again, your comment is nothing I wouldn't expect from someone from hexbear.

  • A lot of people thought this was the case for VMs and docker as well, and now it seems to be the norm.

    Yes, but docker does provide features that are useful at the level of a hobbyist self-hosting a few services for personal use (e.g. reproducibility). I like using docker and ansible to set up my systems, as I can painlessly reproduce everything or migrate to a different VPS in a few minutes.

    But kubernetes seems overkill. None of my services have enough traffic to justify replicas, I'm the only user.

    Besides learning (which is a valid reason), I don't see why one would bother setting it up at home. Unless there's a very specific use-case I'm missing.

  • The point was to test if he was actually on the plane.

    He was on the passenger's list, but that doesn't mean he was actually on the plane.

  • Yes, those are all great uses of it. But could all still be achieved with docker containers running on some machines at home, right?

    Have you ever had a situation where features provided by kubernetes (like replicas, load balancers, etc) came in handy?

    I'm not criticizing, I'm genuinely curious if there's a use-case for kubernetes for personal self-hosting (besides learning).

  • Seems a bit overkill for a personal use selfhosting set-up.

    Personally, I don't need anything that requires multiple replicas and loadbalencers.

    Do people who have homelabs actually need them? Or is it just for learning?

  • This is not inside any application, just a simple bashrc alias if I want to connect to a database to do some quick checks on my terminal.

    I have proper secrets managers when dealing with credentials inside code.

  • True, but I can only pick 3, and Berkshire Hathaway is the top one on the s&p500 that it's not tech.

  • If I was going for money and influence across different areas, maybe Google, Amazon, and Berkshire Hathaway.

  • When dealing with PostgreSQL databases, I use pass as a replacement for ~/.pgpass.

    Like this:

     
        
    alias my_db='PGPASSWORD=$(pass databases/my_db) psql -h (...)'
    
      

    This means I don't have to store database passwords in plaintext inside the ~/.pgpass file.