β©– powrelay.xyz

day week month year all
200 hashes per byte
Works flawlessly after you fixed it.
Created at:
Wed Mar 26 22:44:21 UTC 2025
Kind:
1 Text note
Tags:
p cec0f44d0d64d6d9d7a1c84c330f5467e752cc8b065f720e874a0bed1c5416d2
e 788f2a36a5b5dc32aa812cc905ff321340f224156d41f5d71c3312e90c082dd2 wss://wot.utxo.one/ root cec0f44d0d64d6d9d7a1c84c330f5467e752cc8b065f720e874a0bed1c5416d2
nonce 13835058055282174980 16
195 hashes per byte
js is just a language that runs in isolated virtual machine whereas c++ is language that has direct access to system resources python is just c++ which never works and is worse in performance rust is just c++ but it got package management right js sucks only because there are not js devs anymore, there are only vue, react and node devs. ie: facebook built on top of js and now everyone is building on top of what facebook built. c++ sucks because you have to git clone and compile every library yourself to use in your project python sucks because every python project breaks after minor python version upgrade, such as 3.11 to 3.12 or 3.12 to 3.13. basically every project made on previous python version is incompatible with next minor version upgrade. rust sucks because it enforces some ridiculous coding logic to make it so fucking memory safe. yet its not even isolated in anyway, so you can very well run malware that deletes all your files anyway.
Created at:
Wed Mar 26 05:26:09 UTC 2025
Kind:
1 Text note
Tags:
nonce 253908 18
183 hashes per byte
here is implementation of nostr data stream: // r="wss://nostr.data.haus" function send(){ key=`nostril --kind 1 2>&1 | grep -Pom1 "\S{64}"` eid="" messages=("this" "is" "a" "simple" "example" "of" "recursive" "data" "stream") for i in {8..0} do event=`nostril --envelope --sec $key $([ ${#eid} -gt 0 ] && echo "-e $eid") --kind 3434 --content "${messages[$i]}"` eid=`echo "$event" | jq -r .[1].id` echo "$event" | websocat -n1 "$r" done echo "event id for streaming: $eid" } function download(){ [ ${#1} -ne 64 ] && { echo "event id required" return } eid=$1 while true do event=`nostril-query -i $eid | websocat -n1 $r` echo "received packet: "`echo "$event" | jq -r .[2].content` eid=`echo "$event" | jq -r '.[2].tags[]|select(.[0]=="e")[1]'` [ ${#eid} -eq 0 ] && break done } [ "$1" == "send" ] && { send; exit; } [ "$1" == "dl" ] && { download "$2"; exit; } echo "Usage: " echo "./recursion.sh send" echo "./recursion.sh dl <id>" // output: ./recursion.sh send ["OK","71804acbd113cbc92db3dfa61ae4837d6b5a7d1f50367f4a01193145d25eeba3",true,""] ["OK","f0f69313a91eefd2f667131004944dcb9b15fa72ae1ff1d5f15ffd947ce92ebb",true,""] ["OK","0bcbc9033a1010a102af8d1a2c002429458ba1737aed70abeb191c562209f3db",true,""] ["OK","3b1f5e3f52a4850c5e5eb08f359614614ad95a9d9cf47747883d9358f0b16eb4",true,""] ["OK","03f5a1aab60ff2aeaac8ed71a78bb4032ff5c893422bb43b5c94da3a21213a8c",true,""] ["OK","5c5200cba9c0deed8a2a2b3ca7f2845cf6aee98b41dc1a0f9c76371be87badfd",true,""] ["OK","aa04b39e54915d74c1439c098f9b9c30122faf1a0947fafe12e7df799096bdfb",true,""] ["OK","ccb2564ae69cd640b2269f840d7868a004db2b1eac42db634f1434d15b199108",true,""] ["OK","aad5b4135a42858cba6fdd31118d0f5e5781f2aba571ce90a429482d656a47d7",true,""] event id for streaming: aad5b4135a42858cba6fdd31118d0f5e5781f2aba571ce90a429482d656a47d7 ./recursion.sh dl aad5b4135a42858cba6fdd31118d0f5e5781f2aba571ce90a429482d656a47d7 received packet: this received packet: is received packet: a received packet: simple received packet: example received packet: of received packet: recursive received packet: data received packet: stream // in real scenario, each word can be replaced with up to 50 kB base64 data.
Created at:
Sun Mar 9 02:12:37 UTC 2025
Kind:
1 Text note
Tags:
nonce 355632 18
179 hashes per byte
// Software 3.0 synthesis prompt // @appVersion: 2 // @model: mistral-small:24b-instruct-2501-q4_K_M // @prompt: // following interface defines a program logic. implement the program in python. its not necessary to implement the interface itself, its for explanation purposes only. interface DiscussionBoard { bool sendMessage(int threadId, String message) void printThreads() void printMessages(int threadId) int getActiveThread() void exitActiveThread() void sendMessageToActiveThread(String message) void createNewThread(String message) void enterThread(int threadId) // if prompt input equals "exit" then exitActiveThread() else sendMessageToActiveThread(String message) void promptMessage() // if prompt input equals "new" then createNewThread(...) else enterThread(...) void promptThread() // main loop runs infinitely void mainLoop(){ if(getActiveThread()){ printMessages(getActiveThread()) promptMessage() }else{ printThreads() promptThread(prompt()) } } }
Created at:
Sat Mar 29 07:41:04 UTC 2025
Kind:
1 Text note
Tags:
client getwired.app
nonce 146698 18
178 hashes per byte
if events specify cid in tags, its possible to find referenced events from ipfs: event_id = cid([ 0, <pubkey, as a lowercase hex string>, <created_at, as a number>, <kind, as a number>, <tags, as an array of arrays of non-null strings>, <content, as a string> ]) { ... tags: [ "c": cid ] } however blossom is already compatible with existing notes: https://blossom.server/event_id#signature would return event in json format: [ 0, <pubkey, as a lowercase hex string>, <created_at, as a number>, <kind, as a number>, <tags, as an array of arrays of non-null strings>, <content, as a string> ] if signature is somehow detached and moved with the reference, this all works out: { ... tags: [ "e": id#signature ] } or ipfs: { ... tags: [ "c": cid#signature ] } now one would be able to find event through static http server and verify its signature because it was provided with the reference.
Created at:
Fri Mar 21 09:17:21 UTC 2025
Kind:
1 Text note
Tags:
nonce 30182 18
178 hashes per byte
if events specify cid in tags, its possible to find referenced events from ipfs: event_id = cid([ 0, <pubkey, as a lowercase hex string>, <created_at, as a number>, <kind, as a number>, <tags, as an array of arrays of non-null strings>, <content, as a string> ]) { ... tags: [ "c": cid ] } however blossom is already compatible with existing notes: https://blossom.server/event_id#signature would return event in json format: [ 0, <pubkey, as a lowercase hex string>, <created_at, as a number>, <kind, as a number>, <tags, as an array of arrays of non-null strings>, <content, as a string> ] if signature is somehow detached and moved with the reference, this all works out: { ... tags: [ "e": id#signature ] } or ipfs: { ... tags: [ "c": cid#signature ] } now one would be able to find event through static http server and verify its signature because it was provided with the reference.
Created at:
Fri Mar 21 09:17:34 UTC 2025
Kind:
1 Text note
Tags:
nonce 513803 18
176 hashes per byte
https://www.youtube.com/watch?v=QxgAvwv6M0c #OlavoDeCarvalho #Olavo
Created at:
Wed Mar 12 17:42:05 UTC 2025
Kind:
1 Text note
Tags:
t olavodecarvalho
t olavo
client noStrudel 31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546
a 34550:135d2b016eb41672477291ea7bcafe5f00e007dc6612610ff58a08655bc1b095:Brasil
subject A IGREJA ESTÁ ERRADA SOBRE O SEXO? A VERDADE QUE VAI TE CHOCAR
nonce 82132 16
174 hashes per byte
I'm already tired of it myself.
Created at:
Mon Mar 10 22:05:44 UTC 2025
Kind:
1 Text note
Tags:
p 3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24
e 0000daa8e795a5a089ac03556a167a206f8045a3bb7370837bd5eef9123b8866 wss://nostr.wine/ root
e 817700b9f42d899ad92208d45899fc7f0ceed49149141458379eaededf194c3a wss://wot.utxo.one/ reply 3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24
nonce 4611686018427399874 16
166 hashes per byte
test
Created at:
Fri Mar 28 10:45:50 UTC 2025
Kind:
1 Text note
Tags:
client getwired.app
nonce 111661 16
164 hashes per byte
yes
Created at:
Sat Mar 8 00:40:55 UTC 2025
Kind:
1 Text note
Tags:
e fe3aa482449065b3d470095d0727a79d9b2e6f5c5459883997cc8dfcf5fe35de root
e b755fa1ae1f6460b76b6272336d4eac7fccccb23dd316f53b93dc4de371e4732 wss://wot.saes.io reply 6fac7d8952676449325fbad14061151dee9dbe6322c13a748a182be79d76f561
p 6fac7d8952676449325fbad14061151dee9dbe6322c13a748a182be79d76f561
client moStard 31990:877308276be50ce9bafa7e5e374e4fcbf5e9859a21918f34baefd000746b7d35:1732044917
nonce 105108 16
< prev 12 next >