What podcast do you enjoy so much you binge old episodes of?
  • TheLugal TheLugal 5d ago 100%

    NoSleep. It's a great horror podcast

    2
  • The Wayback Machine is back as a read-only service after cyberattacks
  • TheLugal TheLugal 1w ago 100%

    To you as a user it's readonly. To the thousands that submits urls for archival it is readwrite.

    68
  • Silent Hill 2 - Review Thread
  • TheLugal TheLugal 2w ago 90%

    Lol at that price? We should riot

    8
  • Google is testing verified checkmarks in search
  • TheLugal TheLugal 2w ago 98%

    We regularly experiment with features that help shoppers identify trustworthy businesses online[...]

    I like that Google calls their users "shoppers" /s

    80
  • OpenBudgeteer: a selfhosted budgeting app made for Bucket Budgeting
  • TheLugal TheLugal 3w ago 96%

    I'll check it out! I have been using Firefly III.

    I think it's good there are several projects that try to solve similar problems. It makes for such a diverse solution pool.

    23
  • linux
    Linux 2mo ago
    Jump
    So what did it take for you to go to Linux?
  • TheLugal TheLugal 2mo ago 100%

    Windows was actually quite good when I made the swap. It was during the height of windows xp.

    I did it because I am a curious guy, and wanted to know what it was all about. I've been full-time and had fun with it since then. :)

    1
  • Exiles in the past leagues
  • TheLugal TheLugal 3mo ago 100%

    There has been a lot of quality of life changes that a lot of people aren't used to yet

    7
  • ::: spoiler Alt. text > There are probably children out there holding down spacebar to stay warm in the winter! YOUR UPDATE MURDERS CHILDREN. ::: [xkcd | 1172: Workflow](https://xkcd.com/1172/)

    165
    8
    yurop
    YUROP 4mo ago
    Jump
    Europeans, how common are random spam phone calls in your country?
  • TheLugal TheLugal 4mo ago 100%

    I get 1 or 2 sales calls a year, if you think that's spam

    2
  • Will GTA 6 live up to the hype?
  • TheLugal TheLugal 4mo ago 94%

    Nothing ever does.

    34
  • Android App for tagging locations on a map?
  • TheLugal TheLugal 5mo ago 100%

    You can update the location only when the device is there. Or you could use a script or program of some kind to change the location when necessary, but I don't know tools like that exist yet, so it might be too technical

    1
  • Android App for tagging locations on a map?
  • TheLugal TheLugal 5mo ago 100%

    You can set it up so it does. It requires an mqtt-server though. When I am out walking, my partner can get my location live, with a little icon and everything.

    But as I said, it might not fit your use case. I figured I'd mention it in case you got a good idea or something. :)

    1
  • What's your favourite F-Droid app?
  • TheLugal TheLugal 5mo ago 100%

    Oh, right! Thank you

    2
  • What's your favourite F-Droid app?
  • TheLugal TheLugal 5mo ago 100%

    Thank you, for the heads up :)

    3
  • What's your favourite F-Droid app?
  • TheLugal TheLugal 5mo ago 100%

    Weird! It works on my end :-S

    1
  • What's your favourite F-Droid app?
  • TheLugal TheLugal 5mo ago 100%

    These are probably the ones I use the most

    11
  • Android App for tagging locations on a map?
  • TheLugal TheLugal 5mo ago 100%

    Not sure if it fits your particular use case, but have a look at OwnTracks.

    1
  • linux
    Linux 5mo ago
    Jump
    Need a good resource to learn linux
  • TheLugal TheLugal 5mo ago 100%

    Oh man, I loved Crunchbang! It was my last distro before I switched to Arch when they discontinued it.

    I miss their friendly #! wallpaper

    3
  • linux
    Linux 5mo ago
    Jump
    Need a good resource to learn linux
  • TheLugal TheLugal 5mo ago 100%

    Excellent reply!

    I just want to add that partitioning your drives is not backups and can never replace backups. It just increases the likelihood of making it easier to fix should you fuck something up with your install.

    Also, if OP means "watching streaming services" and by "streaming", there should be little to no setup. Mainly the browser might ask you to enable DRM for the service to work.

    8
  • blog.anytype.io

    Today, we’re taking a humble stride towards this goal by publicly debuting the first version of local-first sharing and collaboration within Anytype.

    2
    0
    www.theverge.com

    Fairphone’s latest repairable device is for people who hate saying goodbye to an old smartphone more than they like buying a new one.

    497
    166

    I have a list containing a set of tags, and would like to exclude one tag, unless another tag exists in the line. Say I have the following list, and want to exclude `B`, unless `A` is present. ``` [A,B] [A,C] [B,C] [A] [B] ``` I can reverse grep for `B`: ``` > grep --invert-match "B" [A,C] [A] ``` How can I find the previous list, but also the item containing `[A,B]`?

    16
    6