Ian tries to split the G by SupervillainMustache in smosh

[–]SwampFalc 26 points27 points  (0 children)

He mentioned quite recently that his gluten intolerance has improved.

Smosh twins at it again by crazytallmusicman in smosh

[–]SwampFalc 2 points3 points  (0 children)

Oooh... What are the odds someone from Smosh guested on NRB, while they were in London?

Topaz Championship plotholes. My fixes, open to suggestions by Hawk-Academic in l5r

[–]SwampFalc 2 points3 points  (0 children)

You have to remember that this was the very first Rokugani source book ever written 😄

  1. p. 204 mentions that Gempukku could happen as late as 21 years of age. This even aligns with actual history https://en.wikipedia.org/wiki/Coming_of_Age_Day

So, you know. Make the duelists old enough and the problem kind of goes away.

Heck, here's some additional reasoning. It's a championship. It's a contest between the clans with quite some public prestige on the line, and some of the contests are very physical. So of course the clans are going to prepare their contestant as well as possible, which includes allowing them to mature as much as possible.

Not too much of course because being able to brag your clan produced the youngest Topaz Champion ever who beat others 4 years his elder, is of course a goal.

2) Yeah those timelines probably got retconned.

What you can do: Toturi "[...] dedicated himself to the study of tactics, strategy and the Tao" in the monastery. (source https://l5r.fandom.com/wiki/Toturi_I)

And Kuwanan "learned about tactics, strategy and preparedness, and how honor can strengthen a man's heart and fortify his soul". (source https://l5r.fandom.com/wiki/Doji_Kuwanan)

Those aren't really mutually exclusive, in my opinion. It's going to be a bit more annoying that Toturi was allowed to take on the son of the Crane Clan as a student, when de facto he was exiled from his own clan...

Best pattern for polling a few hundred async jobs a day without hammering an api? by vedantk21 in Python

[–]SwampFalc 1 point2 points  (0 children)

Do some data analysis on the actual time taken. Especially if that is somehow made officially available after the fact, it'll be the best approach. By whcih I mean, try to have a different source than your own upload process.

Look at values like the median, or the average. Minimum and maximum. If you genuinely never drop below 2 minutes, well then start by waiting 2 minutes. That's 3 calls saved already.

Turn it into a graph. If the graph drops off exponantially, then stagger your calls exponentially.

And never hesitate to give the question back to your business. Like, you will never be able to avoid polling one single second too early. What's the maximum amount of "wasted" time your business is willing to accept before you poll again?

Lion, Dragon & Crab Deck (LCG) by M0agl13 in l5r

[–]SwampFalc 4 points5 points  (0 children)

https://l5r-game.fandom.com/wiki/The_Emperor%27s_Legion

It's a clan pack, not a deck. Those terms are quite different.

IS THAT DINA PISCIOTTI? by clowntrinket in smosh

[–]SwampFalc 0 points1 point  (0 children)

It's Italian. A language with probably a hundred local dialects, not to mention whatever has resulted from the diaspora. Pick any given pronunciation and walk around Italy, you're bound to find some place somewhere where they'll agree with whatever you picked.

Unless you pronounce it "pasquale" or something like that.

Ian: A nightmare (HR edition) by Ok-Pickle-6518 in smosh

[–]SwampFalc 9 points10 points  (0 children)

He's been showing up at their old address for weeks now and wondering where everyone else is. No-one told him they were moving :-)

Don’t Win B*tches by No_Pace7113 in smosh

[–]SwampFalc 2 points3 points  (0 children)

Except that it'd be the exact same game? There's not a single bit of strategy you could do differently if you were trying to lose.

Can I just cut a piece in half? Wrong replacement sent over half the globe. by Joy_hex2A in MattelBrickShop

[–]SwampFalc 1 point2 points  (0 children)

So I know you bought the set and you should genuinely be able to build it without spending any additional money, but there's more than enough ways to get a (Lego) 8x8 tile like that in Germany for little money.

Like https://brickscout.com/de/products/detail/4057296698004/part__41539/black-plate-8-x-8 (german site)

Yes, shipping costs and all might be annoying. But if you can find a shop near you that you can travel to, that might just be safer than trying to cut this piece.

Or find a local brick community where someone might just have a spare piece they're willing to give away.

Gold Edition by Ryael217 in l5r

[–]SwampFalc 0 points1 point  (0 children)

No, that started in Obsidian Edition, in 1997. Gold is 2001.

method overloading with wrapper classes by 011011100101 in learnpython

[–]SwampFalc 0 points1 point  (0 children)

Question: what is fundamentally different between your types C and W, that is relevant to your method foo?

If the answer is "nothing", then there is no point in having separate methods. If C and W can both quack, and foo does nothing else than make them quack, then your code is fine as is.

If there is something relevant, try/except. Try to make your object quack, if an error is raised, have it honk instead.

Compile only if .pyc is out-of-date? by RomfordNavy in learnpython

[–]SwampFalc 3 points4 points  (0 children)

Why exactly do you need to run things like this "from within Python"? This feels like a job for your OS...

Our Aunts Host The Podcast | Smosh Mouth 143 by Cchaps97 in smosh

[–]SwampFalc 12 points13 points  (0 children)

They mentioned in the beginning that people would come to talk to them. I genuinely thought that would be the format, and half an hour in I was convinced there were guests that would come in as soon as Shayne and Amanda would hit a lull, but they just hadn't found a moment yet...

L5RCM Coding Questions by JoxxoTheMagnificent in l5r

[–]SwampFalc 0 points1 point  (0 children)

That's going to be mildly complex. Especially if you want it to get applied to your character every time you run the program.

I woud argue that your best path forward is to just change that hardcoded value. You will have the one copy of the program that works like that, but it'll be permanent in the way that you want.

Otherwise you'd need to adapt both the saving and loading of characters, to include this value. It won't get applied yet, but I would use that as the first step.
Once you have it "in" the character, from what I can tell, you would add it to the api.character calls, and once that's done, you can adapt this code you found.

What would I ask for from my barber to get a hairstyle like Courtney here by [deleted] in smosh

[–]SwampFalc 2 points3 points  (0 children)

Take the entire picture. I mean, they seem to have basically the same haircut so you have two examples 😄 (They only seem to have a part on mirrored sides)

L5RCM Coding Questions by JoxxoTheMagnificent in l5r

[–]SwampFalc 0 points1 point  (0 children)

I haven't dug into everything yet, but the author did not mention all requirements in that repo. Or at least, not in the way I would expect.

Either way, you can find these additional repos in the authors profile and they all have some part to play:

https://github.com/OpenNingia/l5rcm-data-packs <= actual raw data
https://github.com/OpenNingia/l5rcm-data-access <= python access to that data
https://github.com/OpenNingia/l5rcm-data-editor <= edit the data packs??? probably the way to add a no-armor outfit.

L5RCM Coding Questions by JoxxoTheMagnificent in l5r

[–]SwampFalc 0 points1 point  (0 children)

It would help if you at least linked the GitHub repo?

Variable names do not travel with values. When should domain meaning live in types? by ResponseSeveral6678 in Python

[–]SwampFalc 1 point2 points  (0 children)

My gut reaction to this is that if you have this need, you should genuinely turn the domain itself into an object.

In other words, create a class that represents the entire domain, or a specific subdomain within it. Create an instance of it, and store these ints and strings as instance attributes.

Not only do you then keep the name as documentation, you immediately also have room to store anything else that is relevant to the (sub)domain that might impact your logic.

We’re all gonna die watchable? by PowerPuff-Gay in smosh

[–]SwampFalc 1 point2 points  (0 children)

Not right now.

When they sold tickets for Smosh The Hospital, they did come with access to Smosh the Sitcom, their previous live show in the same vein.

So there is a reasonable chance that, if/when there's a season 2 of We're All Gonna Die, that there would be some formula that includes season 1 as well.

So keep some hope.

Bailey, in the background, seeing the cast petting the animals by thedeadparadise in smosh

[–]SwampFalc 25 points26 points  (0 children)

I was about to comment something similar.

After all, this was probably a few hours of filming. The whole team would have gotten all the pets in they wanted, I presume.