Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)NO
Posts
8
Comments
111
Joined
2 yr. ago

  • I don't really want to give some of your hyperbolic statements credibility by replying, but - I've been loving Mudeer for tiling. I'm not sure if it qualifies as a true tiling window manager and my setup does straddle the line between tiling and floating, but it works great for me.

  • f2fs doesn't track file creation times. I thought I was ok with this, but, the longer I used it the more places it started to become an issue. Now I have all these notes that were created in 1970 and it just really takes away a powerful way of searching and organizing my notes.

  • I kind of feel this way about tabs, but everyone loves tabs so much I'm often too embarrassed to say anything.

    Plasma (KDE) and Windows can both stack lots of windows just fine, so, why not let the window manager handle this and keep the browser more focused on browser tasks?

  • Really? There are some pretty serious trade-offs that Qubes requires if you're going to use it as your daily driver. I'm far more security-conscious than anyone I know, but I couldn't bring myself to make those trade-offs.

  • That'll depend on the server you're connecting to to test your speed, and also if you're using wifi.

    Shaw (in Western Canada) seems to route everything through Seattle so there's like a built-in 20 millisecond delay for every destination.

  • I've reconsidered my view of Anker being a quality brand. I bought a USB C hub of their's that was supposed to provide 100W power delivery, but it couldn't keep a 65W Dell laptop happy. So, I powered the Dell separately and still used the hub. After a while the display port started to cut out.

    I've also bought a USB C PD cable of their's that was supposed to support 100W power delivery. With my 85W MacBook I noticed that the cable was starting to get hard (non-bendy) spots in it. Soon after my MacBook would report being unplugged when I did anything that would draw significant power.

    Ok, so I go over to Amazon and start looking at reviews that are 2 or 3 stars and holy shit. I got the distinct feeling that these were the real reviews. They're not good.

  • Well, I submitted a "support" request:

    For whatever it's worth - I'm disappointed to see that XXX is pushing for its customers to download Chrome rather than ensure that their website supports proper web standards. A website that supports web standards will work well on all browsers and will save you from trying to pressure your customers into changing their preferred browser.

    Thank you for your time (and, this is my personal opinion, not the opinion of the organization I'm here supporting).

    NotAnArdvark

  • If you're strictly doing backup you could checkout Hetzner's "Storage box" (or something like that name). For something more S3-like I like StorJ, but, that might be a lateral move price-wise from Backblaze, I'm not sure.

  • I really enjoyed reading this, thank you.

    I'd be interested in reading more about the benefits of using an atomic distro, if you were looking for ideas on things to write about. I imagine it must make system upgrades easier but what about replicating your setup elsewhere? Like if I was doing some development and now I need to throw some serious hardware at the problem, could I just backup all my Flatpaks some configs, and spin up my desktop on a cloud VM?

    I'm pretty sure that's what Nix is all about, but the learning curve seems steep.

  • Yes! What is with that? We're almost assured a terrible wildfire and growing season at this point and everyone is gushing about how nice it is. I mentioned at a coffee shop that I wouldn't mind snow for some snowshoeing or skiing and the look I got was like I had smeared shit on myself. Well they enjoy not shoveling the walk or need to brush snow off their car.

    I thought mentioning farmers and crops would back me up, but no. You know those farmers, always complaining.. 🙄

  • I'm not sure I experience exactly what you describe - I'd describe what I hear as a radio just barely audible in the background. I only experience it when I'm about to fall asleep or supposed to be getting up.

    Ten or so years ago after a really long day of school I flopped down in bed and noticed it and I made a conscious decision to listen rather than move. Ever since it happens a couple times a month now. I've never found it concerning and it's maybe almost comforting, like, "oh, that thing is back."

    It's exactly like a soft radio where you're only catching bits and pieces of what's being said. Sometimes I recognize unusual words I heard from that day, the voices are distinct and can be female or male. I can't decide if I can influence what's being said or not. I do think the harder I pay attention the more coherent things start to sound.

    My feeling is that bits of what I've heard throughout the day, or maybe longer, are getting played back to me. But I've never recognized any of the voices of heard anything said that I could identify as verbatim from the day.

  • If you are reading this, and you live in an area that got hit with forest fire smoke last year, prepare now and get supplies to build a DIY HEPA filter setup for your home with guides like this:

    https://deohs.washington.edu/edge/blog/how-make-box-fan-filter-clean-indoor-air-smoke

    I’ve already got my set up ready because I had to last year.

    You've inspired me to make one for my parents. It really is cheap and easy to do, you just need the foresight to do it because box fans get hard to find in the summer.

  • I really appreciate this, thank you. I think I had confused myself by playing with 'u16' and 'u8' and somehow coming to the conclusion that they were matching the right side of a 32-bit string. (Which may still be true, but, I'm just masking u32s now).

    This is what I ended up with, which is working the way I'd expect:

     
        
    tc filter add dev wlan0 protocol ip parent 1: prio 1 u32 \
        match u32 0x30d6 0x0000ffff at -16 \
        match u32 0xc92d1905 0xffffffff at -12 flowid 1:20
    
    
      

    This sends Ethernet frames destined for 30:d6:c9:2d:19:05 to flow 1:20, and it doesn't seem to match a second device I tested. So, all good! Thank you again.