• 0 Posts
  • 72 Comments
Joined 1 year ago
cake
Cake day: August 27th, 2023

help-circle










  • I love the humor in it. Gordon and Lamarr racing to deliver some news was one of the funniest goddamn things I’ve ever seen (trying not to spoil it if someone wants to watch and hasn’t yet). But that humor was a little too juvenile at the very start. My guess has been that the earlier stuff was for the benefit of funding. They expected Family Guy in Space, so he delivered it, for a handful of episodes, then took the show where it was supposed to be.








  • I suspect/hope she’s not “against” using break and continue as much as trying to teach your brain to solve the type of problem at hand without relying on breaks.

    Like this

    const int JUST_THE_WORST_NUMBER = 13;
    
    for (int i = 0; i < 100; i++)
    {
        if (i % 2 == 0)
            continue;
    
        if (i >= JUST_THE_WORST_NUMBER)
            break;
    
        Console.WriteLine(i);
    }
    
    

    could effectively be rewritten like this, which I think actually is clearer in a way:

    const int JUST_THE_WORST_NUMBER = 13;
    foreach (int i in Enumerable.Range(0, 100).Where(i => i % 2 != 0).TakeWhile(i => i < JUST_THE_WORST_NUMBER))
    {
        Console.WriteLine(i);
    }
    
    

    Treat it as a thought exercise and just do it her way. Like someone else said, it’s also good practice at unhappily conforming to your organization’s standards and practices.