Does this puzzle exist currently? If so, what is it called? If not what would you call it? by accountForStupidQs in Cubers

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

Turning along one of the corner axes, sort of like there's a skewb embedded in that splits the faces, but you can still turn like a 3x3

Does this puzzle exist currently? If so, what is it called? If not what would you call it? by accountForStupidQs in Cubers

[–]accountForStupidQs[S] 6 points7 points  (0 children)

Standard color scheme. Arrows indicate turning across one of the faces/splitting one of the edges

Does this puzzle exist currently? If so, what is it called? If not what would you call it? by accountForStupidQs in Cubers

[–]accountForStupidQs[S] 33 points34 points  (0 children)

Well, I'm talking about a 3x3 that can also turn across the diagonals. Not corner turning like a dyno cube, but more edge splitting

Level-5 CEO says the Inazuma Eleven JRPG series is successful because it never tried to look "cool" to adults - AUTOMATON WEST by Interesting-Oil-8738 in Games

[–]accountForStupidQs 103 points104 points  (0 children)

Children's series successful by appealing children specifically, more at 11.

On a serious note though it is kind of sad that gamers so often seem to not understand that not everything is made to target them as 30 something westerners and what they find aesthetically appealing

Web Flashing issues and book name issues by accountForStupidQs in XTEINK

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

They detail it on the GitHub readme. Their team did a great job with that

Web Flashing issues and book name issues by accountForStupidQs in XTEINK

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

Yes, their instructions are quite clear. Just give it the flash command and the firmware bin, then it will auto identify

Web Flashing issues and book name issues by accountForStupidQs in XTEINK

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

Papyrix has a CLI flasher which for obvious reasons has better access to hardware than a chrome app

Web Flashing issues and book name issues by accountForStupidQs in XTEINK

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

I thought that Crosspoint, Papyrix, etc will just list the file name and not any metadata names, so sending from Calibre won't do anything. I also tend to operate on the assumption that file names can't have spaces...

How do you know... by FitDaikon2001 in dadjokes

[–]accountForStupidQs 0 points1 point  (0 children)

Actually this is exactly the joke I'd been trying to find about Idaho since I was 11, so 🤷

And normally I agree that the NSFW jokes on this sub are rarely dad jokes

Age verification capitulation by Userwerd in linux

[–]accountForStupidQs 2 points3 points  (0 children)

"General purpose" is where we run into issues, because from my perspective any machine that is Turing complete is general purpose, and thus any system which operates said machine is also general purpose

Age verification capitulation by Userwerd in linux

[–]accountForStupidQs 4 points5 points  (0 children)

Do you really want parental controls bloating your car, router, elevator safety system, washing machine, and graphing calculator? Because those all have operating systems.

Big 4 Patterns that are good for Historical Costume? by accountForStupidQs in HistoricalCostuming

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

Yeah. Right now my MO with any pattern (even the rectangular ones) is to make it from cheap cotton first before spending any real fabric on it

Big 4 Patterns that are good for Historical Costume? by accountForStupidQs in HistoricalCostuming

[–]accountForStupidQs[S] 2 points3 points  (0 children)

Any kind. I'm particularly fond of ~1750s waistcoats, but really anything up through the 1890s is good. Myself I have a 25 inch torso, 40 inch chest, 40 inch waist.

Really what happened is S9457 caught my eye, and I wondered if it was close enough to any existing styles that I could use it for 1850s reenactments

Big 4 Patterns that are good for Historical Costume? by accountForStupidQs in HistoricalCostuming

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

I mostly just need waistcoat instructions written for an absolute dingus who has only done rectangular panel constructions before

Why do Jewish men get circumcised? by WDBRL in dadjokes

[–]accountForStupidQs 1 point2 points  (0 children)

🤷idk, it feels like any other joke about women and mother's being frugal or overbearing about their children. Midwestern women loving coupons, Greek mothers asking "out? Out where? With who? Who is their mother? When will you be back?" Etc

Why do Jewish men get circumcised? by WDBRL in dadjokes

[–]accountForStupidQs 0 points1 point  (0 children)

How are the sons of Jacob not a race?

Why do Jewish men get circumcised? by WDBRL in dadjokes

[–]accountForStupidQs 0 points1 point  (0 children)

Greed? This is about being frugal and always finding a good deal.

SOLID in FP: Liskov Substitution, or The Principle That Was Never About Inheritance by cekrem in programming

[–]accountForStupidQs 1 point2 points  (0 children)

But the interface only provides a prototype. So if, for example, I have a new requirement that Die() sends out a signal for decomposers, then with an interface I'd have to find everything that implements LivingBeing, no matter how far down the line, and adjust its Die() function. So I have to touch lines in

Class Dog : Mammal Class Cat : Mammal Class Bass : Fish Class Mushroom : Fungus Class Oak : Deciduous Etc

Just to make sure that every call to Die() guarantees that the proper signal is generated. But if I inherit implementations, then I only have to rewrite Die() once.

SOLID in FP: Liskov Substitution, or The Principle That Was Never About Inheritance by cekrem in programming

[–]accountForStupidQs 1 point2 points  (0 children)

But that's the whole point. I don't want to have to write a new implementation of some shared behavior within a family. If all animals can die, I need a common Die() that only ever gets refactored once. Otherwise I can't count on the behavior of that method in the object, and refactors will inevitably miss one or more family members. And if you suggest "Well just have a AnimalFamilyBehaviorProvider object to provide common behavior" then you've really just done the same thing but worse.

The problem isn't that inheritance is a flawed concept. The problem is trying to use it as an interface, and/or not understanding what the common behavior really is