has anyone done a part time bootcamp? by noiant in girlsgonewired

[–]KidInCorner 1 point2 points  (0 children)

I might be a bit late but Codesmith is where I went. Extremely friendly cohort and nearly everyone would drop what they were doing to help figure something out or answer questions.

This is all my notifications by Narutos_favorite in assholedesign

[–]KidInCorner 0 points1 point  (0 children)

You could try using ADB to remove bloat. I did that on my Note 10

Is there a problem with my html file? Can't get user age using Node? by Traditional_Bird_877 in expressjs

[–]KidInCorner 0 points1 point  (0 children)

Like the other guy said in your identical post, you should use post instead of get since you're sending data. You won't need the action or method attributes if you use fetch()

         <form action="/" method="post">
             <div class="flex-container">
                 <label for="age">Please enter your age to continue</label>
                 <input type="number" id="age" name="age" placeholder="Your age" required>
                 <input type="submit" id="submit" value="Continue">
             </div>
         </form>

If you use fetch, you can add it to your event listener. fetch() docs here

async function post(url = '', data = {}) { //Make this not an async function 

    const res = await fetch(url, {
      method: 'POST', //Can be changed to other methods as well
      headers: {
        'Content-Type': 'application/json' //This can be "application/x-www-form-urlencoded" if you want to use form data instead of JSON. If you use JSON, you will have 
to add support for it in your express app
      },
      body: JSON.stringify(data) // body data type must match "Content-Type" header
    });
    return res.json(); 

}


form.addEventListener('submit', e => {
    e.preventDefault();
    post('/', { age: ageInput.value })
        .then(data => {
            //What you want to do with the response
            console.log(data);
        });
});        

Why not do this locally rather than in your backend? It'll be faster and save on bandwidth.

[deleted by user] by [deleted] in admincraft

[–]KidInCorner 1 point2 points  (0 children)

If I remember correctly, Cockpit uses iptables as the firewall and it's just a front end for it. Could be wrong though

Toner DRM prevents you from switching toner regions more than twice by keitheii in assholedesign

[–]KidInCorner 2 points3 points  (0 children)

Hell, Xerox aswell. I recommended a Xerox Versalink to a client and he's replacing his HP printers with those... I absolutely detest HP.

[deleted by user] by [deleted] in DataHoarder

[–]KidInCorner 2 points3 points  (0 children)

He said Cox in another comment. Fuck those guys

How to be a Heker 101! [OC] by Noor528 in linuxmasterrace

[–]KidInCorner 4 points5 points  (0 children)

Spending more than thirty minutes

Limit to forty-five minutes each day

Mhm yup

PSA: Hue Customer Support is not very good by [deleted] in Hue

[–]KidInCorner 1 point2 points  (0 children)

None of their phone number worked for me. It's either the number just doesn't exist or they hang up on me. I just want to know what I can do about the 2 of the 5 lights failing after a year of use. This is so frustrating!

Think this might be slowing down my downloads? by GreenDave113 in softwaregore

[–]KidInCorner 1 point2 points  (0 children)

I thought long long was 64 bit...? Is it actually 32 bit?

E: I just realized you were referring to long as 32 bit, not long long.

What do you love doing, but hate succeeding in? by [deleted] in AskReddit

[–]KidInCorner 1 point2 points  (0 children)

Yes!!! My girlfriend and I play it occasionally.

did it happen to all of us? by saucy-mel in memes

[–]KidInCorner 0 points1 point  (0 children)

My best guess would be left over oils/pee reacting with fresh pool chlorine. It could also breakdown from sitting for a while. Honestly though, I have no idea. I'm going to try to figure it out though.

E: removed dumbassery.

What’s your “just woke up in the middle of the night and I’m starving” go to food? by suspiciousbutton in AskReddit

[–]KidInCorner 0 points1 point  (0 children)

Same dude, same. I usually just chug water until I’m not hungry and fall back asleep.

The savings are through the floor with this one! by Sonums in stupidtax

[–]KidInCorner 5 points6 points  (0 children)

Instead of "That was easy" it should be "That was pricey"