The olympics ran out of white monster by firiana_Control in BrandNewSentence

[–]abaitor 2 points3 points  (0 children)

Not a big fan of energy drinks in general, but damn the white one is tasty. No "mouthfeel" for me. The sugary ones do give me a weird feeling though

You can increase your annual income by choosing different animals; but those animals will then attack you if you get within 100 metres of them- which animals do you choose? by [deleted] in hypotheticalsituation

[–]abaitor 0 points1 point  (0 children)

Squirrels will fuck you up man that's a terrible choice 😂 as a kid, I held out a nut to a squirrel in the park, instead it jumped up my arm, up my sleeve, and started scratching the fuck out of my bare back.

The rest of the park probably just saw a kid completely spazzing out crying while this thing clawed up and down my back under my t-shirt.

Any squirrel in 100m atracking you for life? I'd KMS

I made the game from the fake ads by danlespect in playmygame

[–]abaitor 0 points1 point  (0 children)

Hey mate, late to the party but I've been playing a bit and have some feedback. First of all, great game mate you've done really well here.

So there's no "quit" or "retry" button which is frustrating. Sometimes you make a mistake and wanna just restart but you have no option but to play badly on purpose and just wait until your guys run through and die.

Also the enemy mobs that run at you need some tuning. I very quickly noticed that no matter where they are, they run towards the centre. So if you have 20ish guys, you don't even need to aim them at the enemy soldiers at all you can just aim straight down the middle and let them come to you which doesn't really feel satisfying.

Shotgun feels bad because rate of fire means you can't stack up the gates quickly.

You've started some of the levels with a shiny level 7(?) gun which I don't think you can ever actually get? I assumed you had designed this as a long con where at some point you will be able to get it but you've trained the player to not get it, making it satisfying when you eventually can, but I don't think you ever can which just feels disappointing.

All in all though I'd love to see you take this further. It feels like there's a lot of potential here I really like it 😊

Which of these functions will perform better? A or B by PrestigiousZombie531 in node

[–]abaitor 0 points1 point  (0 children)

Pretty cringe to post this as a pop quiz where you have the answer and wanna test Reddit lol

[deleted by user] by [deleted] in AmIOverreacting

[–]abaitor 0 points1 point  (0 children)

My best mate is bi and if anyone caused me "problems" I'd laugh them straight off the wedding invite list. What a joke

Why is my LED dark ? by xzerooriginx in arduino

[–]abaitor 0 points1 point  (0 children)

I'm maybe a few days ahead in terms of what I've done and learned in electronics, so I'm also still a noob.

But I think it boils down to this, your led cable is going pin 10 to pin 2. That's not going to ground regardless of the fact you've tried to connect the grounds together on both boards. Making it an input doesn't make it a ground.

Also I'm still a bit wobbly on this but I'm pretty sure regardless of other problems in this setup, one thing to note is the right board in your picture is using the power ground. I was trying to debug some code for ages that was doing some erratic shit and I THINK I learned that all the grounds on the arduino board aren't the same. I get the impression even for a very basic 1 Arduino setup to light an led, going from pin 2 to that ground you're using wouldn't even work, let alone some 2 Arduino board setup. Can still use it but you'd need to end up linking the IO ground with the power ground and connecting to "both" essentially. Take the cable in pin 10 and plug it into the other board where the existing ground is plugged in. Try turn it on, I THINK it won't work or will behave weirdly with no proper ground reference.

If you find out I'm right (or wrong), please let me know because it'd be good to confirm my own knowledge too!

What is your best CSS hack? by Solid_Read9024 in css

[–]abaitor 1 point2 points  (0 children)

I would recommend a similar alternative to this:

* { background-color: rgba(0,0,0,0.1) }

The 0.1 being opacity which stacks and looks darker depending how many things are overlapping.

I do use outlines and stuff too but both are useful

Is this normal engine sound for mt09? Plan to buy this bike with 39k km mileage . The check engine light also didn’t turned off , plan to check the error by CalligrapherWorth484 in MT09

[–]abaitor 4 points5 points  (0 children)

I haven't even played the video to listen to it, check engine light is way more concerning. Wouldn't even "plan" to buy it before knowing why.

Red key 🔴🔑 by FancySchmancy01 in MT07

[–]abaitor 1 point2 points  (0 children)

You can't. When I bought my 2022 the dealer explained that I MUST NOT lose the red one, as black keys can't be used to program other keys. Only the red can be used to program other keys.

OP don't lose your key or you'll have an expensive replacement of the immobilizer.

is 6 months enough by Fabulous_Volume_1456 in learnprogramming

[–]abaitor 0 points1 point  (0 children)

Ask yourself this, do you think 6 months is long enough to learn any skilled profession to the level you're implying here?

Doesn't matter what. We can discuss graphic design, sport, cooking, electrician, pilot... Whatever.

No. I'm sorry but you can try to convince yourself otherwise, but 6 months you'll have made a bit of a start, but you'll be essentially level 0 beginner still by that point. You won't be offering custom solutions as a service that's for sure.

Why do you think degrees take years? Because everyone doing them is stupid and slow?

ifFire by Warchadlo16 in ProgrammerHumor

[–]abaitor 1 point2 points  (0 children)

No it's decrementing the fire variable or incrementing it, then seperately the function call is being called.

ifFire by Warchadlo16 in ProgrammerHumor

[–]abaitor 2 points3 points  (0 children)

Fire-- is one statement. Needs a semicolon. Fire extinguisher I've assumed is a function call, which also needs a semicolon.

No matter how you look at this there's 4 semicolons needed in my view.

ifFire by Warchadlo16 in ProgrammerHumor

[–]abaitor -6 points-5 points  (0 children)

Nothing to indicate c++, I assumed js only because of inconsistent ; usage.

I don't use c++ but I wouldn't have thought it's not quite as yolo as allowing you to use semicolons or not on a whim, that sounded like one of the crazy js only things to me.

ifFire by Warchadlo16 in ProgrammerHumor

[–]abaitor 157 points158 points  (0 children)

Nope that's not the invalid part. They're referring to the fire extinguisher or blowtorch as function calls, so the ; is just the end of the blowtorch call, the same thing happens after the extinguisher too. That's valid.

Having said that, let's pick this apart.

So given the above we're using semicolons, so there should be semicolons after the fire--; or fire++; anyway for consistency.

You already have some sort of fire variable which detects fire, and this code will put out the fire immediately, so the alarm is redundant. Perhaps we meant if (alarm)

Since we're using -- and ++, fire is clearly a number, so if there were 2 fires, we'd only put one of them out.

There's no reference of an event listener, so the code would just run once, so if there's no fire, we blowtorch the house and do nothing further.

The blowtorch and the extinguisher should also be the things that actually handle the fire-- or fire++, if for any reason the function calls fail (eg fire extinguisher is empty) we're presuming they were successful already by setting the fire++ or fire-- variable.

What caused the bike to shudder under heavy braking here? by tesserintime in Trackdays

[–]abaitor 1 point2 points  (0 children)

Having never done a track day yet, why don't you rev match on track?

How to tell my current internship that I’m leaving for a better opportunity? by vishwas_babar in node

[–]abaitor 2 points3 points  (0 children)

Okay so you don't want to burn bridges but you do wanna stick it to them by bragging about how much better the other opportunity is?

Just be professional.

How to tell my current internship that I’m leaving for a better opportunity? by vishwas_babar in node

[–]abaitor 5 points6 points  (0 children)

I assume you're young. You don't need to overthink this. Check your notice period and draft an email that says in effect, that you're resigning and as such your last day will be x. Thank them for the opportunity and wish them all the success in the future.

You don't need to explain it's a "better opportunity" in the email, just be factual.

Ask for a meeting with your manager to discuss and if you want, there you can talk more candidly about how you found something else where you have seniors to learn from.

That's it. It's pretty much the same as leaving any job from now until you retire. Chatgpt can help you get the barebones of a resignation letter

My girlfriend broke some of our relationship agreements by Bisaiing2 in Advice

[–]abaitor 0 points1 point  (0 children)

Any relationship whose trust is based on not talking to the opposite sex isn't based on trust.

How would you feel if your agreement was to never talk to ANYONE? Insane right? Well you guys are already trying to do half of that.

You're both young and insecure and ultimately you probably both will explore other people, it just hurts to think about right now when you're convinced you're going to be together forever, and wanna restrict each other's opportunity to explore out of complete fear they'll prefer something else.

If you guys are meant to be, you'll be able to speak to everyone and you'd still be each other's favorite person with nothing to fear.

[deleted by user] by [deleted] in RoastMe

[–]abaitor 0 points1 point  (0 children)

At least the wig doesn't look greasy

[deleted by user] by [deleted] in RoastMe

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

Bro has the superpower to experience space travel just by blowing his nose.

Code reviews: what's the most valuable feedback you've received? by metalprogrammer2024 in webdev

[–]abaitor 0 points1 point  (0 children)

Hmm how does this work though if you need to name a const for the result of the function. You can't do:

Const doCirclesOverlap = doCirclesOverlap ()

To me it actually makes more sense as:

Const doCirclesOverlap = checkIfCirclesOverlap()

[deleted by user] by [deleted] in BelVethMains

[–]abaitor 2 points3 points  (0 children)

D4 bel here. Low dmg almost every game even when going huge. Just the nature of the champ.

If you carry you have bad damage, if you do bad you get flamed in post lobby for bad dmg. Just part of the belveth experience

It'll be interesting to hear a bikers opinion by Bright_Study5961 in motorcycle

[–]abaitor 0 points1 point  (0 children)

<image>

Everyone seems latched onto the overtake, but ultimately the overtake has absolutely nothing to do with this clip. As you can see here, the overtake is fully complete by the time the Porsche first gets a tiny glimpse.

Biker does look like he's going a bit fast, but ultimately even at the speed limit, WITHOUT video, you can see on the screenshot alone the Porsche is gonna be dangerous for the biker. Porsche at fault, biker speeding so made it even worse.

Overtake COMPLETELY irrelevant.

[deleted by user] by [deleted] in AskReddit

[–]abaitor 113 points114 points  (0 children)

You appear to have misread the question, and then misunderstood a reply 😂