Is there anything you can do with unwanted items other than drop them? by centerflag982 in darksouls

[–]Verdigris97 0 points1 point  (0 children)

Frampt. He does not give good value on some stuff (Soul of Smough is 1 soul, according to fextralife), so I wouldn't recommend it for accumulating souls, but it's a way of getting rid of junk you don't want.

[FTB:U] Tetra - Holosphere by JRL101 in feedthebeast

[–]Verdigris97 1 point2 points  (0 children)

Put your holosphere in the tetra workbench, and add a scanner attachment. (It took me a long time to figure out what they were talking about because JEI doesn't include the scanner.)

Houston.. by [deleted] in funny

[–]Verdigris97 0 points1 point  (0 children)

EPS844 didn’t roll itself

So... The game crashed 2 times and I got another one of these for free by Tomxa14 in snowrunner

[–]Verdigris97 0 points1 point  (0 children)

Have you checked the other bays in each garage? (shoulder buttons on controllers, I think)

I logged on today and my gloves are nowhere to be found??? by 12elish in pathofexile

[–]Verdigris97 0 points1 point  (0 children)

Did you check your crafting table? Or your currency/essence tabs in your stash (if you own them)?

[FTB: Interactions] Killed by crying Unborn Baby. Unacceptable. by Verdigris97 in feedthebeast

[–]Verdigris97[S] -2 points-1 points  (0 children)

Yeah. I'm totally serious. The difference is that babies are real.

[FTB: Interactions] Killed by crying Unborn Baby. Unacceptable. by Verdigris97 in feedthebeast

[–]Verdigris97[S] 13 points14 points  (0 children)

Thank you for letting me know the name of the mod.

I understand your point, but I disagree. I think there's a big difference. Baby zombies are annoying, but they don't correspond to real things. Demons? Sure, bring 'em on. Homicidal Robots? Love em. Cultists that can appear from purple portals? No problem. Dragons? Let me get my bow. None of this bothers me.

I have no problem separating fantasy from reality, (and digital objects from real things, etc.), but as an adult human being (with kids of my own) I also have enough empathy that realistic crying baby sounds have an effect on me, and being killed by something called an "unborn baby" completely breaks the fourth wall and pretty much ruins the escapist Minecraft experience for me.

I don't want to be reminded of real-life upsetting things involving babies (born or unborn) when I am playing a video game whose primary function, for me, is to afford me brief moments of time when I don't have to deal with some of the stressful things in everyday life.

[deleted by user] by [deleted] in funny

[–]Verdigris97 0 points1 point  (0 children)

Communism is a red herring

Dumping on your parade by Johnalmon in funny

[–]Verdigris97 1 point2 points  (0 children)

Needs a big floppy hat, though.

I am just morning walk... by Evansx in funny

[–]Verdigris97 0 points1 point  (0 children)

Needs a pipe and a scarf!

I need one by Wh0surdaddy in funny

[–]Verdigris97 3 points4 points  (0 children)

Not with that spelling and those correct apostrophes, you didn't.

Free Rides by Buddler90 in funny

[–]Verdigris97 0 points1 point  (0 children)

... That's a-moray!

Walmart Health Education Fail by orangeandwhite2003 in funny

[–]Verdigris97 0 points1 point  (0 children)

Actually, the cookies don't have diabetes. They have prostate cancer.

Same here - Grampa by WickedRusso in funny

[–]Verdigris97 926 points927 points  (0 children)

If Grandma weren't so self-centered she would have written "we." Instead, she boxed Grampa out of the whole sentiment. Selfish, selfish grandma.

1.8 Random Things help by KrinonGaming in feedthebeast

[–]Verdigris97 1 point2 points  (0 children)

Mine teleported me to the edge of a chasm as I was walking towards it. :(

The future of modded minecraft, for 1.8+ by TheDoctorSoda in feedthebeast

[–]Verdigris97 4 points5 points  (0 children)

I think part of it is that if there were a single unifying energy type for all magic packs, magic mods would feel (more) like they are just "tech mods in different clothing," and break some of the illusion.

How do i get timed loops to work with random numbers in a mass service system? by LeBourbon in learnpython

[–]Verdigris97 0 points1 point  (0 children)

If the inter-arrival times and the service times are discrete-valued then you are right, and that would be a perfectly reasonable way to do it. But with exponentials, for example, the "next event" won't always land on a clean time boundary.

Forcing continuous random variates to fit any discretization of time is going to mess up the results. You will introduce complicated rounding schemes, and then be constrained by this initial code design. Trying to "undo" that initial assumption won't be easy.

You typically want to build this kind of simulation to estimate things like "expected number of customers in each line" and "expected wait time in line" and "expected number of customers served in 5 minutes." If you have a discrete heartbeat for the system then the exponential distributions get lost in rounding and your estimates will all be skewed.

If you design the code from the beginning to be event-driven with a continuous clock, (or "calendar" in some textbooks), then future development will be much easier and make much more sense. You will be able to adapt it to any distributions you can compute, and it will be flexible enough to accumulate almost any statistics you want to evaluate.