SpiralCrunch's avatar
SpiralCrunch
spiralcrunch@pythonwebtest.spirals-archive.ddns.net
npub1jwml...lax5
Nostr/Bitcoin/Linux
SpiralCrunch's avatar
SpiralCrunch 2 years ago
Fast status: 4.69 days or 112.5 hours feeling good I have surpassed my goal of 4 days. No food only water, tea, coffee and salt. New goal 5 days now, maybe 6. Lfg! #ketosis #autophagy #grownostr image
SpiralCrunch's avatar
SpiralCrunch 2 years ago
Fast status: 103 hours or 4.29 days feeling good I have surpassed my goal of 4 days. No food only water, tea coffee and salt. Taking it to 5 days now. Lfg! #ketosis #autophagy #grownostr
SpiralCrunch's avatar
SpiralCrunch 2 years ago
74.73 hours or 3.114 days into current fast. Feeling good thinking in going to make my goal of 4 days. No food only water, tea coffee and salt. #ketosis #autophagy #grownostr
SpiralCrunch's avatar
SpiralCrunch 2 years ago
64.4 hours or 2.683 days into my current fast #kitosis #atophagy
SpiralCrunch's avatar
SpiralCrunch 2 years ago
1.635 days or 39.23 hours of no food. Fasting for #Atophagy and #kitosis #grownostr
SpiralCrunch's avatar
SpiralCrunch 2 years ago
24 hours into my fast. #Atophagy #kitosis #grownostr
SpiralCrunch's avatar
SpiralCrunch 2 years ago
[code] import numpy as np # Create a 10x10 matrix with all zeros grid = np.zeros((10, 10)) # Place some rocks and food in the grid grid[2, 2] = -1 # Rock grid[5, 7] = -1 # Rock grid[3, 6] = 1 # Food grid[8, 1] = 1 # Food # Set the character's starting position x, y = 0, 0 # Move the character through the grid while True: # Display the grid and the character's position for i in range(10): for j in range(10): if i == y and j == x: print('C', end=' ') # Character elif grid[i, j] == -1: print('X', end=' ') # Rock elif grid[i, j] == 1: print('F', end=' ') # Food elif grid[i, j] == 2: print('*', end=' ') # Path else: print('_', end=' ') # Empty print() # Check for food and rocks at the current position if grid[y, x] == -1: print("Oops! You hit a rock.") break elif grid[y, x] == 1: print("Yum! You found some food.") grid[y, x] = 0 # Mark the current position as a path grid[y, x] = 2 # Prompt the user for the next move direction = input("Which way do you want to move? (up/down/left/right) ") # Update the character's position based on the input if direction == 'up' and y > 0: y -= 1 elif direction == 'down' and y < 9: y += 1 elif direction == 'left' and x > 0: x -= 1 elif direction == 'right' and x < 9: x += 1 else: print("Invalid move. Try again.") # Clear the console to make the grid easier to read print("\n" * 100) [/code]