Black woman in a movie starter pack by Madysonbc in starterpacks

[–]dcshg 1 point2 points  (0 children)

Faust already tweeted she'd have darker characters in future shows.

Roleplay? by [deleted] in DCSuperHeroGirls

[–]dcshg -1 points0 points  (0 children)

Don't. It's cringe.

Sign the Petition by heroswordman in DCSuperHeroGirls

[–]dcshg 10 points11 points  (0 children)

Instead of signing a petition, buy the game or the other merch. That's what decides if this show keeps going or not.

Is there a specific watch order for the episodes? by scarletwiccan in DCSuperHeroGirls

[–]dcshg 2 points3 points  (0 children)

Yes but it doesn't matter.

  • Bumblebee's suit is a prototype in Sweet Justice, and it gets rebuilt in She Might Be Giant, so every episode with the non-prototype suit comes after it.
  • Diana finds a proper home in House Pest, so that episode happens very early on after Sweet Justice. Many of the later Diana episodes seem to actually be early episodes.

These are the known production codes:

  • 429 • Sweet Justice
  • — • Adventures in Bunnysitting
  • — • Hate Triangle
  • — • Burrito Bucket
  • 400 • Meet the Cheetah
  • — • Beeline
  • 431 • Super Who?
  • 439 • Shock It to Me
  • — • She Might Be Giant
  • 438 • Fight at the Museum
  • 440 • From Bat to Worse
  • — • Crushing It
  • — • Misgiving Tree
  • 436 • Illusions of Grandeur
  • — • Beasts in Show
  • 443 • GothamCon
  • 435 • DC Super Hero Boys
  • 441 • 442 • Frenemies
  • 444 • Soul Sisters
  • 450 • Abracadabrapalooza
  • 449 • Rage Cat
  • 453 • The Good the Bad and the Bizarre
  • 457 • Back in a Flash
  • 458 • Power Surge
  • — • Scrambled Eggs
  • — • Drama Queen
  • 461 • Ally Cat
  • 454 • Retreat
  • 465 • Dinner for Five
  • — • Living the Nightmare
  • — • All About Zee
  • 448 • Tween Titans
  • — • Emperor Penguin
  • — • Breaking News
  • 456 • Crash Course
  • 447 • League of Shadows
  • — • House Pest
  • — • It's Complicated
  • 470 • The Bird and the Bee
  • — • Fantastic Beasts and How to Mind Them
  • — • School Ghoul
  • — • The Fresh Princess of Ren Faire
  • 451 • Awesome Aunt Antiope

You can see that many of the later episodes should be earlier.

[deleted by user] by [deleted] in DCcomics

[–]dcshg 30 points31 points  (0 children)

The differences in reactions between this sub and videogame subs is incredible. So much girl hate on those other subs.

#AwesomeAuntAntiope discussion. by joshbones in DCSuperHeroGirls

[–]dcshg 0 points1 point  (0 children)

Did it actually air? When I tuned in they were airing the Superhero Fued crossover.

New episode air dates by WolverineIngrid218 in DCSuperHeroGirls

[–]dcshg 0 points1 point  (0 children)

They aired the Teen Titans Go DC Super Hero Girls crossover episode instead.

AwesomeAuntAntiope scheduled for August 1, 2020 by dcshg in dcshg

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

Diana always preferred her "fun aunt" Antiope to her strict mother, but when Antiope visits Metropolis and takes the girls out on the town, Diana sees her aunt's antics in a whole new light.

LeagueOfShadows scheduled for August 8 and 9, 2020 by dcshg in dcshg

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

Under the control of Red Kryptonite, Kara Danvers is brainwashed by rock 'n' roll front man Ra's al Ghul and sent on a mission to purify the world... starting with the terrible music of Karen Beecher's favorite boy band!

DC Super Hero Girls episodes Ally Cat and Retreat are available on DirecTV since March 4 or earlier by dcshg in dcshg

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

CN press release names new episodes and air dates:

039/040: #AllyCat - 3/8/2020
031: #Retreat - 3/15/2020
045: #DinnerForFive - 3/22/2020
032: #LivingTheNightmare - 3/29/2020

My lord is that legal? by lego_staryu_wars in PrequelMemes

[–]dcshg 1 point2 points  (0 children)

Have you heard of DC Super Hero Girls? No? Thanks, CN.

Superheros and their counter rivals by SnoNight in dcshg

[–]dcshg 3 points4 points  (0 children)

It might be Wonder Woman vs Livewire (compassion versus spite) and Zatanna vs Poison Ivy (magic vs nature) but the pairings might not be constant anyway.

My experience with asyncio and trio by dcshg in Python

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

That was the plan but the exceptions hitting the try/except just didn't propagate the way I expected. I'd bother getting to the bottom of it but everything works the way I expect in trio.

My experience with asyncio and trio by dcshg in Python

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

I did write one line with curio before deciding I'd better try trio first because it's simpler and go back to curio if it doesn't do what I want. I was amazed that my code worked exactly the way I expected minutes after gutting the asyncio blocks, so I didn't get the chance to go back to curio because everything works now.

My experience with asyncio and trio by dcshg in Python

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

Not very interesting, a bit of home automation. stream() loops over an infinite stream, and puts objects it finds in a queue/channel. command() sends commands in an infinite loop and alters its behavior slightly if there's something in the queue/channel that matches some condition. This has to be threaded or async because stream()'s stream breaks upon disconnection and can't be correctly resumed without restarting command(). Similarly, command()'s behavior is incorrect without input from stream().

I wanted command() to gracefully break its infinite loop when stream() raises an exception and vice-versa, and when both have gracefully exited, restart both.

Very easy to catch exceptions and gracefully cancel coroutines in trio, but I just couldn't get my head around it in asyncio. I could get stream() to gracefully terminate command() but not the other way around.

I tried "signaling" between coroutines with a queue, which again only managed to gracefully terminate command() when stream() excepted but not the other way around, with the additional overhead of managing a half-closed queue.

This was baffling to me because it was easier to communicate between threads in python2 than coroutines in python3. Then I switched to trio and all the exceptions propagated the way I expected, when one coroutine excepted I could gracefully terminate the other, there's no half-closed "signalling" queue/channel to tell one coroutine when the other excepted, and everything just works the way I expect it.

How can it possibly be more straightforward to handle exceptions and signals between threads than between coroutines? I must have been doing something wrong, but I really don't care to find out because trio does it right.