Dominion Strategy Forum

Please login or register.

Login with username, password and session length
Pages: 1 ... 173 174 [175] 176 177 ... 275  All

Author Topic: The Necro Wars  (Read 361316 times)

0 Members and 3 Guests are viewing this topic.

faust

  • Board Moderator
  • *
  • Offline Offline
  • Posts: 3386
  • Shuffle iT Username: faust
    • View Profile
Re: The Necro Wars
« Reply #4350 on: August 25, 2022, 06:37:27 am »

one meal a day doesn't seem like it's bad for you in any way.
Well, it's bad for your general quality of life, at least if you enjoy food.
Logged
You say the ocean's rising, like I give a shit
You say the whole world's ending, honey it already did

Awaclus

  • Adventurer
  • ******
  • Offline Offline
  • Posts: 11824
  • Shuffle iT Username: Awaclus
  • (΄。• ω •。`)
    • View Profile
    • Birds of Necama
Re: The Necro Wars
« Reply #4351 on: August 25, 2022, 07:07:26 am »

So according to the Veritasium video, the following things may or may not help with aging:

- 0: don't get DNA damage. Use sunscreen etc.
- 1: eat less; specifically less protein
- 2: get really exhausted from e.g. working out
- 3: be uncomfortably cold or uncomfortably hot

If AGI requires a paradigm shift it could take who knows how long so this is again relevant.

Well I am definitely uncomfortably hot, so I should be fine!  8)
Logged
Bomb, Cannon, and many of the Gunpowder cards can strongly effect gameplay, particularly in a destructive way

The YouTube channel where I make musicDownload my band's Creative Commons albums for free

Awaclus

  • Adventurer
  • ******
  • Offline Offline
  • Posts: 11824
  • Shuffle iT Username: Awaclus
  • (΄。• ω •。`)
    • View Profile
    • Birds of Necama
Re: The Necro Wars
« Reply #4352 on: August 25, 2022, 07:07:56 am »

I'm also uncomfortably cool.
Logged
Bomb, Cannon, and many of the Gunpowder cards can strongly effect gameplay, particularly in a destructive way

The YouTube channel where I make musicDownload my band's Creative Commons albums for free

silverspawn

  • Adventurer
  • ******
  • Offline Offline
  • Posts: 5344
  • Shuffle iT Username: sty.silver
    • View Profile
Re: The Necro Wars
« Reply #4353 on: August 26, 2022, 05:23:02 pm »

It would be really cool if I understood the free energy principle

silverspawn

  • Adventurer
  • ******
  • Offline Offline
  • Posts: 5344
  • Shuffle iT Username: sty.silver
    • View Profile
Re: The Necro Wars
« Reply #4354 on: August 27, 2022, 10:34:17 am »

silverspawn

  • Adventurer
  • ******
  • Offline Offline
  • Posts: 5344
  • Shuffle iT Username: sty.silver
    • View Profile
Re: The Necro Wars
« Reply #4355 on: August 27, 2022, 10:51:31 am »

Another cool sorting algorithm is to sort the list using quantum flips, check if it's sorted correctly, and give up if it's not. Great runtime and guaranteed success!

silverspawn

  • Adventurer
  • ******
  • Offline Offline
  • Posts: 5344
  • Shuffle iT Username: sty.silver
    • View Profile
Re: The Necro Wars
« Reply #4356 on: August 27, 2022, 11:03:31 am »

Ah, Wikipedia was faster.

Quantum bogosort

Quantum bogosort is a hypothetical sorting algorithm based on bogosort, created as an in-joke among computer scientists. The algorithm generates a random permutation of its input using a quantum source of entropy, checks if the list is sorted, and, if it is not, destroys the universe. Assuming that the many-worlds interpretation holds, the use of this algorithm will result in at least one surviving universe where the input was successfully sorted in O(n) time.[9]

Awaclus

  • Adventurer
  • ******
  • Offline Offline
  • Posts: 11824
  • Shuffle iT Username: Awaclus
  • (΄。• ω •。`)
    • View Profile
    • Birds of Necama
Re: The Necro Wars
« Reply #4357 on: August 27, 2022, 03:56:19 pm »

A nice (and very drunken) stranger treated me to vodka today.
Logged
Bomb, Cannon, and many of the Gunpowder cards can strongly effect gameplay, particularly in a destructive way

The YouTube channel where I make musicDownload my band's Creative Commons albums for free

silverspawn

  • Adventurer
  • ******
  • Offline Offline
  • Posts: 5344
  • Shuffle iT Username: sty.silver
    • View Profile
Re: The Necro Wars
« Reply #4358 on: August 27, 2022, 06:18:25 pm »

Just watched the entire Bogosort competition

at 16x speed

silverspawn

  • Adventurer
  • ******
  • Offline Offline
  • Posts: 5344
  • Shuffle iT Username: sty.silver
    • View Profile
Re: The Necro Wars
« Reply #4359 on: August 27, 2022, 06:21:27 pm »

Quote from: Embedded Bastler
If there are infinite universes, then there is a universe where Bogosort is right every single time and nobody knows why.

silverspawn

  • Adventurer
  • ******
  • Offline Offline
  • Posts: 5344
  • Shuffle iT Username: sty.silver
    • View Profile
Re: The Necro Wars
« Reply #4360 on: August 28, 2022, 03:50:14 am »

So stooge sort is kind of interesting. The insight is that you can sort a list by

1. sorting the first two third
2. sorting the last two third
3. sorting the first two third

Why? Well, doing (1) doesn't guarantee that the first two third of the full list are now correct, but it does guarantee that none of the elements now in the first third actually belong into the last third. And that means that all elements which belong into the last third are in the last two thirds, hence step (2) guarantees that the last third of the list is correct! And when the last third is correct, you need only sort the first two third, and the full list is correct.

after #0: 8 2 9 1 7 5 4 3 6
after #1: 1 2 5 7 8 9 4 3 6  (( 125 not in the final third! ))
after #2: 1 2 5 3 4 6 7 8 9 (( 789 is correct! ))
after #3: 1 2 3 4 5 6 7 8 9 (( :) ))

silverspawn

  • Adventurer
  • ******
  • Offline Offline
  • Posts: 5344
  • Shuffle iT Username: sty.silver
    • View Profile
Re: The Necro Wars
« Reply #4361 on: August 28, 2022, 03:52:54 am »

Consequently, any sorting algorithm of complexity f(n) can be modified to have complexity 3 * f(2/3 * n) instead. Unfortunately, even if f is quadratic, the new complexity is 3 * (2/3n)^2 = 4/3 n^2 so the procedure now takes longer than before.

However, if f is a cubic, then the new complexity is 3 * (2/3n)^3 = 8/9n^3. So stooge sort can be used to upgrade sorting algorithms with cubic runtime! Now you need only come up with a scenario where you would ever use a sorting algorithm with cubic runtime, and then we have a use case!

silverspawn

  • Adventurer
  • ******
  • Offline Offline
  • Posts: 5344
  • Shuffle iT Username: sty.silver
    • View Profile
Re: The Necro Wars
« Reply #4362 on: August 28, 2022, 03:57:13 am »

Which is why recursively using stooge sort gives a complexity between n^2 and n^3, namely n^2.7095.........

silverspawn

  • Adventurer
  • ******
  • Offline Offline
  • Posts: 5344
  • Shuffle iT Username: sty.silver
    • View Profile
Re: The Necro Wars
« Reply #4363 on: September 01, 2022, 06:09:11 am »

Remember when I accidentally bought a magazine subscription? Well I used my 14 day withdrawal right and now I'm getting all my money back *and* 3 of them for free!

They could be genuinely useful. No-one in this house reads newspapers anymore so I was running out of paper to use for bio trash...

silverspawn

  • Adventurer
  • ******
  • Offline Offline
  • Posts: 5344
  • Shuffle iT Username: sty.silver
    • View Profile
Re: The Necro Wars
« Reply #4364 on: September 01, 2022, 06:12:54 am »

Speaking of bio trash (you should probably say "waste"?), I would say the lavender scent against fruit flies was disappointing. However, I've mostly solved the problem by just not having any bio waste in the appartment. Anything that fruit flies like has to be moved out of the house immediately. Thankfully, on most days I just have tea leaves which flies don't care about.

And that genuinely works. Every now and then I still see one lone fly, but that's it.

silverspawn

  • Adventurer
  • ******
  • Offline Offline
  • Posts: 5344
  • Shuffle iT Username: sty.silver
    • View Profile
Re: The Necro Wars
« Reply #4365 on: September 01, 2022, 06:19:32 am »

The Onion was kind of onto something:

silverspawn

  • Adventurer
  • ******
  • Offline Offline
  • Posts: 5344
  • Shuffle iT Username: sty.silver
    • View Profile
Re: The Necro Wars
« Reply #4366 on: September 01, 2022, 06:28:04 am »

How good posts are created

1. Have an idea
2. Write a really confused version of the idea
3. ??? (most difficult step; can be implemented via talking to others or just by thinking)
4. Understand the idea on the simplest level such that it now seems trivial
5. Rewrite the post to be much shorter
6. Get feedback on the post. Get told that it's somewhat difficult
7. Rewrite the post to be longer and explain the same idea in more detail

Even though this yields a parabola shape of length, the result after 7 is not at all similar to the one after 1.

Ofc this is only the simple case. Harder cases can include several cycles through 3-7 if the new understanding is merely better and not yet good.

silverspawn

  • Adventurer
  • ******
  • Offline Offline
  • Posts: 5344
  • Shuffle iT Username: sty.silver
    • View Profile
Re: The Necro Wars
« Reply #4367 on: September 02, 2022, 06:31:22 am »

You can measure the intrinsic moral worth of a chess playing humanoid by their losing stats. They are decomposed into

Resignation
Checkmate
Timeout

The higher the resignation, the better.

silverspawn

  • Adventurer
  • ******
  • Offline Offline
  • Posts: 5344
  • Shuffle iT Username: sty.silver
    • View Profile
Re: The Necro Wars
« Reply #4368 on: September 03, 2022, 06:41:42 pm »

silverspawn

  • Adventurer
  • ******
  • Offline Offline
  • Posts: 5344
  • Shuffle iT Username: sty.silver
    • View Profile
Re: The Necro Wars
« Reply #4369 on: September 04, 2022, 02:20:23 pm »

silverspawn

  • Adventurer
  • ******
  • Offline Offline
  • Posts: 5344
  • Shuffle iT Username: sty.silver
    • View Profile
Re: The Necro Wars
« Reply #4370 on: September 04, 2022, 03:35:54 pm »

If I had gotten 100$ every time I heard someone say that [Gφdel's incompleteness theorem means some true things aren't provable], I might be able to afford another ETH now.

silverspawn

  • Adventurer
  • ******
  • Offline Offline
  • Posts: 5344
  • Shuffle iT Username: sty.silver
    • View Profile
Re: The Necro Wars
« Reply #4371 on: September 06, 2022, 08:18:40 am »

there's nothing quite like the text communications of extremely autistic people

silverspawn

  • Adventurer
  • ******
  • Offline Offline
  • Posts: 5344
  • Shuffle iT Username: sty.silver
    • View Profile
Re: The Necro Wars
« Reply #4372 on: September 07, 2022, 08:26:03 am »

In his book "The World in your Head", Steven Lehar makes a big deal out of indirect perception, the idea that what you see is not the world itself but a mental construct of the world. He describes how he kept bringing it up to colleagues but wasn't able to convince anyone, and how it was this incredible shift in world view for him.

This is totally ??? for me. Of course what you see is a mental construct. This feels completely trivial. I don't think there is a way for indirect perception to be false that makes any sense. Are there really people who honestly doubt it?

silverspawn

  • Adventurer
  • ******
  • Offline Offline
  • Posts: 5344
  • Shuffle iT Username: sty.silver
    • View Profile
Re: The Necro Wars
« Reply #4373 on: September 07, 2022, 08:27:07 am »

Maybe there is a way to imagine seeing the world directly, but not without totally throwing out the most basic neuroscience

silverspawn

  • Adventurer
  • ******
  • Offline Offline
  • Posts: 5344
  • Shuffle iT Username: sty.silver
    • View Profile
Re: The Necro Wars
« Reply #4374 on: September 07, 2022, 09:36:15 am »

So Hans Niemann cheated in top level chess against Magnus Carlsen. (I think.) Drama!
Pages: 1 ... 173 174 [175] 176 177 ... 275  All
 

Page created in 0.049 seconds with 20 queries.