• 0 Posts
  • 38 Comments
Joined 1 year ago
cake
Cake day: July 10th, 2023

help-circle

  • No worries, I really appreciate your follow-up.

    I agree with Robert’s professed view that vaccines should have enhanced safety protocols to ensure positive health outcomes. Specifically, a long term study on ingredients and so forth. This, he claims, stems from the staggering increase in child health issues in the past forty years. It makes perfect sense to want to use US health institutions to research possible causes and get to the bottom of it. I don’t trust monied interests, but I do trust the scientific method.

    However, scaremongering is wrong, and that appears to be what caused the issue. It isn’t perfectly clear that Robert directly has blood on his hands, but it does seem like the company he kept at the time has done some damage, and so he at least has something to answer for here.

    Thanks again for getting back to me on this.



  • The Democrats need an effective communicator that really connects with people.

    I’m excited for this ticket, not because I’m Minnesotan, but because the country desperately needs Waltz, on television, at least as much as MAGAs have been. His rational and relatable mind is a remedy to the years of maddening bullshit that have been blasting us lower and lower to the depths.

    I was so jaded by the Democrats and their inability to escape their ivory tower of power and even attempt to relate to me, that I was firmly resolved to vote RFK this election.

    Now they offer a glimmer of hope. Here’s hoping the tides are changing and they actually have conviction behind their normally hollow words. Biden has achieved some progressive agendas, and thankfully he released his grip to let others continue his surprising work.


  • This blog does a fairly straight-forward job on explaining the basics. For me, I learn best in an interactive 1:1 or well-constructed video, so ChatGPT was priceless. I could ask it stupid questions all day long, and after throwing some different ideas around I started to see the essential parts and just let my prior knowledge of PS, .NET, and C# WPF take it from there.

    At the end of the day, all that really matters is using the PresentationFramework assembly and creating a window:

    • Add-Type -AssemblyName PresentationFramework
    • Either use Visual Studio > WPF Project and make the UI you want. Take the XAML file and use PowerShell to get the raw content:
      • $Xaml = Get-Content -Path MainWindow.xaml -Raw
      • $SanitizedXaml = $Xaml -replace “bad syntax e.g. Foreground={x:Null}” "Foreground=“Transparent” # Certain XAML syntax is incompatible with PS XML
      • [xml]$XmlReader = [System.Xml.XmlNodeReader]::new($SanitizedXaml)
      • $Window = [Windows.Markup.XamlReader]::Load($XmlReader)
    • Or, use .NET-style syntax in PS directly:
    • Then show the window:
      • $Window.ShowDialog() | Out-Null


  • Python is always something I intend to learn but never get around to. Does it natively handle GUI for process tooling or does it require a third party? What makes PowerShell so useful to me is the native ability to create visual applications without the need to compile. I can create tools for my company that launches right out of ConfigMgr Software Center and other technicians can contribute without needing a programming background.

    At home I want to mess around with tooling for home services without having to resort to web development.


  • By far it’s the object pipeline. Having structured data makes it easy to automate workflows in a predictable way. With bash everything is a string, so everything has to be parsed. It’s tedious.

    It took about a year of steady use before I came to enjoy the syntax. It shines in a production environment with other cooks in the kitchen. I never got into the C style, I like my code human readable at a glance. It’s fine if everyone’s a sage but we have a team with a mixture of skill levels and for me PowerShell gets it right.









  • Yup, living my best life after getting married. Two kids, two cars, and a house in the suburb. I worked my ass off through my twenties and only in my mid thirties did it start to all come together.

    Why is it all so great? Wife had a windfall from her mother who died from cancer as well as from her grandparents who passed away soon after. Bittersweet, mostly bitter. It doesn’t feel right to me most days, but at least our children have a good chance to get there faster than we did. For us we don’t have to worry about retirement as long as we keep that money invested, and the world doesn’t go sideways.

    I think if childcare and college were free people could basically have the same benefit. That money can go into retirement and a mortgage instead.




  • I wanted to like it and I tried it over and over but I could not for the life of me get opensuse aeon or kalpa to work on my desktop when tumbleweed works perfectly. As soon as I installed the Nvidia drivers it went belly up and I couldn’t find help online.

    I’m still new to Linux so I’ll accept that I need more experience but I can’t help but feel like a degree in computer science is a recommended prereq for this stuff since there just doesn’t seem to be solid documentation to get you through it.

    That experience made me take microos off my server and put in proxmox instead.