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

help-circle


  • Depends on the features.

    Git has some counterintuitive commands for some commands you may want to do when you want to quickly do something. Being able to click a button and have the IDE remember the syntax for you is nice.

    Some IDEs have extra non-native Git features like have inlined “git blame” outputs as you edit (easily see a commit message per-line, see who changed what, etc.), better diff/merge tooling (JetBrain’s merge tool comes to mind), being able to revert parts of the file instead of the whole file, etc.

    the git integration in vscode which I discarded after few attempts to use

    I’m going to be honest, I don’t really like VS Code’s Git integration either. I find it clunky and opinionated with shitty opinions.


  • While I agree with most of what you’re saying, it’s also stupid to blame Microsoft for breaking your computer if you forcefully uninstall the Windows store, despite the fact that it’s needed for parts of certain updates.

    A lot of the “debloaters” have no fucking idea what they’re actually doing and are uninstalling/disabling critical parts of the OS so the task manager shows less RAM usage (because God forbid you actually use your damn RAM).






  • micka190@lemmy.worldtoLinux@lemmy.mlNixOS forked
    link
    fedilink
    arrow-up
    5
    ·
    edit-2
    4 months ago

    Nothing concrete from what I can tell. Becoming a hard fork is relatively recent though (mid-November of last year, roughly).

    As a side note, I understand why Gitea and Forgejo went for a “copy GitHub Actions” approach to their CI, but man do I wish more self-hosted repo software tried to copy Drone/Woodpecker instead. Iterative containers in the pipeline is such a smoother build experience, and it kind of sucks that Gitness is the only one doing it (that I know of).





  • It’s not that we want to ignore warnings.

    Speak for yourself, I promise you the team I work on actively ignores warnings and doesn’t even want to solve them as they pop-up. Being told you can’t compare doubles (because of precision loss) and ignoring it is on the developer and isn’t even that hard to fix. Most of our warnings come from shit like that.

    Like, I get it. It’s probably not worth it to hunt down every “unused variable” warning (especially in an API where we used to have a variable for it and we don’t use it anymore and we don’t want to break the existing API so we just leave it there), but there’s things that are just trivial to fix when you’re working on code that’s right next to it.


  • Oh yeah, I’m genuinely about to hand-in my resignation as soon as I find another job over this kind of shit. I keep being told that the business is really trying to clean-up its act when it comes to coding practices, but they keep putting some of the most incompetent people I’ve ever worked with in charge of shit (because they do promotions based on years of experience instead of actual actionable experience). It’s awful.


  • First thing I do on my projects is enable warnings as errors and increase my warning levels when reasonable.

    Unfortunately, the same can’t be said on the projects I work on at work. Drives me crazy that we get likes 300+ warnings whenever we run the app and that we can’t change it because "they’re just warnings*.






  • micka190@lemmy.worldtoSelfhosted@lemmy.worldWhy docker
    link
    fedilink
    English
    arrow-up
    2
    ·
    edit-2
    8 months ago

    I find it makes my life easier, personally, because I can set up and tear down environments I’m playing with easily.

    Same here. I self-host a bunch of dev tools for my personal toy projects, and I decided to migrate from Drone CI to Woodpecker CI this week. Didn’t have to worry about uninstalling anything, learning what commands I need to start/stop/restart Woodpecker properly, etc. I just commented-out my Drone CI/Runner services from my docker-compose file, added the Woodpecker stuff, pointed it to my Gitea variables and ran docker compose up -d.

    If my server ever crashes, I can just copy it over and start from scratch.