Avatar
SpiralCrunch
93b7fda11b5a07cf865ca8bc8b854eac3a472cd876f63b30854a0a513b1871e7
Nostr/Bitcoin/Linux

As soon as I realize the government can censor transactions I sold. I need unstoppable on corruptible money. Ethereum is not that.

[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]

The only VHS I ever special ordered was the first Ghost in the Shell with subtitles.

GM โ˜€๏ธ Yellow!

lightning:LNBC1694200N1PJP2NC0PP5Z3784PMTYC9XCS8PCXMEWV53KRDJE8QW6H2UKS5JPX0VQJQQ48MQDQJFEHHXARJYP6X2UM5YQCQZPGXQYJW5QRZJQFWJ3HZVFAWWGX2VX8P3PYFFE46PLT7PLUHKAFFLJL0Z7KY80V3F2ZLTU5QQ2GQQQQQQQQLGQQQQ86QQ9QSP502XZVMUCUQ2DD9KZFD9PHXFJMXAJN0F3T787CQEPA9QWPYC766VS9QYYSSQ9H6XGAY48H4EV2P87M7ZTKM6AST8HPRVVG8RZ7KYGE2CYMQNTJ7SSVDAYW2WE9SYK962WY53NSHX9H0AG28HRLVALY4DSEJXHJLA9MSQXWKC54

Testing my first lnd node

I wanted to know which app you were referring to with "Itโ€™s not the most user-friendly app yet, but it works ๐ŸŽ‰"

It does feel amazing to me to take an 8 year old laptop install start nine get Bitcoin core and lnd connected to a Zeus wallet and I can send a single sat to anywhere I want, privately.

Replying to Avatar ZEUS

Soon.

I just got Zeus working with embassyOS. Lol I'm excited and nervous.

Yes!!!

IBD complete ๐Ÿ’ฏ

Unless you heat with a new miner. If you get ~75% - 100+% of the cost of the electricitys cost back in Bitcoin the perspectives change.