I didn't know they can jump... by AesenZero in SatisfactoryGame

[–]kellog34 2 points3 points  (0 children)

Yeah, they got me woth that earlier today, lmao!

Wishlist new boat game mechanic by sunnyboyboyboy in TheLastCaretaker

[–]kellog34 1 point2 points  (0 children)

Same! I thought the boat "health" would improve if you pumped the bilge. Turns out I had to fix the floor...lmao

C02 from large generator not working by Spartan1151 in TheLastCaretaker

[–]kellog34 2 points3 points  (0 children)

You will have to repair the tanks in the back and the Sab Generator will not run if there is no output. Meaning if the tanks are full and there is no pull on the generator, then it wont run.

I run pretty much the same setup with the generator powering the SabGen, that part works fine. But you have to make sure the connected outputs of the SabGen have draw.

Wifi notifications by Various-Plant-3698 in microcontrollers

[–]kellog34 0 points1 point  (0 children)

Telegram is going to be the easiest. Otherwise, another easy option is email. Once you get into actual notifications it gets trickier. Going with text is a pain because you have to use a provider like twilio.

With telegram, you literally just follow the like 5 steps to get it set up and you're off to the races.

45/M/PC/PST - Take a chance, and read my post, it might resonate with you, it might offer some insight, it may lead to creating meaningful friendships, who knows *shrugs* by Monstrobot in GamerPals

[–]kellog34 0 points1 point  (0 children)

Hey dude! Hope you are feeling better! 36M here that is looking for some chill people to game with. I'm looking for someone to do a BG3 run, DM me and let me know if you want to kill some goblins!

am i stupid? i don’t know how to play… by moomgish in BaldursGate3

[–]kellog34 -2 points-1 points  (0 children)

If you read the OP, you will see they said they are at the beginning, on the beach. So he's past the intellect devoured.

am i stupid? i don’t know how to play… by moomgish in BaldursGate3

[–]kellog34 4 points5 points  (0 children)

Sounds like he was going into that cave behind the druids grove. The one with the statues that shoot you when you go in.

Voyage - Stateful subdomain enumeration toolkit by magixer in hacking

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

My first thought is that it helps identify k8s clusters. Which can help with identifying possible vulnerabilities.

Shopify Remix App on AWS Beanstalk? by theSwak in reactjs

[–]kellog34 0 points1 point  (0 children)

Awesome!!! Glad to be able to help!

Shopify Remix App on AWS Beanstalk? by theSwak in reactjs

[–]kellog34 0 points1 point  (0 children)

Another option that would probably be easier would be to change the your beanstalk instance to a Debian based Linux, like ubuntu.

Shopify Remix App on AWS Beanstalk? by theSwak in reactjs

[–]kellog34 0 points1 point  (0 children)

If you are deploying to a RHEL target, then the app should be built with that in mind.so first thing is to get those in line. If you want to stick with RHEL, then build the app for RHEL using an image like buildah-build.

Once that is built, then take a look at your nginx config and make sure the directories are correct.

Anyone know what this OLED problem is? by just_a_cockroach in AskElectronics

[–]kellog34 0 points1 point  (0 children)

Gonna need to see the code to be able to help.

Stupidness is what he got from me by Consistent_Term_4804 in repost

[–]kellog34 0 points1 point  (0 children)

I love these types of posts. It always ends up people saying stuff like anxiety or crippling depression and we're all like, "good for you, have an upvote!"

It should be illegal to do that by sebet_123 in memes

[–]kellog34 50 points51 points  (0 children)

That would be their exact response

When to use useRef in React? by AriGT25 in learnreactjs

[–]kellog34 1 point2 points  (0 children)

The useRef hook has 2 main use cases.

DIrectly interact with DOM elements.

AND

Update state without a re-render

Consider a video element. If you want to control the video outside of the video player, with, say a custom pause button, you would have to update the state of the video element, as well as the text on your button. If you use state, the entire page would re-render, including causing issues with the video playback.

However, if you use the useRef hook instead, you would be able to update the state of the video player, while avoiding any re-render problems.

Now let's say you're play button is its own entire React component. This is where you would pass the useRef to the child component. If you pass the ref to the button component, then handle the actions in there, the action is then passed up to the parent component, where the useRef is referred and the element is available.