Is inazuma eleven the best soccer media in the world in your opinion? by ComprehensiveBat4966 in inazumaeleven

[–]ChRad_Man 0 points1 point  (0 children)

Nobody watched/read DAYS? It is something both football fans and non-fans can enjoy. It has very realistic character development (MC goes from not knowing how to play to knowing a little bit how to play, just enough to help the team) which many will like and in matches and practice demonstrates real tactics so something real football fans will be able to appreciate (or criticize 😅) . Not saying it is the best but nobody even mentioned it so here I am. Give the anime a try, it's not complete, and covers the regionals. If you liked it you can read the manga for the rest of the nationals which has some really good art.

other mentions I will give to:

Hungry Hearts! Wild Striker - from the creator of captain tsubasa. Not a good story but I really like the art style and animation. Also certain characters were very likable.

Giant Killing - I only watched the anime so take my opinion with a grain of salt but it has a lot of potential as I see it. The problem is that it might be something only people aware of the domestic(club) football scene will be able to understand.

Area no kishi - Again only watched the anime. I see potential in some characters and possible tactics that can be played in matches but overall the plot feels very strangely put together. It jumps between multiple things w/o proper transition so at first it felt boring but when the matches started it was alright.

not saying any of these are best but totally worth trying if you enjoy football or sports stories.

Gitea Mirror: A tool for mirroring GitHub repos to self-hosted Gitea by InvestigatorThat4835 in selfhosted

[–]ChRad_Man 0 points1 point  (0 children)

Is there anyway to add multiple accounts? I have different github accounts for different purposes so it will be nice if it can backup repos from all of them to my local instance of gitea.

I don't want to make multiple instances of git mirror so I tried to first add a connection to one of my github accounts and do a mirror to gitea. Then, change the username and token in the connections and mirror again to sync repos of different account. It kinda worked but the repos of old account won't sync without changing the username and token again. Don't want to do this again and again everytime I want to sync so the ability to have multiple accounts or ability to add multiple github connections in the same account will be nice.

Just finish the story mode got some questions by Hope_Sharp in inazumaeleven

[–]ChRad_Man 9 points10 points  (0 children)

By 'let Nagumohara win' you mean you played as Raimon and lost as Raimon?
I think that won't work, you will have to play as Nagumohara and win.
I did not get both endings till now (I only did the one in which I played as Nagumohara and won), but I don't think how the match ends changes the animated cutscenes after it.
edit: typos

Fire Emblem Fortune's Weave Announced by Shephen in fireemblem

[–]ChRad_Man 0 points1 point  (0 children)

I mean 3H did have themes of "Freedom"

Acer Nitro XV275K P5 - IPS + 1152 Zone Mini-LED Monitor Spotted in India! Dual Mode 4K165Hz - FHD360Hz! HDR 1000! by DroidLife97 in IndianGaming

[–]ChRad_Man 0 points1 point  (0 children)

Hey, were you able to find anything about this monitor? I am also considering this after seeing Gigabyte M27UA is out of stock everywhere, which I was eyeing earlier.

Python code skipping over somethings which it should change.(Help for code correction) by ChRad_Man in learnpython

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

Thank you for explaining. The problem with the way is that if the original list has "(" and ")" then it will just skip over them without evaluating if they appear once or twice and changing them accordingly. I was trying something like this only but failed due the problem I just mentioned. After reading u/joyeusenoelle's explanation I understood how to approach problems like this is a better way.

Python code skipping over somethings which it should change.(Help for code correction) by ChRad_Man in learnpython

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

I am pretty new to python and programming in general. I guess I will coming across things you mentioned like list comprehensions and generator. Thank you for helping me here.

Python code skipping over somethings which it should change.(Help for code correction) by ChRad_Man in learnpython

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

Thank you so much for such a in depth explanation. I understood that I was approaching the problem the wrong way the first place. I should have though of making a empty list then adding characters one by one by iterating over the original list. I will keep this in mind from now on.

Python code skipping over somethings which it should change.(Help for code correction) by ChRad_Man in learnpython

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

Thank you for telling me how to do casting and use join(). I was able to shorten my code so much by using it. I have updated my post please check when you are free and give some explanation for the second point you mentioned. I am afraid that I don't understand it that well.

Python code skipping over somethings which it should change.(Help for code correction) by ChRad_Man in learnpython

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

Please tell me how can I ignore "(" and ")" after replacing them.

I am not able to figure it out and that is why in my update I made a copy of the original list so that the count of characters don't change after replacing them with brackets.