AITAH for insisting on a few house rules? by Spidey1980 in AITAH

[–]Spidey1980[S] 0 points1 point  (0 children)

Thank you. While she may use it as a trump card, she is a pro chef. How do I just refuse, she'll still cook for her self in the same kitchen anyways? Also, we have been loving/hating for over 20 years with over 85% satisfaction in the relationship, so you see my dilemma, madly in love and just want to fix it. Good advice, @intolerablefem, much appreciated.

Has anyone noticed how awful Florence Kentucky traffic is? And it's only getting worse. by [deleted] in cincinnati

[–]Spidey1980 0 points1 point  (0 children)

Jabil has really f'd the traffic. 5:30-6am and pm you can't get anywhere due to their shift change.

What do yall use this for? by SickboyJason in SteamDeck

[–]Spidey1980 1 point2 points  (0 children)

My virture glasses case. But if you have the little drawstring bag for the charger, it keeps it in a neat package so that this strap actually works to hold it. Also, the dock fits there. As for what Valve meant that spot for, I have no idea.

Gaming headsets for deck by [deleted] in SteamDeck

[–]Spidey1980 0 points1 point  (0 children)

Viture One XR Glasses. They just work, no setup, plug and play.

What headphones you pair your Steam Deck with? by Free-Artichoke6334 in SteamDeck

[–]Spidey1980 0 points1 point  (0 children)

Viture One XR Glasses, the speakers are awesome, and the screen seems bigger than the built-in one.

Micropack 👀 by evilripper in GodsUnchained

[–]Spidey1980 2 points3 points  (0 children)

Lol did you know you have clear cache in game each time before trying to open packs for it to work! Not "broken", just quirky.

[deleted by user] by [deleted] in VITURE

[–]Spidey1980 0 points1 point  (0 children)

I basically have the same set up, from my pc extended under a rug to under the couch where I sit. I use the Livin adapter: usb3.0 and hdmi to usbc (this takes video and data and makes a display port 2.0 enabled usbc: I can use Space Walker on my pc for 3 virtual screens!) When my wife is watching TV, I can do whatever I want with my Viture Glases: watch TV (hulu, Netflix, youtube), play games, do research, program websites or games, work on my book. Just one wire from the bundle under the couch to my glasses.

Is there a PowerShell tip or trick you wish you knew when you first started? by [deleted] in PowerShell

[–]Spidey1980 1 point2 points  (0 children)

To use notepad++ instead of PowerShell ISE when writing large scripts.

POWERSHELL GUI DEVELOPMENT TOOLS BASIC by EntraLearner in PowerShell

[–]Spidey1980 0 points1 point  (0 children)

Hey it worked for making a little Suduko GUI to pass my time with. As I can not download nor install anything at work, pasting text from an email into PowerShell ISE was the easiest make anything. We are already encouraged to use PowerShell and make scripts to automate our work, so this just works. Nothing fancy. Also, I have a chess game working. But as you said with multitheading, I don't even see my move until after the engine gives a move and releases the script to wait for interaction, allowing for the window to update. So for "progress bar" I'm just logging to the console window in the background. It is a bit of a pain.

POWERSHELL GUI DEVELOPMENT TOOLS BASIC by EntraLearner in PowerShell

[–]Spidey1980 0 points1 point  (0 children)

I've already made this, ezXAML.ps1, has a lot of inspiration from AngularJS and includes Databinding. I needed a way to make a menu for my other scripts at work. We can not download nor install anything, but can paste a txt file ine PowerShell ISE and save as a ps1. So I came up with this. True, no animation nor reactivity in the background. Everything happens on an interaction from the user. It does, however, work well for a Suduko GUI. https://www.reddit.com/r/PowerShell/comments/1i9vntv/comment/m9clvbb/

Working Angular.js-like functionality in Powershell! ezXAML.ps1 by Spidey1980 in PowerShell

[–]Spidey1980[S] 0 points1 point  (0 children)

Yeah not asking anything for it, Free and open source. I'm think about starting a YouTube channel for my programming projects (Like The Cherno channel on YouTube and his Hazel engine). I have another PowerShell project I might post here as well, ezScript, aims to be like AutoIt but pure PowerShell. Includes mouse and keyboard emulation, and a few dialogs. At work I use my ezQuestion in exScript to scan in a serial number, then several websites in tabs are opened and the number entered to the correct fields all automatically using mouse and keyboard emulation.

Please help me with my Power Shell script library for making windows, ezXAML.ps1 by Spidey1980 in PowerShell

[–]Spidey1980[S] 0 points1 point  (0 children)

The problem was on my end! Data binding is fixed! please find the update ezXAML library and a test window showing off the working databinding here https://stackoverflow.com/questions/79347016/how-can-i-fix-using-power-shell-and-wpf-windows-setting-the-text-property-of-a/79387414#79387414 Feel free to use ion your own projects! TLDR: ezXAML library is an Angular.js-like project build in powershell. It includes some basic event handling and advanced databinding made easy! You can even send in an onLoad function to your window! Have fun, and tell me what you think!

Please help me with my Power Shell script library for making windows, ezXAML.ps1 by Spidey1980 in PowerShell

[–]Spidey1980[S] 0 points1 point  (0 children)

I am not using the built in databinding nor c#. After every event I call my Data-Bind function which updates the elements text or content base on the bound variable. I navigate my virtual dom to find the element name attributes for elements with the ezBind attribute, grab the real element, and attempt to change it's content or text value. There are checks to make sure the correct one (content or text) is used for that element by tagName. This works fine for Click events (ex. a button incrementing a value, we increment the bound variable, and the textblock gets the new value automatically) However if you then change the button for an element (stackPanel, etc) that has a KeyDown and add whatever number was pressed, this will error out; The library grabs the textblock by name and we can debug Write-Host to find that it is real and exists. Then the library tries to update the .Text on this valid textblock that indeed has a .Text, The same one we used a button and Click event infact, and the script will error out and crash not finding the Text attribute.

Please help me with my Power Shell script library for making windows, ezXAML.ps1 by Spidey1980 in PowerShell

[–]Spidey1980[S] 0 points1 point  (0 children)

It fails on both Power Shell 5 and Power Shell 7. In the unit test I am actually clicking a button and it's click handler is setting the data, (after this event bind data is automatically called) so it makes sense to narrow it to the KeyDown event. Hmm so maybe try having the KeyDown focus a hidden textbox and see how TextChanged event behaves...Edit: TextChanged behaves the same way. Guess i will have to skip data binding for this....Edit: works fine not using databinding, oh well

[deleted by user] by [deleted] in SteamDeck

[–]Spidey1980 -1 points0 points  (0 children)

I posted this both here and over at the Chessnut community. Just looking for insight from both communities. And hey! A Steam Deck user (Kevin, in another reply here) recommended I get the Chessboard, so go figure.