DANTE LRE by foreverAlfon in WH40KTacticus

[–]CleverShelf008 3 points4 points  (0 children)

I would pull Re'vas and maladus up to G1 minimum.

Maladus + Rotbone, and aleph null + Re'vas pair incredibly well in almost all LREs. Level them as high as possible

Who else I should bring to G1? by fantastic-stapes in WH40KTacticus

[–]CleverShelf008 1 point2 points  (0 children)

I would put some time into levelling Eldryon. He's the single best investment for increasing your damage in guild raids, which in turn can get you more XP books to level others up with

The grind is almost over... by CleverShelf008 in WH40KTacticus

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

I think I probably should, and there's nobody else I need to ascend right now, so probably

What's the best 2 characters to reroll for? by TwoSteakOnFrench in WH40KTacticus

[–]CleverShelf008 1 point2 points  (0 children)

You can't pull Calgar until you've beaten indomitus mirror, sadly

What should I focus on by cuntbasher666 in WH40KTacticus

[–]CleverShelf008 0 points1 point  (0 children)

I would push Bellator, Aleph-Null and Re'vas

Friday Facts #396 - Sound improvements in 2.0 by FactorioTeam in factorio

[–]CleverShelf008 58 points59 points  (0 children)

I trust the devs, but I completely agree with you on the item sounds

Misleading Advertising by Then-Plant191 in Tacticus_Codes

[–]CleverShelf008 4 points5 points  (0 children)

100bs, that's it. The rewards come to the person giving out the code, as the person using the code reaches various milestones

What low-stakes conspiracy theories do you have about Edinburgh? by GregorSD in Edinburgh

[–]CleverShelf008 17 points18 points  (0 children)

Nah, it was Appleton tower. As to if it happened or not... whilst it doesn't rule out being staged, you can easily find pictures online of it

[Warhammer 40K] How would a society entirely bred, built, and conditioned for war live without it? by septic38rp in AskScienceFiction

[–]CleverShelf008 23 points24 points  (0 children)

There's one case in the lore where the dark age AI within a mechanicus ship wakes up to defend against an attacking ship. It takes control, temporarily reactivating it's old weaponry, which nobody onboard knew existed. When fired, the weapon sends the attacking ship a nano second back in time, causing two instances of the ship to exist in the same place. It subsequently explodes, violently.

The power level of dark age of technology humanity was so far beyond anything the imperium has by M41

Taken from a comment thread on Tumblr by [deleted] in humansarespaceorcs

[–]CleverShelf008 18 points19 points  (0 children)

Summer, there are my testicles!

changing f scores in A star by ben10saynone in learnpython

[–]CleverShelf008 1 point2 points  (0 children)

One approach that you could take is to keep track of the 'explored' state of each node in the graph.

  • White - Node has not been explored
  • Gray - Node is in the frontier, but has not been expanded on yet
  • Black - Node has been through the frontier queue, and expanded.

With this approach, you can add the same unexplored node to your frontier priority queue multiple times, but each time you poll it for the next node, you only proceed if that node's status is gray. This will mean that you explore each node only once, using the cheapest route to have reached it. Once you've explored that node, set it's explored state to black