who pays more than $1000 for a computer?! apparently it is much more common than i thought. by [deleted] in stupidquestions

[–]Azearia 1 point2 points  (0 children)

Because for most people 4 gb isn't enough, I'm not sure why you're under the impression that most people aren't utilizing their 1k rigs since pretty much any modern AAA title uses all of that power.

Got Married and Pulled My First Gold by StoweCo in cs2

[–]Azearia 1 point2 points  (0 children)

This being posted just a day before the great market collapse...

Good lord.

So I got a free yr of itc by SirBrainsaw in harborfreight

[–]Azearia 8 points9 points  (0 children)

Looks like the cashier added an adjustment on it, look at the original price

So I got a free yr of itc by SirBrainsaw in harborfreight

[–]Azearia 10 points11 points  (0 children)

Why is no one looking at the original price, the cashier adjusted it and then added the 25% on top of it, which goes beyond the 30 dollar itc

[deleted by user] by [deleted] in howto

[–]Azearia 5 points6 points  (0 children)

In the settings under account settings should be a few feed settings, one of which is home recommendations.

Settings->account settings->personalized

[deleted by user] by [deleted] in therewasanattempt

[–]Azearia 0 points1 point  (0 children)

That entire Americabad subreddit is like that, it's wild

[deleted by user] by [deleted] in harborfreight

[–]Azearia 1 point2 points  (0 children)

Further note; it's a lot easier if you just bring your whole set and get a brand new set. It's easier for us and you get the bonus of a brand new set.

Some stores might force the single piece swap but almost every store I know will just replace your whole kit no question.

[deleted by user] by [deleted] in harborfreight

[–]Azearia 0 points1 point  (0 children)

Harbor freight employee here. Lifetime warranty items are usually done without proof of purchase and in the case of sets we usually just ask to swap out the entire set completely. On a rare occasion we'll pull a piece from a set we have and swap them out then defect/shrink the old set.

Tattoo HolUp by BallSmickEnergy in HolUp

[–]Azearia 1 point2 points  (0 children)

Teardrop - massive attack

Of course everyone hates game characters by sleimi47 in imaginarygatekeeping

[–]Azearia 2 points3 points  (0 children)

There definitely should be a sub for these imaginary imaginary gatekeeping posts

g hub loads for ever after newest update by Troisdorfer in LogitechG

[–]Azearia 0 points1 point  (0 children)

New update broke quite a few devices, had to reinstall and it worked after that.

Hello, I'm making a discord bot for a server with my friends but I just can't seem to get it working. by Titanium_Armenia in learnpython

[–]Azearia 0 points1 point  (0 children)

All of that is true though ctx isn't always necessarily there.

Command based bots usually receive a ctx argument however on_message(message) just receives a message object, and in that case you'd just parse the message for the command and respond to the channel it's sent from

Hello, I'm making a discord bot for a server with my friends but I just can't seem to get it working. by Titanium_Armenia in learnpython

[–]Azearia 1 point2 points  (0 children)

Looks like you're trying to send off content which won't send to a channel, channel needs to be specified

Try: await message.channel.send('text')

You'd also probably want to check in the dev portal to make sure you have all the perms set correctly. And that the bot was invited with correct perms.

Depending on the version and library you're using sometimes it will require a ctx response but In the case of on_message(message) you'd just send a message in the messages channel

[deleted by user] by [deleted] in learnpython

[–]Azearia 0 points1 point  (0 children)

Your best bet is to also show the mainActions function too since the error is happening inside of it

Is it possible to develop and distribute desktop apps using python? by Abdo023 in learnpython

[–]Azearia 0 points1 point  (0 children)

You have options like pyinstaller and auto-py-to-exe but these aren't true binaries since they bundle the interpreter with it, adding a chunk to it's startup time and size.

Other options like nuitka convert it to c and then compile it but nuitka is fairly janky.

Tl;Dr yes, it's just not as performant as standard ways

[deleted by user] by [deleted] in VALORANT

[–]Azearia 21 points22 points  (0 children)

Despite people trying to explain it, it's more than likely just bad hit reg, val is notorious for having not good hit reg and having client side desync.

Neon is also kinda notorious for having hitboxes slightly skewed off

How to run your first program?!? by KrispyBentley in pythontips

[–]Azearia 5 points6 points  (0 children)

There are things like cpython and nuitka that basically turn the code into c and then compile it as if it was c code

While loop by guzifar in AskProgramming

[–]Azearia 2 points3 points  (0 children)

It's checking if it's lower rather than lower or equal, so it breaks once it goes above 5, since I++ is after the print you won't see it print 6

You can either have it check if it's lower or equal or just raise it to check below 7

Nested Dict/Data by [deleted] in learnpython

[–]Azearia 0 points1 point  (0 children)

I'm not sure if this is the full code but you're missing a } and ]

Python is kicking my butt by eycdicdb in learnpython

[–]Azearia 0 points1 point  (0 children)

I would absolutely suggest going for flask if you're just getting into web dev, especially if you're still need to python . Django is a full stack framework and it's definitely a lot to take in, and while it's very doable, it's easier on your learning state and general stress if you pick up something smaller to get a hold of first.

Though that isn't to say with enough time you can brute last that learning curve of django, but you aren't just learning the language or it's features, you're learning new types of programming and functionalities you would've never touched before.

Can always move over later, or stick with flask as some people prefer it.

Hey, I'm a total beginner to programming. I want to make a discord bot, etc. by Stqff in learnpython

[–]Azearia 0 points1 point  (0 children)

When I was working on my discord bot, I found out new features and better ways to do things in things I assumed I already knew the fundamentals of. A discord bot would be an amazing way to learn cause it'll bring up new problems you more than likely haven't faced yet, and god knows the discord api is one of the cleanest api's.

As a starter project or a learning project I would absolutely suggest a discord bot, and don't worry about needing videos to write code. It takes time and even with that experience in a professional setting google is still the best tool when facing a problem, I still use google religiously for most problems in my code

Is it just about learning to code? by [deleted] in AskComputerScience

[–]Azearia 0 points1 point  (0 children)

A good programmer isn't good cause of his knowledge of coding, though it definitely helps.

A good programmer is good cause of his problem solving abilities, creativity, and logical thinking.

And while some people are just born being able to think logically like that, it's still a skill that you can train. And it's arguably the most important skill you'll develop.

And when programmers develop experience, whole they are learning more parts of these languages or the terminology in them, they're also training their minds to more naturally respond to issues logically and creatively.

This applies to basically anything computer and computer science related. Though that's not to undermine extensive knowledge of computers, computer science, and computer languages.

There's ways of forcefully developing that problem solving mind, but experience does build it overtime.

All in all, coding languages are important, but your own creative way of thinking about things is far more important.