• 0 Posts
  • 15 Comments
Joined 6 months ago
cake
Cake day: May 20th, 2024

help-circle
  • Just do in what I do. Don’t join meetings most of the time. That way when you do it is noteworthy to the meeting stakeholder.

    Yeah sure my manglers through the years try to have ‘the talk’ but after awhile of training them via sheer apathy they shut the fuck up.

    I solve complex problems, get my tasks done, I’m independent and I stay busy because I’ll get bored. Most meetings could just be an email. There’s no real collaboration except managers or scrum masters asking what your blockers are but not actually doing anything about it. If I think the meeting will be a waste of my time I just don’t show up.







  • I’m not surprised by the rubber stamped warrant. Cop shops are known to shop for judges that will just stamp off. I’m sure they didn’t mention that it was a MRI business but the odor of weed even combined with high energy usage shouldn’t be enough for a raid IMO. There should be some other evidence, especially in LA where it smells like weed pretty much anywhere.

    I’m curious how this will go. I assume LA will settle out of court because they don’t want a precedent set that they actually going to be responsible for private property damage during raids.




  • I saw the dumb defender say he was conflating immigrant and migrant but I replayed that part a dozen times. It really, really sounds like an ‘N’ as the first letter. It definitely was not him beginning to pronounce ‘immgr’. You can plainly hear it.

    But even if we gave him the benefit of the doubt, the fact that Megyn Kelly completely ignored it and the fact that he didn’t apologize immediately and explain it says volumes about both of them. Why didn’t Kelly even say anything? Maybe she’s so used to hearing it in her circles, maybe even saying it, that it didn’t even register as something unusual to her and she didn’t notice it.





  • It’s also difficult for developers to publish to Linux because of the wide variety of different Linux systems.

    I disagree there. The issue is that in Windows people bring over their own version of libraries they compiled on (the millions of .dll files) and you can even look in your Uninstall Apps settings where there’s a bunch of MS specific runtime bundles to see that’s even an issue in the MS ecosystem.

    In Linux, developers have relied on the library versions just being there. It is, I’d argue, the most compelling reason package managers basically had to come into existence. On the flip-side this can cause issues where there is some version on the system by the package manager that replaces another version. And something not a part of that package management system isn’t a part of those dependency checks and if they don’t put the libraries with the binaries…well it is just luck if you have them all or if other versions can support those library calls in the same way still.

    In Linux that is all those .so’s in /var/lib and stuff.

    You don’t really see many proprietary things using package managers and those that do are packaged by someone else and are in some sort of repo that isn’t part of the vanilla install because of legal caution.

    Companies that made their money on porting games to Linux prior to Proton basically causing them to shutter Linux porting would put their .so’s in with the game bundle themselves, just like you see happening in Windows when .dll’s are inside the actual program’s folders.

    However, the more that this sort of dependency management has become abstracted by development suites that take care of this for the developers, the less they understand about it.

    Flatpaks actually take care of this and it is one reason they are so popular. They figure out (well that’s a simplification) those library dependencies, sandbox the apps with those dependencies so the library paths don’t interfere with other flatpaks or the base system itself. People complain about this as a con because “the download is BIGGER” even though flatpak doesn’t install the same runtimes over and over again, so once they are there, the download may still be bigger but the installed storage isn’t.

    Anyway, yes Linus Torvalds complained about the “Linux fragmentation” issue but it was about DE’s not the state of the development ecosystem itself as I recall, though the rant is very old, so maybe I don’t remember all of it.

    Wider application support would be a start.

    Sure, but that’s not a Linux problem, that’s a developer problem. Linux supports application development just fine. It is a kernel and the surrounding ecosystem is the operating system after all. It is developers that don’t support it. That isn’t really something Linux in and of itself can effectively solve. Users have to increase and developers supporting applications for Linux will also increase. The classic Linux Chicken and the Egg problem but it is capitalism and that’s just going to be how it has to work.