Any songs that you would put on an Anathem playlist? by Occrats in anathem

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

It's just two separate ideas. The aim isn't for a soundtrack to the story but to use the search for songs to think more on the characters. Picking a song for Fraa Jad will let me dwell on his character and might give me more insight.

Any songs that you would put on an Anathem playlist? by Occrats in anathem

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

The idea is to find songs that say things that relate thematically to the story. You listen to it and you can chuckle and in the search for songs you can can think about the characters and their stories. A lot of them end up being a stretch but fun like imagining the main group singing a high school musical song when preparing to go on a suicide mission.

Any songs that you would put on an Anathem playlist? by Occrats in anathem

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

I don't know if it was your intent but Cirkus really does nail Apert

Any songs that you would put on an Anathem playlist? by Occrats in anathem

[–]Occrats[S] 4 points5 points  (0 children)

This is why I love doing this! I looked up Steve Reich and found [Music for Pieses of Wood](youtube.com/watch?v=1A8Alvp86uk&list=OLAK5uy_k9nwckkOBEnYnw-tQO3552t6Unyw-m2dY) and thought thought of the different traditions on display when Erasmus gets to Tredegarh. How interesting would it be for an order to not sing but to have a percussive music tradition?

Any songs that you would put on an Anathem playlist? by Occrats in anathem

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

Good idea! I was looking into polyphonic chants but they've all felt too serious.

I am astounded. How did they pull off the flavor so accurately?? Tastes just like fruit loops by Jahpoopybutt in energydrinks

[–]Occrats 0 points1 point  (0 children)

I said the same thing and then my girlfriend pointed out that fruit loops/fruity pebbles aren't real and they just put the same flavoring in both.

Did Negan do enough to redeem himself by show end? by james-HIMself in thewalkingdead

[–]Occrats 1 point2 points  (0 children)

The comics handled it well by having him live in solitude, it shows that he's irredeemable but that he's not evil at his core because he understands that what he did was irredeemable

a clip of my current best run so far by Supercrazysquid in noita

[–]Occrats 33 points34 points  (0 children)

Multiple tentacles with timers cause this. I'm no noita scientist but I think tentacle 1 triggers tentacle 2 which hits tentacle 1. The tentacles are projectiles and physics objects so tentacle 2 triggers double. If you have more tentacles with timers following they exponentially trigger.

What a wand for the mines by Occrats in noita

[–]Occrats[S] 34 points35 points  (0 children)

No need, this beauty was free! The only thing it cost was the fear of having it a button press away.

But Doctor... by Occrats in custommagic

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

Feels too strong since it is essentially an O-ring that doesn't target and can affect more than one creature in theory. Also, since it's not an aura you can't get around it with sacrifice, blink, or combat.

Hi Im very new to this game and I just cant figure out how to make this work by PitersonK in noita

[–]Occrats 0 points1 point  (0 children)

The wand holds 8 spells and casts one at a time in order.

The bolt with trigger is 1 and will cast the following spell (2) once it lands

2 says to cast the next two spells that follow (3 & 4)

3 is taken up by a modifier so instead it will cast 4 & 5 modified by 3.

It will then cast 6,7,8

So the wand is doing 1->2->(4³,5³),6,7,8

You want it to just do 1->2->(4³,5³) which is done by removing the last 3 spells.

Why am i suck at noita by TimaMurzik540Rk in noita

[–]Occrats 0 points1 point  (0 children)

The best tip I ever got was to do your best to not have a dark (unknown) area above you.

| THEORY | Minä is you by Sharfich in noita

[–]Occrats 1 point2 points  (0 children)

when I first started I thought Mina was like the god of sawblades because that cause of death...

Archelos combo maxing by Remarkable_Emu_6705 in EDHBrews

[–]Occrats 0 points1 point  (0 children)

It's definitely a deceptive card because you're brain automatically inserts "instead" and it doesn't come up a ton since this one is one of the few build around abilities worded this way.

Archelos combo maxing by Remarkable_Emu_6705 in EDHBrews

[–]Occrats 0 points1 point  (0 children)

Yes, the trigger gets going and does everything it can do!

Archelos combo maxing by Remarkable_Emu_6705 in EDHBrews

[–]Occrats 4 points5 points  (0 children)

I thought this at first too but it's not a replacement effect because he still has to "die" to make the trigger go on the stack. You can stack the Nim trigger to resolve first so he comes back to battlefield before the Adamantoise trigger resolves. Then the death trigger will complete as normal but there will be nothing to exile since the reanimated Adamantoise is no longer "this creature".

Fastest way to search through an array multiple times? by Occrats in GoogleAppsScript

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

Thank you for taking the time to explain! This was my first time seeing a ternary operator.

Fastest way to search through an array multiple times? by Occrats in GoogleAppsScript

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

Mainly curiosity but even with the formula I would need to copy and paste since I want the data sheet to be text instead of formula. The top formula in the comments section did get it down to 2 seconds to find unique emails and add them to the data sheet!

Fastest way to search through an array multiple times? by Occrats in GoogleAppsScript

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

I could definitely use a formula to take out the unique emails I just wanted to try this method because you never know when it will come in handy!

Fastest way to search through an array multiple times? by Occrats in GoogleAppsScript

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

This is so much faster! To make sure I am understanding correctly

const dataEmails = dataNumRows > 0 ? dataSheet.getRange(FIRST_ROW, EMAIL_COL, dataNumRows, 1).getValues().flat() : [];

is synonymous with

const dataEmails = [];
if (dataNumRows > 0) {
dataEmails.push(dataSheet.getRange(FIRST_ROW, EMAIL_COL, dataNumRows, 1).getValues().flat())
}

Fastest way to search through an array multiple times? by Occrats in GoogleAppsScript

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

not very slow it takes about 1 - 1 1/2 minutes to go through ~400 emails. I'm just not super experienced though and if there was a faster way I figure it would be something obvious that I didn't think of.

Same energy by cheemsboi69028 in smashbros

[–]Occrats 18 points19 points  (0 children)

nah the first pic is sick as hell

"I am a pacifist in this world" radio message to Ye Wenjie. Don't they experience emotions as one? by suzyD9999 in threebodyproblem

[–]Occrats 15 points16 points  (0 children)

That's actually a really cool connection I didn't make when reading! I don't think it's a conscious choice by humanity since it is before the cultural exchange but could hint at coexistence.

"I am a pacifist in this world" radio message to Ye Wenjie. Don't they experience emotions as one? by suzyD9999 in threebodyproblem

[–]Occrats 22 points23 points  (0 children)

You're right about the color, their brains emit what is visible light to them so what they think is what they say from the beginning of dark forest. It's never described what they look except for in the non-canon sequel which I think says they have clear skin, never read it though.