Sounds like there were conversation laws put in place at some point. Those laws do a great job at allowing nature to rebalance populations when people go too far with hunting.
Same, my dad is a hunter and I believe the person above is confusing trophy hunters with just hunters. While my dad hunts, I don't believe I could do the same. It's just not in me, but I have all due respect for them. Many revere nature, love animals, and hunting is an ancestral activity that pre-dates history.
Some hunters are dicks. But that doesn't mean hunting predators is a dick move. You can hunt bears responsibly, using the meat and the rest.
It's really weird to think that predator meat is somehow different from prey meat. Food all boils down to chemistry and it all ends up the same after digestion. The only difference is the microbes involved in the process, but those don't carry on into the meat. Only prions and parasites pass into the meat, and that happens basically no matter where you are on the food chain.
This is amazing. Far better than killing them off.
I ate bear meat once and it was delicious.
I'm also looking forward to a nice tuna melt sandwich.
Your take is retarded.
So true 🤣
Yes, Satan?
Here is his acknowledgement and explanation if anyone is interested:
I feel the exact same way. I'm not just sad about it, I'm absolutely livid. These militant ass-lickers beating you up for it are the worst kinds of people. They ruin politics by shutting down discourse and bullying others to think their way. Don't listen to them.
You came to your conclusion honestly and it also happens to be correct. The DNC screwed us out of having a choice by closing the shutters and locking Biden away from us, letting him sweep each state in the primaries. If they instead allowed debates and let us see Joe as he is today up front we would have demanded new choices. Joe broke his promise of being a transitional president, and along with his enablers screwed us out of the chance to make the choice ourselves.
I won't even hide it, I dislike Harris as much as I dislike Clinton. The only thing that could possibly sway me is an epic VP pick. Otherwise I'm going back to third party voting like I've done before Trump. I'm a registered Democrat but after all this BS I'm going independent. The DNC can rot for their crimes.
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.
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:
- $Window = [System.Windows.Window]::new()
- Then show the window:
- $Window.ShowDialog() | Out-Null
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.
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.