This blog looks at this real world as, if I was sitting in a cyberpunk pub in a Sci-Fi parallel universe with a super skunk ciggy and a sweet bourbon, and this world was the video game. I am a fully independent artist with no management or distribution contracts. Piracy is a crime and harms artists. Report abuse, theft and piracy to the local authorities to help free, independent artists! DeepSeek calls this "digital neo-outsider art"
My music on your prefered Streaming Service
Friday, 21 March 2025
You run a fine Enterprise in Istanbuhl
If Erdogan
To be honest,
He brought out the Trash
Americans,
So, if a
Kursk?
The Lies in Religion
13 “You are the salt of the earth; but if the salt loses its flavor, how shall it be seasoned? It is then good for nothing but to be thrown out and trampled underfoot by men.
4 Then Jesus was led up by the Spirit into the wilderness to be tempted by the devil. 2 And when He had fasted forty days and forty nights, afterward He was hungry. 3 Now when the tempter came to Him, he said, “If You are the Son of God, command that these stones become bread.”
You know they say when you do the passing
you'll come to a river and have to pay the ferry man. Until here I thought I'd take his job until the next comes asking so he can do his passing, finally, and never was scared of passing nor minded being poor. Now, I stay poor and swim or make money so I can pay, but I decided to fight that Angel that doubted our trust in love and God so God pushed his humans through this Darkness to make sure he has walk like us.
#Aleppo Or We know the don't know
Watching this,
Can you imagine
Thursday, 20 March 2025
IRA & Associates
TheGermans - Mind Set
Another drop point
Look Confeds,
Proof of my Collective Darwinist Evolutionairy Theory
Bboys as in Breakdancing?
Wednesday, 19 March 2025
Did you ever had neighbours
When you thinh they are doing better
Macarone
BKA
The YouTube Algorythm
I just woke up in Germany
Tuesday, 18 March 2025
TheGermans - Mind Set
Monday, 17 March 2025
The Pentagon and the Core of the Problem
Remember the Surpra
What a Crown and Gun have in comon...
The Lions of Jerusalem - The Jewish Kings
TheGermans - Mind Set
TheGermans - Situation Update
Do you recall who finished second to Owens in Hitler's fuck face?
Mack Robinson
Mack Robinson finishes four-tenths of a second behind Jesse Owens, winning the silver medal, in the 200m final at the 1936 Olympics. ABC News. Other Black athletes found success, as well.30 Jul 2024
Google does not know how Germans did in that race. But Hitler leaving defeated many remember.
You never won Germans. You only ever caused pain loosing... but proclaiming Victory thereafter #ticktack
#neversurrender
TheGermans - Mind Set
What do you think do they want to do in Dubai for real????
The Toddler in me ...
Or in different words...
Do you like that humor here and
Sunday, 16 March 2025
My Brothers,
you are missing Town Furniture. Where to the good people rest, take a seat and enjoy the moment? They lean at their cars...
TheGermans - Mind Set
TheGermans - Mind Set
Provos Gangster
From Vietnam to Gangster
#provos #terroristgangs #IRAmovement
The best compliment I praise I ever got?
Saturday, 15 March 2025
TheGermans - Mind Set
TheGermans - Mind Set
TheGermans - Mind Set
Watch that report,
Yeah. What actually happend,
is that I did not take the artificial Diamond, but the one I ordered .... So, I am aware of atleast one duplicate. Lord Of The Rings is as aggravated as the German selfperception....
From Antwerps, because they cut better and real once are purer. Artificial once have a milky reflection that I can see. This one might have little black encapsuls, but if, I'd have needed a lense.
So, funny that look a like and kill to cause love songs by sadness...as funny as getting dead Police in return for all the Bullshit will be for me, BKA The Corrupt Nazi Cunts still like GeStaPo GrandDad. #ticktack
#IronCladTheGoblin
Remember the Supra?
If this guy
Friday, 14 March 2025
Network Marketing aka
TamTam - Hardcore Nerd DS Gear??
from binance.client import Client
from datetime import datetime
import time
import threading
from dotenv import load_dotenv
import os
import sys
import itertools
import signal
# ANSI Colors
RED = "\033[91m"
GREEN = "\033[92m"
YELLOW = "\033[93m"
CYAN = "\033[96m"
RESET = "\033[0m"
# Load API keys from .env
load_dotenv()
BINANCE_API_KEY = os.getenv("BINANCE_API_KEY")
BINANCE_API_SECRET = os.getenv("BINANCE_API_SECRET")
# Initialize Binance Client
client = Client(BINANCE_API_KEY, BINANCE_API_SECRET)
# Configuration
CHECK_INTERVAL = 3600 # 1 hour between NVT checks
COINS_TO_MONITOR = ['BTC', 'ETH', 'XRP', 'ADA', 'DOGE']
NVT_UNDERVALUE_THRESHOLD = 35
PRICE_JUMP_THRESHOLDS = {'1m': 1.5, '5m': 2.0, '15m': 3.0}
# CoinGecko ID Mapping (Global Scope)
COINGECKO_IDS = {
'BTC': 'bitcoin',
'ETH': 'ethereum',
'XRP': 'ripple',
'ADA': 'cardano',
'DOGE': 'dogecoin'
}
# Activity monitoring
stop_event = threading.Event()
spinner_chars = itertools.cycle(['|', '/', '-', '\\'])
def spinner():
"""Show rotating spinner while processing."""
while not stop_event.is_set():
sys.stdout.write(f"{CYAN}\rActive {next(spinner_chars)} {RESET}")
sys.stdout.flush()
time.sleep(0.2)
sys.stdout.write('\r \r') # Clear spinner
def get_nvt_ratio(symbol):
"""Calculate NVT Ratio using CoinGecko/Blockchain.com data."""
try:
time.sleep(1) # Rate limit delay
coin_id = COINGECKO_IDS[symbol]
cg_data = requests.get(
f"https://api.coingecko.com/api/v3/coins/{coin_id}"
).json()
if 'market_data' not in cg_data:
print(f"{RED}CoinGecko data missing for {symbol}{RESET}")
return None
market_cap = cg_data['market_data']['market_cap']['usd']
# Get on-chain volume
onchain_volume = requests.get(
"https://api.blockchain.info/charts/estimated-transaction-volume-usd",
params={'timespan': '1days', 'format': 'json'}
).json()['values'][0]['y']
return market_cap / onchain_volume
except Exception as e:
print(f"{RED}NVT Error for {symbol}: {str(e)}{RESET}")
return None
def price_jump_monitor(symbol):
"""Monitor price jumps across intervals."""
print(f"{YELLOW}Starting price monitor for {symbol}{RESET}")
while not stop_event.is_set():
try:
for interval, threshold in PRICE_JUMP_THRESHOLDS.items():
candles = client.get_klines(
symbol=f"{symbol}USDT",
interval=interval,
limit=5
)
if len(candles) < 2:
continue
old_price = float(candles[0][4])
new_price = float(candles[-1][4])
change_pct = ((new_price - old_price)/old_price) * 100
if abs(change_pct) >= threshold:
direction = "↑" if change_pct > 0 else "↓"
print(
f"{RED}{datetime.now().strftime('%H:%M:%S')} - "
f"{symbol} {interval}: {direction}{abs(change_pct):.2f}% "
f"({old_price:.2f} → {new_price:.2f}){RESET}"
)
time.sleep(30)
except Exception as e:
print(f"{RED}Price error ({symbol}): {str(e)}{RESET}")
def nvt_screener():
"""Main screening/monitoring function."""
monitored_coins = set()
print(f"{CYAN}System started at {datetime.now().strftime('%Y-%m-%d %H:%M')}{RESET}")
while not stop_event.is_set():
print(f"\n{YELLOW}=== NVT Screening Cycle ==={RESET}")
for symbol in COINS_TO_MONITOR:
nvt = get_nvt_ratio(symbol)
if nvt is None:
continue
status_color = GREEN if nvt < NVT_UNDERVALUE_THRESHOLD else RED
print(f"{status_color}{symbol}: NVT {nvt:.1f}{RESET}")
if nvt < NVT_UNDERVALUE_THRESHOLD:
if symbol not in monitored_coins:
monitored_coins.add(symbol)
thread = threading.Thread(
target=price_jump_monitor,
args=(symbol,),
daemon=True
)
thread.start()
else:
if symbol in monitored_coins:
monitored_coins.remove(symbol)
time.sleep(CHECK_INTERVAL)
def signal_handler(sig, frame):
"""Handle Ctrl+C gracefully."""
print(f"\n{YELLOW}Shutting down...{RESET}")
stop_event.set()
sys.exit(0)
if __name__ == "__main__":
signal.signal(signal.SIGINT, signal_handler)
spinner_thread = threading.Thread(target=spinner, daemon=True)
spinner_thread.start()
nvt_screener()
More weired AI stuff...
or why from here I take a shoot out with German Authority ever single time over explaining myself?
Using Binance data (as of 2023), the top candidates would likely include:
Dogecoin (DOGE)
Shiba Inu (SHIB)
XRP (XRP)
DOGE 355,623,047% Extremely "undervalued" by this metric
SHIB 10,933,333,333,333% Off-the-charts "undervalued"
XRP 36,034,391% Moderately "undervalued"
I also need to address their original metric (supply/price) and how comparing it to market cap strategies can be tricky. Maybe suggest alternative metrics like NVT ratio or active addresses, which are more crypto-specific.
They might be looking for validation of their approach but also want to understand the limitations. Emphasize that while their model is creative, crypto requires different considerations. Offer to refine the model with these factors or provide examples of alternative metrics.
















