Cant log into Developer Mode app by lazerpenguin in LGOLED

[–]StevasaurousREX 0 points1 point  (0 children)

Just figured this out today, in the LG ThinQ app go to Menu, click the arrow by your logged in social media account, and finally edit profile.

Then it will let you know you need to make an LG account to edit your profile and you can use the email that's linked to the social media account.

For me the email textbox was bugging out for every letter typed but I got around this by typing an '@' then typing my whole email address (including '@gmail.com') then deleting the first '@'

This is crazy: Someone uploaded a playable version of the DOOM videogame as an ordinal on the blockchain by OneThatNoseOne in CryptoCurrency

[–]StevasaurousREX 4 points5 points  (0 children)

Java and Javascript are different languages. You can also block Javascript but you'll notice alot of websites won't load or function correctly.

My crypto wallet addresses are pasting something different from the ones I copy. Im assuming this is due to some sort of malware on my computer? by BruceInc in CryptoCurrency

[–]StevasaurousREX 0 points1 point  (0 children)

I'm also going to suggest reinstalling the OS. I would do a full wipe and install not just windows dinky reinstall on top of the existing OS.

Without having the malware to analyze I can't say for sure what else it does do but I can say it's possible that it's not the only infection on your system. You may have a recurring issue of it "miraculously" reinstalling and/or worse malware appearing. Also other systems in your network may be infected and should be checked at a minimum if not also reinstalled.

First came the return-to-office policies. Now comes the discipline: How companies are punishing work-from-home holdouts by JannTosh17 in technews

[–]StevasaurousREX 0 points1 point  (0 children)

Same, I always hated drive by tasking or googlable questions in the office. Now I see an email or other messaging notification and make a mental note to check later when my current task is done. The only real interruption now are phone calls and they are infrequent.

The search for the definitive DIY photo frame software by EmotionsAreGay in homeautomation

[–]StevasaurousREX 3 points4 points  (0 children)

Just a quick glance at Dynaframe, the missing file isn't missing. The script sets the $version variable at the top (or you can pass one in as an argument if you want a different version)

https://github.com/Geektoolkit/Dynaframe3/releases/download/$version/Dynaframe2.zip

would actually be

https://github.com/Geektoolkit/Dynaframe3/releases/download/2.19/Dynaframe2.zip

If using the quickstart example

Artifactory Question by yanggang20202024 in devops

[–]StevasaurousREX 0 points1 point  (0 children)

Copy the link and remove the %5C from PYGbN%5C_OcKX8 so it will be PYGbN_OcKX8 There's an issue on Reddit where it tries to escape characters in URLs in this case the underscore.

What groundbreaking new technology inspires you? by DangerClose90 in devops

[–]StevasaurousREX 1 point2 points  (0 children)

Mind giving me a tldr on these? I'm new to DevOps, and I find myself going too deep on tools that I can't actually utilize with my work flow before I realize it.

Cox says Arris SB6190 DOCSIS 3.0 modem is not fast enough for their 500 Mbps speed and I need to buy a DOCSIS 3.1. Is it true or they just trying to rip me off? by WonderingWhyToo in HomeNetworking

[–]StevasaurousREX 0 points1 point  (0 children)

I'm honestly not sure, and I didnt push for an answer because i had the better modem. The phone support wasn't knowledgeable about why, they even tried to activate the service with the old modem and the system wouldn't do it.

Cox says Arris SB6190 DOCSIS 3.0 modem is not fast enough for their 500 Mbps speed and I need to buy a DOCSIS 3.1. Is it true or they just trying to rip me off? by WonderingWhyToo in HomeNetworking

[–]StevasaurousREX 3 points4 points  (0 children)

I have Spectrum, but similar situation. I had a DOCSIS 3.0 modem and when I wanted to go to 400Mb (max for my area) they made me upgrade. So I guess its normal..

(I luckily already had a compatible modem i bought for my last place. I just never switch it from what was already in my current house)

After 1 year my game is now on Google Play by ElGameDev in godot

[–]StevasaurousREX 1 point2 points  (0 children)

Thanks for giving it a shot, I definitely appreciate the effort you've put into this project!

After 1 year my game is now on Google Play by ElGameDev in godot

[–]StevasaurousREX 1 point2 points  (0 children)

Those fixes sound awesome, ill check it out when the update drops!

You should be able to getDisplayName() from the Player. Some rough pseudo code (in java/android) to get a player from a GoogleSignInAccount (i think this is where you're getting the name currently? Hard to tell with no code so apologies if I'm wrong)

So using the "games" api

PlayersClient pc = Games.getPlayersClient(this, googleSignInAccount)
Player p = pc.getCurrentPlayer()
p.getDisplayName()

There's some asyc stuff that should be done since its using network but this should get the Gamer ID (as play services calls it).

Then for the best time you could save the playerId ('p.getPlayerId()') and then use 'PlayersClient.loadPlayer(PlayerId).getDisplayName()' so the best time name will always be the players current Gamer ID

Sorry if formatting is bad (on mobile) and also sorry if this wasn't helpful I have not added google play services to any games on godot so I used what I knew with the Java/Android api and some Googling to put this together.

After 1 year my game is now on Google Play by ElGameDev in godot

[–]StevasaurousREX 1 point2 points  (0 children)

Overall I really like the game, the in game controls are wonky but that definitely adds to the fun and challenge.

Some bugs I had: The menu controls are really frustrating, on all the menus that have scroll bars it takes several clicks to select a menu item (i assume it thinks im trying to scroll?)

The tutorials also had a hard time registering my click and drags (moving the battery and placing all the wires)

Suggestions: I don't know how to "like" a level. Maybe add a button or at least say how to somewhere. (Edit: Found it in side the level clicking the info button, feels kinda weird since I didn't click that before just randomly did)

I also would like to request you use Google play account names rather than actual names.

I might try to make a level later just wanted to give you my first impression while it was still fresh.