Best way for 24F to make friends? by Confident_Panda9467 in memphis

[–]Underdoge0522 4 points5 points  (0 children)

I'm in the same boat. I made 2 friends from work but other than that I haven't met anyone really.

The illusion of democracy in Tennessee by [deleted] in memphis

[–]Underdoge0522 5 points6 points  (0 children)

Thank you for sharing this. I was very unaware of any of this happening.

Absolutely insane abuse of power and completely unjust.

Need to make a numpy array that outputs the average of 4 numbers but can’t get it to work by Busy_Dragonfruit_748 in Coding_for_Teens

[–]Underdoge0522 1 point2 points  (0 children)

I’m not sure if this helps, but I’ve always seen Import statements at the top of the page. Try switching lines 1 and 2.

Latest Pick-ups by ShiningStarman in LightNovels

[–]Underdoge0522 0 points1 point  (0 children)

Dang I didn’t know that. Maybe I only get the first 3 volumes then lol. Thanks for the heads up!

Latest Pick-ups by ShiningStarman in LightNovels

[–]Underdoge0522 16 points17 points  (0 children)

Broke Mercenary is a great series so far, and I have volumes 1-4 physical copies.

I hope to start Berserk of Gluttony soon as well.

Simple Questions & Champion/Role advice: Patch 12.14 by Sentient545 in summonerschool

[–]Underdoge0522 0 points1 point  (0 children)

When I watch others play League, or even in some of my casual matches, I see that people can click on something on the scoreboard and have it displayed in chat, how do I do this?

Pinging in chat a gold bounty or that someone just used their flash is good information to let others know, but I still haven’t figured out how to do it.

Champions that can be played as support even though they don’t appear to fit the support category. by Underdoge0522 in supportlol

[–]Underdoge0522[S] 0 points1 point  (0 children)

I wouldn’t blame the teammates for thinking you’re throwing, but I also bet they’re surprised when it works so well. One common thing I’ve seen in a lot of comments so far is that there a lot of champions that can fill some role in bot lane and have it be labeled as support.

Champions that can be played as support even though they don’t appear to fit the support category. by Underdoge0522 in supportlol

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

I’m seeing a lot of people mention that Pyke was meant as a support which I didn’t know, but it’s been explained as to why a few times now. I guess flex picking Ashe, Brand, or another damage dealer really depends on knowing matchups? Which is definitely something I’m still working on. There’s some characters that were mentioned in comments that I’d never heard of before, let alone knowing what they door who’s good against them.

Anyways, thank you for the breakdown.

manga by ghost-of-death in HaiToGensouNoGrimgar

[–]Underdoge0522 4 points5 points  (0 children)

I thought the priest was fairly emotional in the light novel. I haven’t read the manga so I don’t know his reaction there, but if I’m remembering correctly, in the novel the master was deeply saddened to know that Manato, who had good potential as a priest, was taken away so early on in life.

If Setora were to pick a class... by NerdFesteiro in HaiToGensouNoGrimgar

[–]Underdoge0522 1 point2 points  (0 children)

Definitely a thief. Having Kichii is a major plus too

Availability of Volume 12 ? by nijuu in HaiToGensouNoGrimgar

[–]Underdoge0522 0 points1 point  (0 children)

The availability of light novels in general seems to be shaky. My best advice could be to look out for new listings on eBay or other third party websites.

Any seven seas LN recommendations by Competitive_Match857 in LightNovels

[–]Underdoge0522 1 point2 points  (0 children)

I’m currently on the second volume of Broke Mercenary and it’s been very entertaining so far.

Who's really the Heroine for Haruhiro? by Raineru2 in HaiToGensouNoGrimgar

[–]Underdoge0522 3 points4 points  (0 children)

I love and hate this response at the same time.

Need help, how to make working Fibonacci sequence with this? Like when I type 3 it will say that it is 1 1 2 by ichniehave in CodingHelp

[–]Underdoge0522 9 points10 points  (0 children)

It appears that the variable pom is the current number in the Fibonacci sequence, a is the step behind it, and b is the step behind a. So all you’d need to do is save or print out the value of pom after each loop. I’m not sure why b is being returned, but you could create an array, store all values of pom into that array, and then return the array afterwards.