• 2 Posts
  • 236 Comments
Joined 2 years ago
cake
Cake day: December 23rd, 2023

help-circle







  • I think it’s possible that Robert Trump, Donald Trump’s younger brother, was an early victim of COVID. He died suddenly and was “very ill” but no specific cause was ever mentioned AFAIK. I think this was covered up because it was politically inconvenient for his brother.

    I have nothing to really base it on except the timing and reaction was suspect.





  • I’ve been getting annoying amdgpu crashes every now an then. I’ve tried all the various BIOS and kernel params but so far nothing has worked. Next step is rolling back a kernel version, at least that’s what I’ve gathered from all the threads about it. It’s bothersome but not frequent enough to be a real pain.

    (This is an amd framework 13 with fedora 42 / wayland)


  • MoonMelon@lemmy.mltoScience Memes@mander.xyzPlant Slurs
    link
    fedilink
    English
    arrow-up
    6
    ·
    4 months ago

    I don’t know if you’re opposed to herbicide, but triclopyr will kill it. You can get triclopyr salt (water based) and apply it to the freshly cut stump surface (within moments of cutting), or triclopyr ester (oil based) and apply it to the outside of the plant close to the base, no cutting required. Both of these will kill the root. Otherwise just keep cutting and eventually you will exhaust the root.

    Not sure about elsewhere, but in the USA you can typically buy the water-based triclopyr salt in a small bottle with a brush attached to the cap. This is in pretty much any garden store. Even though you have to cut the plant first I think this is the best form for just a few plants.


  • I don’t know if it’s still a thing in the digital age, but having even just a few seconds of dead air back in the analogue broadcast days could mean that “silence detectors” all over the country would start going off and radio engineers everywhere would think there was some kind of problem with their station. So there had to be talking, music, something at pretty much all times.

    If you wanted intentional silence you could play comfort noise in the background.




  • Used it a ton in the art departments of vfx and game dev. Im talking about the tools that make assets, not the game engine or a runtime scripting language. More like the stuff launching and running in Maya, or Houdini, or Substance, etc.

    Most of this is already highly OO, and there’s a lot of interaction with C++. Python is the perfect language for this. There’s a lot of rapid interation and gluing many different services and data together. Also you’re waiting on file IO or some massive scene graph update all the time so having the tools be slightly slower doesn’t matter. Also, at least in vfx, there’s mixed Linux/Windows/Mac and it’s great for that. ALSO art teams (unlike the programming team) have people who may not be super technical, and Python let’s them write tools and scripts more easily. They don’t even have to understand OO but you can say “copy this class template and implement these two methods” and they can write tools that “work” in the pipeline.

    It’s honestly a godsend. Before the industry settled on Python, every program had its own proprietary scripting language and some were quite limited. Their C++ APIs are all different, of course. So now everyone just ships with a Python interpreter, you manage launching each app so you can control PYTHONPATH and you’re golden.