i think something along the lines of .... more people attacked with their right hands (a legacy trait of why in UK we drive on the left) ... equilibrium was breached ... right-handed people dominated the gene pool?
#Bounty Alert:
100K sats for a great Coffee Shop name that is bitcoin/nostr related.
Name must still make sense to non-bitcoiners and non-nostr users. don't go super heavy, a play on words probably makes most sense.
Name must be catchy, clear, easy to say, 2 to 3 syllables max.
Think something clever like nostr:npub1key55ax33gkl50uqemvl4khrtqrhzm7wzpc7fhseutt5ddkcwcrqgxlt3h but since they have the best name ever. We are on the hunt for the next best name.
This is not a programming bounty. there are no criteria to be met here lol, but I will honor the bounty if I pick your name suggestion. Also it will become the name of the Cafe!
#CoffeeChain has been considered, but it is being used as a name for a shitcoin. so probably i'll have to skip, unless you think it doesn't matter.
Block Brew
Well nostr:npub1yx6pjypd4r7qh2gysjhvjd9l2km6hnm4amdnjyjw3467fy05rf0qfp7kza I don't know why you want these but here they are:








#modernhorrors

The creature from Jekyll Island
look into https://zap.cooking/
Just met someone there who was getting Spanish lessons from a local! Good place to start looking -- probably orange pilled and probably easily purple pilled!
"bitcoin beach el salvador online spanish teacher" :-)
Cosy room with man in armchair and a blackboard sign behind him with the following text "I remember a free internet before it was hijacked".
black-forest-labs/FLUX.1-dev on Hugging Face

WTF happened in the last 10 days of August 2024 to cause a downturn.
Some cannabis themed Halloween fun.



I've got Flux.1 running locally using https://github.com/lllyasviel/stable-diffusion-webui-forge
The best SD model I've used yet 💯
What hardware are you using to run this?
Yeah it's raw. Down and Out and Animal Farm are worth a read, too
My bad ... the units are different so can't plot them on the same graph in that way ... here's the updated code:
```python
import matplotlib.pyplot as plt
import numpy as np
import pandas as pd
import requests
currency = "USD"
response = requests.get(
f"https://mempool.space/api/v1/historical-price?currency={currency}"
)
data = response.json()
df = pd.DataFrame(data["prices"])
df["time"] = pd.to_datetime(df["time"], unit="s")
fig, ax1 = plt.subplots()
ax2 = ax1.twinx()
ax1.plot(df["time"], np.log2(df[currency]), color="Black", marker="o")
ax2.plot(df["time"], np.log10(df[currency]), color="#FF9900")
ax1.set_xlabel("Date")
ax1.set_ylabel(f"Log Base 2 Historical {currency} Price", color="Black")
ax2.set_ylabel(f"Log Base 10 Historical {currency} Price", color="#FF9900")
plt.show()
```
and the corresponding figure (i.e. it's the same shape):

ala
```python
import matplotlib.pyplot as plt
import numpy as np
import pandas as pd
import requests
currency = "USD"
response = requests.get(
f"https://mempool.space/api/v1/historical-price?currency={currency}"
)
data = response.json()
prices = data["prices"]
df = pd.DataFrame(prices)
df["time"] = pd.to_datetime(df["time"], unit="s")
plt.plot(df["time"], np.log2(df[currency]))
plt.ylabel(f"Historical {currency} Price [Log Base 2]")
plt.show()
```









using