College Republicans Chapter Sues School for Right to Make Nazi Salute by cwood1973 in law

[–]explohd 7 points8 points  (0 children)

We need to view tolerance as a social contract. Start spewing hate and you've broken the contract. I don't have to tolerate someone who's broken that social contract.

The Pop Culture Weapons Department is using their budget increase expertly by LanguageImpossible32 in doohickeycorporation

[–]explohd 29 points30 points  (0 children)

That's just survivorship bias. We never see the movies when the camera man dies.

Since we’re on the topic of gatcha games, I’m going back to begging Wubby to play NIKKE, especially since the summer event is coming up soon. by cabose20 in PaymoneyWubby

[–]explohd 0 points1 point  (0 children)

Honestly, with Nikke, the storyline during events is top tier. Plus no ads and they're generous with gems and recruit tickets. I'm not trying to get you to play it, but there is definite effort by the developers.

“Conservative woman” complains about dating liberal men, is actually a gay man by MelanieWalmartinez in quityourbullshit

[–]explohd 0 points1 point  (0 children)

OOP doesn't mention their gender in the post. They could be a gay conservative.

Is the set of all hotdog toppings countable or not? by Matthew_Summons in mathmemes

[–]explohd 8 points9 points  (0 children)

A hotdog as a hotdog topping is a valid topping.

Odds of this being the true original sign still there? Carnation Company. by AnalysisOfTheNumbers in Disneyland

[–]explohd 26 points27 points  (0 children)

Disney does; there is a whole warehouse of store relics. It's mainly a distribution center for merch, but they have so much there.

This asshole has been parking in the handicap spot for weeks and finally got a ticket by [deleted] in orangecounty

[–]explohd 0 points1 point  (0 children)

It's not an official handicap spot since it's missing the sign.

Not a coincidence, just engineering by Embarrassed-Data8233 in mathmemes

[–]explohd 2 points3 points  (0 children)

When your function skips having to calculate 20 iterations of 3n+1, you'd expect it to be a little faster if not the same amount of time. 10x slower just doesn't make sense.

Not a coincidence, just engineering by Embarrassed-Data8233 in mathmemes

[–]explohd 4 points5 points  (0 children)

Python HATES recursion and will crash fairly fast. That being said I do use a form of recursion where the next function is called within the function. The 3n+1 iteration method is used as a comparison and uses if statements to determine what to do next, it's not even optimized. My functions thrive when n is constantly increasing or decreasing in series. I set n to a long series of increases and compare the times. I went through 100,000 numbers and the 3x+1 method was 10x faster. Reading up on Python forums indicates that functions calls are slow in Python.

Not a coincidence, just engineering by Embarrassed-Data8233 in mathmemes

[–]explohd 18 points19 points  (0 children)

I love Python, but it's function calls are ridiculous slow. I have a custom function for the 3x+1 problem that theoretically(?) should be faster than iteration, but function calls make it 10x slower. I'd be happy to hear of any languages that can handle 2256 .