• 1 Post
  • 15 Comments
Joined 1 year ago
cake
Cake day: June 15th, 2023

help-circle

  • regex101.com has a convenient searchable cheat sheet for all the somewhat odd but powerful functions like negative lookbehind/lookahead with a brief explanation of each, a regex pattern input with checkable boxes that helps you get down single replacements vs global replacements, a large input that lets you dump text to test against the pattern, an explanation on the right of what each symbol is trying to match, and the left side lets you switch between the different flavors to see some of the variants between languages/standards. I still have a lot to learn before I’ll consider it mastered, but I have enough common stuff memorized now that it works great for me!






  • seth@lemmy.worldtoOpen Source@lemmy.mlNew major Thunderbird release 128
    link
    fedilink
    arrow-up
    8
    arrow-down
    3
    ·
    edit-2
    2 months ago

    It’s Thunderbird but with bugfixes and additional features. Bugfixes I like are being able to sort by attachment and minimize to my tray. Features I like are regex searching/filtering (including encrypted messages), opening to the same folder every time, being able to change message headers, being able to directly open links in messages I’m writing, maybe a few more I’m forgetting. Regex searching is the top used additional feature for me.

    Since BB isn’t a hard fork of TB, it stays up to date with bugfixes and features that new TB versions include, and they often restore existing features that new TB releases break or remove (at least 4 in the last major release v115), and are open about breaking features in new versions (like IMAP folder corruption in both TB and BB v128.0 that they say they hope will be fixed in v128.3.0).




  • Laying people off instead of offering to move them to the now-more-important projects has to be one of the dumbest management moves that tech companies repeatedly do. These are people already trained on all the policies and procedures and tooling and “culture” specific to your company.

    It’s going to be more expensive to hire and train new people when the dumdums in upper management finally figure out the mistakes they made that got them to a point where they decided they need to cut jobs and projects, and the ramp-up time before you actually start seeing progress on those priorities is going to be seriously lengthened. Of course they won’t acknowledge it was their fault in the first place, and again the heads roll on the wrong end of the corporate ladder.





  • I think it’s a good first language to learn. Because it’s a lower level language than most of the popular ones these days, you will learn a lot of interesting concepts and problems you wouldn’t otherwise get or even need for higher level stuff - like memory management, allocation, garbage collection and cleanup, and pointer references - but which give you a better understanding and appreciation for what’s in the black box.

    But you also learn a lot of transferable concepts like typing, mutability, objects and object oriented design, polymorphism, etc. And there are still a ton of jobs where C++ knowledge is required or at least useful.

    I have barely touched it over the years since first using it, but patterns and approaches I learned in C++ have come in handy for me a lot when troubleshooting and when reading other people’s code, and being able to recognize who is going to be a helpful person to talk to when I run into problems I can’t quickly figure out.