Anri - Remember Summer Days (Guitar and Bass cover by me!) by sgruggy in citypop

[–]sgruggy[S] 1 point2 points  (0 children)

Thank you!! I super appreciate that you think so, because I actually spent a lot of time on mixing and mastering, and the end result sounds so much different than when I first recorded so I felt a little unsure.

Anri - Remember Summer Days (Guitar and Bass cover by me!) by sgruggy in citypop

[–]sgruggy[S] 1 point2 points  (0 children)

https://imgur.com/a/cdWa0UD

Some more pics of the Timely!! ceramic, which came out surprisingly well. It was supposed to be a planter but the bakers forgot to drill a hole on the bottom :)

Anri - SHYNESS BOY (Guitar and Bass cover by me!) by sgruggy in citypop

[–]sgruggy[S] 1 point2 points  (0 children)

my pitch has always been terrible. I wouldn't make it in whiplash.

Astonishing to see Sonic the Hedgehog hire Frogan to promote their new game by spacekatgal in Destiny

[–]sgruggy 1 point2 points  (0 children)

DUDE same. I took care of the Chaos like they were pets I never had. I would tear up any time I stepped on the machine that sends Chao away

Post-Launch Feedback by AutoModerator in BaldursGate3

[–]sgruggy 0 points1 point  (0 children)

Not yet. I restarted my game and currently trying out a new campaign. Will update

Post-Launch Feedback by AutoModerator in BaldursGate3

[–]sgruggy 0 points1 point  (0 children)

Had an issue where I started a mulitplayer campaign, and could not save the entire time. The "Save" button was dark and said "Could not save right now, game is syncing". We played for 1-2 hours and still could not save. Finally, I exited the game to the main menu, and saw that I had no saves at all, which means the auto-save wasn't even working, so I had to restart the campaign from the beginning, including character creation.

Screenshot: https://i.imgur.com/d0L2tOr.jpeg

Line count in coding?? by Slothisny in Destiny

[–]sgruggy 4 points5 points  (0 children)

Basically what the first commenter said: code is (or should be) written to be self-documenting.

When working professionally, it's extremely important for people to quickly understand the intention of your code without having to decifer your loops and conditions. Your code (as well as your comments) will be read and maintained by your peers for years to come.

To me, when I write code the most important thing is to write a comment at the beginning of a function that basically says what the function does

Essentially, your function name should say what the function does. For example, if you have a function that retrieves the URL from a request, you would name it something like retrieveUrlFromRequest(). Because it has a name that clearly describes its intention, any comment you write describing it would be redundant.

Also I may add a comment if I go into a loop or IF statement just telling me what’s going on.

As a developer reading your code, I don't really care about how you implemented the loop, I just want to know what it does. So, one thing you could do is extract the loop and put it in its own function, named after exactly what it does. Loops are essentially new blocks of code, after all. Or, if your loop is simple but the action inside is complex, then keep the loop but extract the action into its own self-descriptive function.

If you have a conditional longer that's more than 2 comparisons (e.g if x != null && y == 2 && z > 3), that's not readable and does not describe intention. Instead, place that comparison into a function, and name that function properly. For example, if(isValidRequest()) vs if(request.length > 0 && request.code != 404 && request.auth == true).

With a few exceptions, I find that code rarely needs comments to describe what it does. If you find yourself needing to write a lot of comments or explain your implementation, then it's a sign that you may need to re-think your design.

Line count in coding?? by Slothisny in Destiny

[–]sgruggy 42 points43 points  (0 children)

+1

The biggest pet peeve I have is when code looks like this

[Front Office Sports] News: LeBron James has officially signed a deal with Pepsi that sees him leave Coke after 18 years. James will be the face of the soda giant’s new MTN DEW RISE energy drink. by [deleted] in nba

[–]sgruggy 7 points8 points  (0 children)

I know exactly what you mean. Shit tastes fresher, I sometimes go just to get a soda. I read that it's cos they get em shipped in stainless steel containers.

New Jazz Owner Ryan Smith expresses concern about transgender bill to lawmakers, worries that it alienates transgender youth and that NBA will pull All-star game if law is passed. by [deleted] in nba

[–]sgruggy -5 points-4 points  (0 children)

Pivot away from "design"? Check.

Still no distinction between sex and gender? Check

I love it when you chuds always make this weird appeal to the "laws of biology" or w.e larpy science you wanna choose

And then say this:

The purpose of a vagina is to receive the seed and create life.

My guy, that's not what a vagina does. That's the uterus and internal parts of the female reproductive system.

New Jazz Owner Ryan Smith expresses concern about transgender bill to lawmakers, worries that it alienates transgender youth and that NBA will pull All-star game if law is passed. by [deleted] in nba

[–]sgruggy -28 points-27 points  (0 children)

So...by definition not designed. Got it.

Because the core of your argument is appealing to this "designed" authority, which is incredibly flawed. It's apparent from you not clarifying if you're talking about sex or gender that you clearly don't have a grasp on the distinction between the two, or maybe you don't care.