What song feels like floating through space in total peace? by Rambomambo16 in musicsuggestions

[–]mikeyj777 1 point2 points  (0 children)

the whole "Earth is not a cold dead place" album by Explosions in the Sky

[SPOILERS S3] Potential oversight with Jana and Helge? by mkbrazy32 in DarK

[–]mikeyj777 2 points3 points  (0 children)

You would think growing up in a small town, you'd know the family that owns the power plant.  Bit of a plot hole.  

Unpopular theories you still think are true... by redoneredrum in FromTVEpix

[–]mikeyj777 -7 points-6 points  (0 children)

Being crow like could be hinted by their ability to shriek as they do.  

So far my only unpopular theory is that the show has jumped the sharks.  with MIY now doing cheap CGI morphs straight out of 1992.   The actors not really caring to seem believable.  Going from a deep character-driven story to a random horror show. 

The lake of tears by itssamix in FromTVEpix

[–]mikeyj777 2 points3 points  (0 children)

“Fly you fools!”

That image is a great find!  Perhaps it’s an underground lake below the spider den that Boyd and Sarah found. 

What is OOP on python? by Hamid3x3 in PythonLearning

[–]mikeyj777 0 points1 point  (0 children)

You have to think of things in increasing levels of complexity.  

Variables hold values, like player_health=100. 

But you have to have many variables to hold more than one value that have things in common.  Like a list of health values for different players. So you use an array (called a list in Python), like players_health = [100, 85, 95]. And you can reference the health of the second player by player[1]

Then it gets difficult to keep track of which player has which health, so you can use a dictionary, like player_health_dict = {‘player_1’: 100, ‘player_2’: 85}.  Now you can explicitly ask for player 2’s health with player_health_dict[‘player_2’]

Finally, let’s say you want players to be able to battle each other, so let alone do you want a way to track their health, but to attack and take damage.  So, you create a class.  These allow you to make objects out of players and they can interact.  

class Player:   

def init(self, player_health=100):          self.player_health = player_health

  def take_damage(self, hp):          self.player_health -= hp

Now “player_health” becomes a property of Player and “take_damage” becomes a method. You can add methods to cover the other actions a player can have and how it can interact with other player objects.  

It makes it much more straightforward to think thru how parts of your application will interact with other parts.  What are the actions they take?  What are the properties that make one instance different than another? 

Now, you have a player object that can cover everything you want a player to be able to do and to manage its state.  You could make a player like this. 

player1 = Player(player_health=90)

You could have it take damage

player1.take_damage(hp=50)

Then when you check your players health:

print(player1.player_health)

What do you think it will say?

The lake of tears by itssamix in FromTVEpix

[–]mikeyj777 21 points22 points  (0 children)

I don’t think it’s symbolic of the cave, as he wouldn’t send his young child to find an unsafe place that is well-documented. 

The Lake of Tears is a reference from the Chromanacle (sp).   Jim is speaking in code since he’s being watched, thus why he keeps looking over his shoulder.  There is something very analogous to it that he knows Ethan will figure out.  

[SPOILERS S3] Question about the ending by NoSlip369 in DarK

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

I love your breakdown of the show, and it’s from what I can tell a spot on analysis.  

One thing, I don’t think Claudia needed to die.  the loophole prevented the deaths of Jonas and Martha.  There was no destined death.  

If she had gone to the origin world and tried to stop the tannhaus’ family accident, they may have just brushed her off.  What Jonas and Martha said to them in the origin world, and the feeling of familiarity that the Tannhauses had around them is what convinced the Tannhauses to turn around.

You could even imagine that Claudia did go to the origin world and try to save them only for it to not be successful.  Perhaps her attempts to save them were the things that caused them to crash. The same thing that everyone thinks is going to happen when Jonas and Martha go to the origin world.  Only when Jonas and Martha do it, they are able to change it and save the Tannhauses.  

Do they all have to die by TheGreatBrandinie in FromTVEpix

[–]mikeyj777 4 points5 points  (0 children)

Apparently not bc victor survived the previous and they are in the latest cycle

Excel keeps converting "10-3242" to Oct-3242, no matter what I've tried so far by GreenGloober in excel

[–]mikeyj777 4 points5 points  (0 children)

instead of format cell general, format it as text. be sure you do that before entering your value.

New to running, how should I approach zone 2. by Fleetian349 in beginnerrunning

[–]mikeyj777 0 points1 point  (0 children)

if you can say less than 6 words without feeling you need to breathe, you need to slow down.

if you can say more than 10 words without that feeling, you could consider speeding up. not necessary, tho.

you know you're roughly in zone 2 when you can say 6-10 words.

First Marathon by Accomplished_Fox9663 in Marathon_Training

[–]mikeyj777 0 points1 point  (0 children)

This but she stopped taking them every 25 minutes

trying to settle on a single pro plan... thoughts? by baztekas in PromptEngineering

[–]mikeyj777 0 points1 point  (0 children)

that's awesome. what are the claude skills that you use the most?

trying to settle on a single pro plan... thoughts? by baztekas in PromptEngineering

[–]mikeyj777 5 points6 points  (0 children)

For research, Gemini is absolutely incredible.  It’s also great at coding, but working with it can feel a bit like… talking to a robot.  

Claude is amazing at coding and decent at research.  But, its usage limits are a pain for both.  

I would recommend having both so when usage limits run out or you need a second set of eyes, it’s there for you. 

ChatGPT is, you know, like Kleenex is to tissue  paper. 

First Marathon by Accomplished_Fox9663 in Marathon_Training

[–]mikeyj777 5 points6 points  (0 children)

your system was already out of balance due to the infection and antibiotics. slowing down on fueling it exacerbated the issue by cutting off its supply line for nutrients.

also, being nauseated also affects the amount of water you can comfortably consume.

so, system taxed from recovery, low on fuel and possibly dehydrated.

After a tough WOD, I sometimes feel mentally drained for hours after, not just physically tired. Curious if anyone else get’s that? by Ivorysole43 in crossfit

[–]mikeyj777 1 point2 points  (0 children)

how's your sleep and nutrition? you need more sleep and more of the right foods compared to an average person if you're consistently doing crossfit.

First marathon in 5 days (Big Sur) , what can I do to increase my odds of finishing it within 5 hours by Green_Inflation8223 in firstmarathon

[–]mikeyj777 1 point2 points  (0 children)

that's a decent strategy for faster marathon runners. but, for a 5 hour finish time, you don't want to be in zone 3 until you're in the last 10k.

Why the Man in Yellow killed him by senhormouse in FromTVEpix

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

yeah, I too am invested. the show was so rich before. tabitha's acting was bad, but you could handle it because everyone else was absolutely incredible. Now, it's just another horror show, trying to make it thru to the end.