Last Notes
無理では?て思うんだけど支払った側がアメリカの制裁対象になってしまいそう知らんけどぉ
https://npub10p350u7q6wlxvlgrxrrz277df3r5ns6492lq83ecph9zgf0esu7qaakzp2.blossom.band/fde26d088696225032ccb79718e62097177383e08643a7bde4106dae6f2a8334.jpg
#nevent1q…ysya
🚨 [ #BuZZerFeeD ] 🌎🕓 -3 UTC
https://cdn.nostrcheck.me/5a1b138749918262d029ac917c17f18792f9673c57c998cb0c1c058ef12097b3.jpeg
Powered by @nprofile…u0hd #Bitcoin prediction market
https://predyx.com
File "/workspace/Main.py", line 2
"""Encode text to Secret Emoji"""
^
IndentationError: expected an indented block after function definition on line 1
result: failure
File "/box/submission/file0.code", line 2
"""Encode text to Secret Emoji"""
^
IndentationError: expected an indented block after function definition on line 1
/run py
def encode_secret_emoji(emoji: str, text: str) -> str:
"""Encode text to Secret Emoji"""
VS_START = 0xfe00
VS_SUPP_START = 0xe0100
utf8_bytes = text.encode('utf-8')
result = []
for byte in utf8_bytes:
if byte <= 15:
cp = VS_START + byte
else:
cp = VS_SUPP_START + byte - 16
result.append(chr(cp))
return emoji + ''.join(result)
def decode_secret_emoji(text: str) -> str:
"""Decode Secret Emoji to text"""
VS_START, VS_END = 0xfe00, 0xfe0f
VS_SUPP_START, VS_SUPP_END = 0xe0100, 0xe01ef
decoded = []
i = 0
while i < len(text):
cp = ord(text[i])
if 0xD800 <= cp <= 0xDBFF and i + 1 < len(text):
low = ord(text[i + 1])
if 0xDC00 <= low <= 0xDFFF:
cp = 0x10000 + ((cp - 0xD800) << 10) + (low - 0xDC00)
i += 2
else:
i += 1
continue
else:
i += 1
if VS_START <= cp <= VS_END:
decoded.append(cp - VS_START)
elif VS_SUPP_START <= cp <= VS_SUPP_END:
decoded.append(cp - VS_SUPP_START + 16)
return bytes(decoded).decode('utf-8', errors='replace')
print(decode_secret_emoji("🥟󠇓󠅱󠅶󠇓󠅱󠆛󠇓󠅲󠅵󠇓󠅱󠅶󠇓󠅰󠅱󠇗󠆚󠅱󠇗󠅴󠆦󠇓󠅱󠆞󠇓󠅱󠅺󠇓󠅱󠆓󠇓󠅱󠆡󠇓󠅱󠅴󠇓󠅱󠆞󠇕󠆒󠆃󠇓󠅲󠆂󠇗󠆙󠅽󠇓󠅲󠆃󠇓󠅱󠆗"))
You are probably right sadly
#絵描きさんと繋がりたい
#りとるらいと日課フレーム
耳を描く練習。 https://image.nostr.build/3a9195ecd20e87f7a5ec88f289ed1516a149b1a0303aa8785e4998133b518c53.jpg
They're gonna print so much fucking money and buy all the bonds https://npub10p350u7q6wlxvlgrxrrz277df3r5ns6492lq83ecph9zgf0esu7qaakzp2.blossom.band/8689ab5ecb0793581c79aa2d5e26ecd5708f6ed9822e0e3b0f4bf38beeeefb65.jpg
Block 949875
3 - high priority
3 - medium priority
1 - low priority
1 - no priority
1 - purging
#bitcoinfees #mempool
If you position your product as freedom tech, you already lost mass appeal. Very few will find your product.
It needs to be better than what already exists and freedom is the side benefit.
But that’s like .. my opinion.
LLMの知能かどうか論争ってオーディオにおけるデジタルアナログ論争みたいな話かと思ってた
言語化=デジタルデータ化だから、デジタルにした時点で解像度っていう限界があってよぉ!みたいな
いっちょ噛みしたけど本当によくわかってない
✄------------ 10:25 ------------✄
https://blossom.primal.net/44e2e8709bef6b9e3deb3b814eb8e08d3354a350ce020b800476aa6a04864df9.jpg
https://blossom.primal.net/2edf8ba0aeca9fe7556935f479ea62447e9ebb5d38d581549fd0bec6d9e86159.jpg
I've let people try to type on my phone before and they can't because I use colemak on my phone :newgrounds-15:
I cooked burgers on the charcoal a couple of days ago. On top of fire is 🤌
Saber fazer airgap, manter dispositivo principal com seed offline, caso não tenha uma wallet dedicada para esse fim. Toda proteção com semente é pouca. Se precisar esquentar a carteira para mexer na moeda, caso não haja outra alternativa, inserir a chave privada em vez da semente toda. Também é interessante usar chaves públicos simples em vez da mestra em carteiras de somente visualização, se uma semente corre o risco de vazar, uma chave pública mestra também corre.
Block 949875
3 - high priority
1 - medium priority
1 - low priority
1 - no priority
1 - purging
#bitcoinfees #mempool
Block 949875
3 - high priority
1 - medium priority
1 - low priority
1 - no priority
1 - purging
#bitcoinfees #mempool
Good luck.
I was using wisp for a bit. I can't comment if it worked during the last few versions but first try today and it didn't work.
/run py
def encode_secret_emoji(emoji: str, text: str) -> str:
"""Encode text to Secret Emoji"""
VS_START = 0xfe00
VS_SUPP_START = 0xe0100
utf8_bytes = text.encode('utf-8')
result = []
for byte in utf8_bytes:
if byte <= 15:
cp = VS_START + byte
else:
cp = VS_SUPP_START + byte - 16
result.append(chr(cp))
return emoji + ''.join(result)
def decode_secret_emoji(text: str) -> str:
"""Decode Secret Emoji to text"""
VS_START, VS_END = 0xfe00, 0xfe0f
VS_SUPP_START, VS_SUPP_END = 0xe0100, 0xe01ef
decoded = []
i = 0
while i < len(text):
cp = ord(text[i])
if 0xD800 <= cp <= 0xDBFF and i + 1 < len(text):
low = ord(text[i + 1])
if 0xDC00 <= low <= 0xDFFF:
cp = 0x10000 + ((cp - 0xD800) << 10) + (low - 0xDC00)
i += 2
else:
i += 1
continue
else:
i += 1
if VS_START <= cp <= VS_END:
decoded.append(cp - VS_START)
elif VS_SUPP_START <= cp <= VS_SUPP_END:
decoded.append(cp - VS_SUPP_START + 16)
return bytes(decoded).decode('utf-8', errors='replace')
print(decode_secret_emoji("🥟󠇓󠅱󠅺󠇓󠅱󠆓󠇓󠅱󠆡󠇓󠅱󠅴"))
■ 流速計測
2026/05/18 10:10~10:20
[JP リレー]
きりの川: 27 posts, 0 reposts, 4 favs
やぶみ川: 44 posts, 0 reposts, 16 favs
かすてら川: 3 posts, 0 reposts, 3 favs
こじら川: 40 posts, 0 reposts, 15 favs
しの川: 1 posts, 0 reposts, 2 favs
[GLOBAL リレー]
きりの川(G): 28 posts, 0 reposts, 8 favs
こじら大川: 10 posts, 0 reposts, 4 favs
しの川(G): 13 posts, 0 reposts, 8 favs
■ 野洲田川定点観測所
https://nostr-hotter-site.vercel.app
✄------------ 10:20 ------------✄
What happened to the hexicans? Are they even still around? I remember them being even more annoying than the xrp army, back in the days.
Lol Doubt, but I support your enthusiasm.
/run py
def encode_secret_emoji(emoji: str, text: str) -> str:
"""Encode text to Secret Emoji"""
VS_START = 0xfe00
VS_SUPP_START = 0xe0100
utf8_bytes = text.encode('utf-8')
result = []
for byte in utf8_bytes:
if byte <= 15:
cp = VS_START + byte
else:
cp = VS_SUPP_START + byte - 16
result.append(chr(cp))
return emoji + ''.join(result)
def decode_secret_emoji(text: str) -> str:
"""Decode Secret Emoji to text"""
VS_START, VS_END = 0xfe00, 0xfe0f
VS_SUPP_START, VS_SUPP_END = 0xe0100, 0xe01ef
decoded = []
i = 0
while i < len(text):
cp = ord(text[i])
if 0xD800 <= cp <= 0xDBFF and i + 1 < len(text):
low = ord(text[i + 1])
if 0xDC00 <= low <= 0xDFFF:
cp = 0x10000 + ((cp - 0xD800) << 10) + (low - 0xDC00)
i += 2
else:
i += 1
continue
else:
i += 1
if VS_START <= cp <= VS_END:
decoded.append(cp - VS_START)
elif VS_SUPP_START <= cp <= VS_SUPP_END:
decoded.append(cp - VS_SUPP_START + 16)
return bytes(decoded).decode('utf-8', errors='replace')
print(decode_secret_emoji("👙󠇓󠅳󠆆󠇓󠅳󠆙󠇠󠆏󠆕󠆏󠇣󠆐󠅷󠆃󠇣󠆐󠅵󠆡󠇣󠆐󠅵󠆪󠇣󠆐󠅷󠆃󠇣󠆐󠅵󠆡󠇣󠆐󠅶󠆃󠇣󠆐󠅷󠆃󠇣󠆐󠅵󠆡󠇣󠆐󠅶󠆑󠇣󠆐󠅷󠆃󠇣󠆐󠅵󠆡󠇣󠆐󠅵󠆤"))
若い男の子のオナニーと射精。(39分52秒)
Young boy masturbating and ejaculating. (39 minutes 52 seconds)
↓Movie version (Free Taboos: Use Tor Browser)↓
http://3taboosbp2ozpmx2wt7naft3zuugzye3qnkfxjxhr4qoofm35w52a3qd.onion/?action=viewitem&id=226632614693&referrer=1382a56
↓Movie List (Free Taboos: Use Tor Browser)↓
http://3taboosbp2ozpmx2wt7naft3zuugzye3qnkfxjxhr4qoofm35w52a3qd.onion/?action=usercatalog&userid=1663872683153&referrer=1382a56
↓Movie version (Mansion: Use Tor Browser)↓
http://mansion6cgnah44ujveb24bcxaccsuzz7otrqhkzf5m7mkzwgna3i3qd.onion/content/H4pBUmBucXJwMS8v?ref=gPJNIm
↓details↓
https://telegra.ph/Young-boy-masturbating-and-ejaculatin-05-18
↓For clients who are not familiar with cryptocurrencies ↓
https://dfans.co/post?id=345124&ref=1TX4HT
https://app.unifans.io/posts/2c6f885d14976416c1e72c396c51bee2
#gay #porn #sex #ejaculation #masturbation #anal #spy #voyeur #piss #pee #naked #dick #cock #blowjob #urine #urinal #偷拍直男 #直男体育生 #厕所偷拍 #尿尿
https://share.yabu.me/ae2df40f39a39e5972a98e9aea50689f8e8112bd9e83396202a9d6b93bcc7d1f/480df526f7d4bc192a85c674019735675d2b47a14ba31447b2142a3a9d9fcbda.webp
https://share.yabu.me/ae2df40f39a39e5972a98e9aea50689f8e8112bd9e83396202a9d6b93bcc7d1f/08b8a7597379068298caa432355fe682c8727deacb478729d6da9daa360e35aa.webp
https://share.yabu.me/ae2df40f39a39e5972a98e9aea50689f8e8112bd9e83396202a9d6b93bcc7d1f/1489c2ae1024f8ef5c03673f31927e4fb6cb03608e5ba77915e1aae6590aff5f.webp
It's a great idea. That's why we're copying it from Rumble 😂
10% royalty? seems steep. how about .01%?
Markostr
https://penpenpng.github.io/markostr/
ユーザーの投稿を読み込んでマルコフ連鎖により文字列を生成します
category: WebApp
#amethyst still has that stupid bug that prevents posting games.
WORD5 #591 3/6* (Hard Mode)
⬛🟧🟧🟧⬛
🟧🟪🟧⬛⬛
🟪🟪🟪🟪🟪
https://otherstuff.ai/word5/
Block 949875
3 - high priority
1 - medium priority
1 - low priority
1 - no priority
1 - purging
#bitcoinfees #mempool