9b
9bed45ee
9bed45ee7c3241eea3ba74921a2b822c73f1447e5962314205d91a78cc99622e
nostr:npub146y59dkatpwkx0ncs9u34vhmm60dedmdla0s8zy8yw22pqfj4huq36dp2y
Replying to 9bed45ee...

this retrieves the same image with js

```js

socket = new WebSocket("wss://relay.nostr.band")

socket.onopen = function(){

this.send('["REQ","q1",{"ids":["81d2e5a2917dc6d9b028e26fb57cb23fd04cca91fcf6432b17b9df33084a78ed"]}]')

}

socket.onmessage = function(msg){

try{

data=JSON.parse(msg.data)

if(data[2]){

div = document.createElement("div")

div.innerHTML = data[2].content

image = div.querySelector('meta[property="og:image"]').content

console.log("image", image)

}

}catch(e){}

}

```

Replying to 9bed45ee...

this will retrieve same image without middleman webserver

firefox $(echo '["REQ","q", {"ids": ["81d2e5a2917dc6d9b028e26fb57cb23fd04cca91fcf6432b17b9df33084a78ed"]}]' | websocat wss://relay.nostr.band | head -n 1 | jq -r .[2].content | htmlq 'meta[property="og:image"]' -a content)

this #image is hosted on #nostr #hostr

any possible legal issues from this technique however will come to this hosting domain unfortunately

#iris wtf

btw allowing scrollbar styling in css was a mistake

.hide-scrollbar {

scrollbar-width: none;

-ms-overflow-style: none;

}

i dont understand this trend of removing scrollbars

its standard ui element that belongs to scrolling content

this deck view ux doesnt work on desktop, i dont have horizontal scroll wheel #iris

iris.to has made some updates to its snort fork it seems