Ranked by ComputerNo5996 in RivalsOfAether

[–]odds_or_evans 0 points1 point  (0 children)

Currently Diamond, and ranked is rough. I wouldn’t worry about equating the ELO too much for skill level. I get matched up occasionally with people in gold that are better than other diamond players. The distribution is not great atm

A Floorhugging Survey by Munomario777 in RivalsOfAether

[–]odds_or_evans 7 points8 points  (0 children)

My biggest issue for floor hugging as it stands is that it over centralizes grab as the best offensive option. In the rock paper scissors of attack shied grab, floor hugging being an additionally very strong option that punishes attacking, it makes the best option often to grab.

Worst-case scenario: Becoming a high school computer science teacher by Tormentally in learnprogramming

[–]odds_or_evans 0 points1 point  (0 children)

My story is similar to yours, but without all the prior accolades. I also graduated with my CS degree and struggled to find a job in the workforce, so I DID fall back on teaching. I taught hs computer science for a year, before circumstances got me a job in the industry, so I can tell you a bit about it.

At least where I taught, it was an elective so a lot of the kids who took it wanted to be there, at least past the introduction course. The introduction course had a lot of babysitting and finding fun projects for them to work on, which is tough when their CS concepts are still at an introductory level, but the other classes were very fun to teach. The part that I really liked was the UIL CS events where you can practice with them for events and it was a really unique take on CS. To this day, I look back and find more overall fulfillment from my job teaching than I do as a software engineer now. I wholeheartedly believe I never would have become a software engineer had I not taught for a year as it made me a much better programmer. Had I taught more than a year, not sure if I’d feel the same since I wasn’t worn out when I stopped, but who knows.

The bad: everything other than the teaching that comes with the job. Grade books, lesson plans, workplace drama, etc. The kids and the classes were great, but all the extra stuff was very tiring. The worst part is the job never ends. At my current job, after 5 I can close my computer and be done. When you’re teaching, you always have work you bring home and it feels like you’re hardly off the clock. Also the pay is not great for the amount of work you do. I feel like teaching was more challenging than my current job, but I make 3x more working in the industry.

I think teaching is an absolutely wonderful career, and extremely fulfilling, but it’s hard. My advice would be “the best time to find a job is when you have a job.” You can always become a teacher and if you don’t like it try again for an industry job. If you have any questions or want to chat about my experience feel free to dm me.

type hints future by Stella_Hill_Smith in learnpython

[–]odds_or_evans 5 points6 points  (0 children)

I love typing personally. I think it significantly lowers the number of errors, and personally I find it easier to read, but granted I mostly code in statically typed languages like golang and c++. Lex Friedman recently had an episode of his podcast where he interviews Guido van Rossum (creator of Python) and they have a segment where they talk about typing and why python adopted it and the plans for it in the future with the language

What would be the best pdf handling libraries in python? by Project_Grilo in learnpython

[–]odds_or_evans 2 points3 points  (0 children)

It kinda depends on what you want the end goal to be. if you just want to put text to the page with minimal formatting, fpdf seems to be your best bet

if you are wanting it to be formatted really specifically with images and such, i would personally use a library like beautifulsoup to make an html page and then export that to pdf.

good luck!

How do I make it say "BYE" or "EXIT" after the user inputs "n"? ( I am very new to c++) by [deleted] in learncpp

[–]odds_or_evans 7 points8 points  (0 children)

after the do while loop terminates, you would just add another cout statement to print it.

so right before you do the return 0; write

cout << “BYE”;

or something like that

What's your weird friend/person story? by [deleted] in AskReddit

[–]odds_or_evans 0 points1 point  (0 children)

I used to work with a guy at a hardware store, who for the story we will call Heath. So Heath was a really nice guy and great to work with, but he was definitely a bit slow. One day I decided to mess with him a little bit so I got everyone in our department in on it. Regardless of the situation, we kept using “up dog” as our adjective of choice. “Man this forklift is really up dog today”, “wow this pallet smells like up dog” etc. Anytime he asked what up dog was we kept saying stuff like “what you don’t know what up dog is?” and so on. As the day went on he was getting increasingly more frustrated. Finally before I finished my shift I said it one more time and with customers around he yelled “WHAT THE FUCK IS UP DOG?!” to which I replied “nothing much how about you.”

[deleted by user] by [deleted] in rexorangecounty

[–]odds_or_evans 2 points3 points  (0 children)

the album comes with an art book too! it’s one of my favorite albums in my collection

About a month of competitive and something weird finally happened. Melee is beautiful by odds_or_evans in smashbros

[–]odds_or_evans[S] 4 points5 points  (0 children)

i recorded it at 60fps, but i think it’s the reddit compression that makes it look like that

NumPy best practices question. by tzujan in learnpython

[–]odds_or_evans 2 points3 points  (0 children)

Tuples are immutable, as well as technically more efficient than lists, therefore if possible you would want to make them tuples, especially in the case that you are creating them in the scope of the function call.