• 0 Posts
  • 19 Comments
Joined 1 year ago
cake
Cake day: June 20th, 2023

help-circle


  • If it’s a private repo I don’t worry too much about forking. Ideally branches should be getting cleaned up as they get merged anyway. I don’t see a great advantage in every developer having a fork rather than just having feature/bug branches that PR for merging to main, and honestly it makes it a bit painful to cherry-pick patches from other dev branches.




  • … You know not all development is Internet connected right? I’m in embedded, so maybe it’s a bit of a siloed perspective, but most of our programs aren’t exposed to any realistic attack surfaces. Even with IoT stuff, it’s not like you need to harden your motor drivers or sensor drivers. The parts that are exposed to the network or other surfaces do need to be hardened, but I’d say 90+% of the people I’ve worked with have never had to worry about that.

    Caveat on my own example, motor drivers should not allow self damaging behavior, but that’s more of setting API or internal limits as a normal part of software design to protect from mistakes, not attacks.




  • The Adobe photography plan costs me $120 a year, and honestly includes more useful updates than not. Their AI masking upgrades the last couple years are saving me hours to days of editing time per photo session.

    $120 a year is worth maybe one hour of my free time. Even just migrating to Darktable would take me weeks or months of dedicated time to migrate my existing catalog.






  • I’m very happy with my Garmin Epix (gen 2). It’s got a nice AMOLED screen, which works better for me cause I’m honestly mostly using it indoors, and I don’t really need 50 days battery life or anything like that. 13 days on pretty high settings is plenty for me…

    The watch has its own built in GPS antennas, and works fine without a phone during activities, since I saw you should about GPS stuff elsewhere in the comments. I’m pretty sure it needs to sync data to a phone eventually though, for full functionally.

    This is probably overkill for you, and you can get one of many much cheaper options from Garmin since all you care about is heart monitoring.

    Apple watches are the only ones I know that do the full EKG thing if that’s something you’re interested in, as far as other options. If you already have an iPhone, I’ve only heard good things about the watches too. Pretty sure their adventure watch only really loses to Garmin on battery life.


    1. Setup my vimrc.
    2. Clone the project, and realize that whatever repo managing system they started using 3 years ago requires setup steps not in the README and breaks everything at the slightest touch.
    3. Build the currently relevant project in whatever build system they started using 3 years ago (CMake is quite nice).
    4. Fix my vimrc to be compliant with whatever tabbing they use.
    5. Realize that for some reason, someone made a commit in the file I’m reading that uses 3 space tabs. And worse, someone approved that PR.
    6. Make changes via vim.
    7. Debug via print because setting up gdb or JTAG on embedded systems is usually more effort than its worth.
    8. Realize it’s a timing issue and reluctantly go find the JTAG debugger.