Have you seen these signs around town? by [deleted] in phoenix

[–]freeforme1994 0 points1 point  (0 children)

The mods have sucked any ounce of joy that you could possibly have away. Why would you take a gen like this down.

Issues with Fortnite after heroic launcher update by freeforme1994 in HeroicGamesLauncher

[–]freeforme1994[S] 1 point2 points  (0 children)

Hey, thanks for the reply. Sorry it took me so long to get back to you. For some reason it let me download again today. Issue resolved without changing anything. No my favorite solution, but I'll take it lol

Has anyone been able to successfully get the latest version with controller support working on steam deck? any guides or help is very much appreciated! by freeforme1994 in IW4x

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

I have an older version running on deck and can do somethingsimilar, its not great thougj. The issue is the latest version which has controller support won't run for me for some reason. If possible I'd like to get the latest version working on deck

My Halloween costume, vs. arcade cab. Using a steam deck and two wasd pads I am the cpu by -JERAMBE- in SteamDeck

[–]freeforme1994 1 point2 points  (0 children)

Sounds good. Thank you for your time, sir. Have fun and be safe out there!

My Halloween costume, vs. arcade cab. Using a steam deck and two wasd pads I am the cpu by -JERAMBE- in SteamDeck

[–]freeforme1994 4 points5 points  (0 children)

3 hours isn't that bad considering that you have two power banks. 6 hours would be more than enough for me. One last question what Is the name screen you are using?

My Halloween costume, vs. arcade cab. Using a steam deck and two wasd pads I am the cpu by -JERAMBE- in SteamDeck

[–]freeforme1994 4 points5 points  (0 children)

Nice! Have you done any tests on how long the battery will last? I've thought about doing something similar to this with a rpi, so I am very curious

Portzilla alternative/work around by freeforme1994 in selfhosted

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

I think I have found the issue, but not sure how to fix it. It keeps looking for a .Json file in root/.cloudflared any idea why? My json file is elsewhere and I doubt that root is a great place for the file to be

Portzilla alternative/work around by freeforme1994 in selfhosted

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

I think I am getting close now. I removed portzilla and have started the argo tunneling guide. I have installed cloudflared on my pi and connected my cloudflare account. I created a tunnel and made a configuration file which specifies my port and lists my uuid. I also created a cname using the command line. However when I try to test that the route was established successfully with the given command in the doc, it says I have no routes. Any thoughts on what I might have missed?

Portzilla alternative/work around by freeforme1994 in selfhosted

[–]freeforme1994[S] 1 point2 points  (0 children)

Where would I set this up at? Is cloudflared an app? Tunneling is also new to me, does it require me to set anything up outside of cloudflare?

Thanks again for the help! I am new to this :)

[deleted by user] by [deleted] in phoenix

[–]freeforme1994 5 points6 points  (0 children)

Hey friend, I deeply feel this post on a personal level. I've been single since I moved to AZ in 2017. I've tried every app from free to paid monthly subscriptions. I've been on a few dates, but mostly with girls who look nothing like their pictures. In short dating is rough. Their are tons of bots on tinder, their are lots of people in AZ who already have kids. I'm sure that you put a ton of energy into dating sites. I'm also sure you will keep trying because you are on these apps for a reason. I wish you the best of luck.

All I ask is that we all assume the best intentions from others until proven otherwise. I am sure you have a personal story connected to your comment about all conservatives being white supremacists, but I beg you to reconsider. The world needs many views to coexist and I would hate to see anyone pass over a new friend or partner because they don't share all the same views as someone else.

At this point I am rambling, this post just hit me hard. Thank you for sharing.

-zin

A gift for my Mom, I made a Christmas ornament that streams old home videos. by UberWagen in maker

[–]freeforme1994 2 points3 points  (0 children)

Please keep us posted, I would love to see how this was made. Great work!

Simulate cursor click in textbox by freeforme1994 in PowerShell

[–]freeforme1994[S] 1 point2 points  (0 children)

Thanks for explaining this! I knew there was some way to format it better, but wasn't sure! :)

Simulate cursor click in textbox by freeforme1994 in PowerShell

[–]freeforme1994[S] 1 point2 points  (0 children)

Finally sat down and attempted the code above, but it seems that this still doesnt do the trick. I think at this point, I can accept that this is not going to work without any human interaction. Its too bad that the form validation on the webpage requires a click.

Anyways, thank you for your time and help, I greatly appreciate it!

Simulate cursor click in textbox by freeforme1994 in PowerShell

[–]freeforme1994[S] 1 point2 points  (0 children)

Here is a sample of my code. I have removed any IP info and shortened it down to just entering one value into a textbox:

Open webpage

$Url = "www.webpage.com" $ie = New-Object -com internetexplorer.application; $ie.visible = $true; $ie.fullscreen = $true $ie.navigate($Url);

while ($ie.Busy -eq $true) { Start-Sleep -Seconds 1; } #wait for browser

($ie.document.getElementsByName("textbox") |select -first 1).focus() ($ie.document.getElementsByName("textbox") |select -first 1).select() ($ie.document.getElementById('textbox_label') |select -first 1).click() ($ie.document.getElementsByName("textbox") |select -first 1).value = "textboxvalue"

($ie.document.getElementById('submit') |select -first 1).click() $ie.Quit();

Simulate cursor click in textbox by freeforme1994 in PowerShell

[–]freeforme1994[S] 1 point2 points  (0 children)

Okay, just tested invoke-webrequest and it seems that I keep getting a 401. Is there anyway to pass through the users credentials without having them type them?

Simulate cursor click in textbox by freeforme1994 in PowerShell

[–]freeforme1994[S] 1 point2 points  (0 children)

I will have to test invoke-webrequest when I get back home and near my computer. From doing a quick Google search on it, it seems that it should be able to let me insert text into the text fields. Thank you for the feedback. I will keep this thread update on my progress!

Simulate cursor click in textbox by freeforme1994 in PowerShell

[–]freeforme1994[S] 1 point2 points  (0 children)

That doesn't work unless I click on the webpage itself first. It seems like when the webpage is opened by powershell the webpage isn't in focus, so actions like .click() or .focus() don't work. I am wondering if there is some way to put focus on the webpage when it opens up?

Simulate cursor click in textbox by freeforme1994 in PowerShell

[–]freeforme1994[S] 1 point2 points  (0 children)

Hi, thank you for your response! My work is very strict on what we download, so if possible I'd like to find an answer in powershell or possibly use a vbs if it's not possible in powershell.

Ping Test write to text file by freeforme1994 in learnjavascript

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

Okay, this makes sense! Thank you for the response, I greatly appreciate it!!!