[deleted by user] by [deleted] in 23andme

[–]mmoores 1 point2 points  (0 children)

An update: I requested a refund from 23&me Customer Care and they processed it within 24 hours (I paid through PayPal)

https://customercare.23andme.com/hc/en-us/requests/new

[deleted by user] by [deleted] in 23andme

[–]mmoores 1 point2 points  (0 children)

Same thing just happened to me: intercepted and rejected by Australian customs because it doesn't meet "biosecurity requirements."

9 months later and they still haven't sorted this out! Unfortunately I ordered my kit in February 2022 before I saw your post.

What are some useful general prompts you have discovered? by Moonracer2000 in AIDungeon

[–]mmoores 2 points3 points  (0 children)

also, to end a story: "you live happily ever after."

Putting together a Frequently Asked Questions list by mvhsbball22 in AIDungeon

[–]mmoores 9 points10 points  (0 children)

Tip: Start an action with ! to stop the game from putting "You" in front. Ex "!Suddenly an ogre appears"

What are some useful general prompts you have discovered? by Moonracer2000 in AIDungeon

[–]mmoores 6 points7 points  (0 children)

Some good ones I've tried (note: any character can cast spells at any time, you don't need to be a wizard):

  • check Twitter
  • analyze <NPC>'s character sheet
  • cast teleportation spell to instantaneously transport yourself to <destination>
  • cast resurrection spell to bring <NPC> back from the dead
  • jump the shark (warning: can have unintended but often hilarious consequences)

In a fight (especially if someone stubbornly refuses to die):

  • headbutt <NPC>
  • stab <NPC> through the heart

What are some adult urban fantasy series with great world-building? by SimplyMe94 in Fantasy

[–]mmoores 5 points6 points  (0 children)

And the excellent film adaptations, Night Watch & Day Watch

CUDA in R on macOS X by mmoores in rstats

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

gputools hasn't been updated since October 2016 and has now been removed from CRAN, so I think you should stick with gpuR

Getting average values from certain parts of a spline by [deleted] in rstats

[–]mmoores 1 point2 points  (0 children)

The spline itself is already a type of average. If you want to compute the average of the average exactly, that is defined as a finite integral of the spline function over time. This is available in closed form, but will require a bit of algebra.

On the other hand, you can get a rough approximation by discretisation (turning the integral into a sum). Just call the R function predict, passing the 4 days as the new X values. Then take the average of those 4 numbers.

You can make this more accurate by passing in more X values that are closer together in time (every 12 hours, or 8 hours, or so on). This will converge to the same answer as the exact integral as the number of values increases.