• 0 Posts
  • 20 Comments
Joined 2 years ago
cake
Cake day: July 2nd, 2023

help-circle
  • Using any tool that vibrate much like a string trimmer will irritate where my spine is pinched and I’ll regret it for months. It makes me feel useless. Fusing 4 discs in my upper back or neck would almost guaranteed make me feel more useless.

    I definitely can’t pretend I’m young anymore. It isn’t just pain, and when it is pain it’s not the worst pain. It makes me unable to feel my arm. I had to get an epidural of steroids to get the inflammation down to get feeling back, and I seem to be at least mildly allergic to that .


  • A synthwave-inspired full-torso bust composition featuring Sappho, Athena, and Medusa. The sculptures should maintain their classical elegance but be illuminated with neon lighting in shades of pink, purple, and blue. Their marble-like surfaces should subtly reflect the vibrant neon hues. Sappho should have a serene expression, Athena should appear regal with a Corinthian helmet and armor, and Medusa should have striking, snake-like hair. The background should feature a retro-futuristic synthwave aesthetic with grid lines, a neon sun, and a cyberpunk cityscape in the distance. The composition should be balanced and artistic in a 16:9 aspect ratio, blending classical art with 80s cyberpunk energy.
    
    A classical-style full-torso bust composition featuring Sappho, Athena, and Medusa in a refined and elegant style. Each sculpture should depict finely detailed features, intricate hairstyles, and draped clothing authentic to their respective Greek representations. Sappho should have a serene and contemplative expression, wearing a flowing Greek chiton. Athena should appear regal with a warrior’s composure, possibly wearing a Corinthian helmet and armor. Medusa should have a striking yet dignified presence, with wavy, snake-like hair that appears frozen in marble. The material should resemble smooth, white marble with subtle aging for authenticity. The busts should extend down to the waist, capturing full torso details, and be arranged harmoniously in a 16:9 composition, creating a balanced and artistic display.
    


  • I get it.

    There are quite a few areas on the linux desktop that show obvious signs of too many choices and loose integration making it an unpolished experience.

    Outside of niches like online forums, people seem to think GUIs and marketing are what make something professional.

    In reality outside of individual use you really want to avoid GUIs in configuration so that you can be consistent. You shouldnt have to dig down into menus and click through lots of screens to do comparisons or set something up. Thats really where Microsoft’s ecosystem is weakest right now. WinRM and powershell remoting lack polish in the same way wifi or bluetooth management in the linux desktop does

    You cant fully setup winrm with gpo, for example listener addresses get bound the first time its enabled with gpo and then its just stuck at that. If the system has it’s ip changed you have to disable the gpo to make any changes and when you get it fixed it reverts when the policy is applied again

    Microsoft only seems to care about how things will be managed in their cloud now and all products for managing things locally are showing some rot. Sccm -> mecm -> mem is terrible, theyve even ending all training for tools for on premises management. All they do is azure training and certs now.



  • thews@lemmy.worldto196@lemmy.blahaj.zonevimrule
    link
    fedilink
    arrow-up
    3
    ·
    2 years ago

    I learned them and basically never use vim.

    I use sed if i need to change things with a pattern, cat the file if i need to see the contents, use head or tail if its too much to fit on the screen.

    If I am writing code, I use a code editor. Emacs and vim can do a lot, but they can also fuck off.



  • thews@lemmy.worldtoProgrammer Humor@lemmy.mlPHP is dead?
    link
    fedilink
    arrow-up
    4
    arrow-down
    6
    ·
    2 years ago

    Easy example. Have they fixed file upload behavior yet? Do they store the entire file in memory by default instead of chunking it and storing it as it comes in?

    If not it’s like the worst memory usage of any language possible.

    If you have to go change the php.ini to adjust file upload sizes, it’s not really moving forward and is decades behind other languages.












  • I read down the list afterwards and found it was using Rust. I skimmed through the source and it is well organized, but would still take quite a while to get up to speed on.

    I saw unit and integration tests. It might be beneficial to generate or capture some data to replay to simulate the load and add debugging. I don’t know much about the abstraction layers. I did see opentelemetry, which is a project I got frustrated with on the lack of stability (fast changes on api).

    I have only dabbled with Rust to test the waters. The largest thing I’ve made was a GUI snake game, and made it portable so it could be compiled for cross platform.