discusseded

joined 1 year ago
[–] [email protected] -1 points 1 month ago

Don't care about down votes, but at least have the guts to support your decision. I'm putting my thoughts out there, you can refute them just the same.

[–] [email protected] -3 points 1 month ago (2 children)

So he and some friends found roadkill and thought it would be funny to put it in a park to give the appearance that a NY bicyclist ran it over and left it? That's supposed to make me not vote for the person?

To me that says he has a sense of humor, strange as it may be. But how is that supposed to turn me off compared to grabbing women by the pussy or approaching young women from behind and smelling their hair and pecking at them publicly? I'll take dark humor over fucked up shit any day.

Come back when you have a video of RFK doing anything as grizzly as the two formerly leading candidates. Brain worms are fairly common and only support his claim that he's an avid outdoorsman. Again, how is that something to disqualify a candidate, when the next two are both literally and publicly out of their minds?

[–] [email protected] 1 points 1 month ago (5 children)

Ok that just sounds whacky and made up. At best a mischaracterization of some obscure situation.

[–] [email protected] -3 points 1 month ago (1 children)

He's a Kennedy, I'm sure he's been around a great number of people. But of all the interviews I've seen, both before and after his intention to run for president, I never heard him refer to those people as his friends. He had rational reasons for his relationship as far as Epstein goes. I don't have any reason to believe he was a child rapist.

As far as the other two, all I can say is that famous people tend to talk to other famous people at parties. It doesn't mean RFK approves of their behavior or character. If you have evidence of the contrary I'm all ears. Cherry picked sounds bytes don't impress me so you don't have to bother with that.

Also I'm not saying he's the pinnacle of greatness. He only had to top Trump and Biden, and that's not hard to do this election. There were other Democrats I would have gladly voted for but the DNC and Biden didn't give me the chance.

[–] [email protected] 5 points 1 month ago (4 children)

I don't see how that could be possible, but if you can explain I'll keep an open mind.

[–] [email protected] 7 points 1 month ago (17 children)

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.

[–] [email protected] 16 points 2 months ago

No representation without taxation.

[–] [email protected] 0 points 2 months ago (1 children)

Pfft, your depth of insight could be scratched off with a fingernail.

It's every person and institution that shielded the voters from the reality of Biden's mental decline who should be blamed. These enablers ought to be charged with crimes against the US for election interference.

We could have had a real primary and let voters decide, now we're stuck with a convention nomination process that's out of our hands.

Fuck the DNC.

[–] [email protected] 2 points 3 months ago* (last edited 3 months ago)

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
[–] [email protected] 2 points 3 months ago

I appreciate the feedback. For the Linux side it's for personal projects and learning opportunities so starting with something familiar and growing from there is my goal.

I dabble in C and C++ so cli isn't out of the question for me. But .NET is my comfort zone, and I like the rapid tooling that PS offers.

I have multiple reasons to dig into Python so really I just need to get on with it.

[–] [email protected] 1 points 3 months ago (4 children)

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.

view more: ‹ prev next ›