• 4 Posts
  • 40 Comments
Joined 1 year ago
cake
Cake day: June 9th, 2023

help-circle






  • I ordered mine from http://clove.co.uk/ and they happily shipped to Canada. It has worked fine in Canada, the US, and Barbados (eSIM and physical SIM).

    I like the phone a lot, but whenever it’s talked about I’m surprised how many people feel the urge to chime in on why it wouldn’t work for them.

    I’d say my biggest gripe is lack of accessories. I paid the huge price for the official screen protector twice. They both cracked relatively quickly and there are pretty much no other options. I’m using a flexible matte-finish screen protector from Amazon now, but it scratches really easily and will slide around on the screen if I keep my phone in my back pocket.




  • I call what I’m doing “time journalling,” but that might not be the correct term. Every day I get a new note, I have a keyboard shortcut that puts in the time, and I write what I’m doing. I also have a template for meetings. I use a global shortcut to bring up this note no matter what desktop I’m in, so I always have a note taking surface an ‘F10’ away.

    Next, I have “work tracking” notes. In my example below is “LRSF 2024”. So any time I’m working on that I just link to it from my daily note and for the most part, that note just exists so I can scroll through all the work I’ve done on that project using the “Linked mentions” section.

    I also have some tags like “PersonalComputing” if it’s related to making something on my computer work, or another tag if it’s a fun/interesting story I might want to remember.

    The overhead of this system feels a bit high, but, I have been sticking with it since December or so. I’d say it has been most useful for answering questions like “What happened this day?” I have been able to find things related to work by linking to work tracking notes, but, I’m not sure how that’s going to scale as time goes on.

    Actually, a second thing I’m not sure about - I haven’t been very good about integrating information I want to keep accessible long-term in with my other notes. It used to be if I figured something out about ‘ibus’ (for example), I’d add it to some “Linux desktop” note. I’m more likely now to just let it live in my daily notes. On the one hand, I might be more likely to write things down because there isn’t the friction of going to find the right note and worrying about formatting. On the other hand, it seems likely this information will get harder to find if it all lives in date-titled notes.

    Anyway, so that’s all my “work” vault. I do something similar for a “Journalling” vault, but I’m not as happy with that setup.

    A late addition: I also like using check boxes for things I need to get back to - it’s super fast to do and lets me get back to it later. You can search for unchecked check boxes, so at my weekly review I have a saved search that shows me all the things I thought I should do. Then I either do them or move them to my to-do app. This way I know if there’s an unchecked check box in my “DailyLog” folder, it needs attention.





  • 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



  • 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.



  • 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.