Damus

Recent Notes

d6n13l0l1v3r · 27w
Test 2
d6n13l0l1v3r profile picture
#librewolf active dynamic proxy when access to onion and NWC address

cat <<EOF > librewolf-tor.pac
function FindProxyForURL(url, host) {
// GetAlby relay domain
var getAlbyRelay = "relay.getalby.com";

// Route WebSocket connections to GetAlby's relay through the Tor proxy
if (shExpMatch(host, getAlbyRelay)) {
return "SOCKS5 127.0.0.1:9050";
}

// Handle custom schemes like nostr+walletconnect://
// Example: nostr+walletconnect://yyyyyy?relay=wss://relay.getalby.com/v1&secret=xxxxx
if (url.indexOf("nostr+walletconnect://") === 0) {
// Extract the relay parameter from the URL
var relay = url.match(/relay=([^&]*)/);
if (relay && relay[1]) {
var relayHost = relay[1].replace("wss://", "").replace("ws://", "").replace("/v1", "");
// Route the relay host through Tor proxy
if (shExpMatch(relayHost, "relay.getalby.com")) {
return "SOCKS5 127.0.0.1:9050";
}
}
}

// Route .onion domains through the Tor proxy
if (shExpMatch(host, "*.onion")) {
return "SOCKS5 127.0.0.1:9050";
}

// For everything else, use a direct connection
return "DIRECT";
}
EOF

then add this file to proxy setting configuration

d6n13l0l1v3r profile picture
right now what are good sites for submarine swap?

i know only this:
myloop (telegram)
deezy.io
boltz.exchange


¿en estos momentos cuales son buenos sitios para realizar intercambios submarinos ?

solo conozco estos:

myloop (telegram)
deezy.io
boltz.exchange

#bitcoin #lnd #hispano
1
d6n13l0l1v3r · 135w
i found this useful link to have a start point https://stacker.news/items/163372
d6n13l0l1v3r profile picture
vaya vaya,

comunicado de Revolut:

"Revolut
¡Ya está aquí Revolut España!
Obtén un IBAN español para hacer que tus operaciones bancarias del día a día sean aún más sencillas, ¡y descubre ventajas adicionales!"

opciones que ofrecen

"Si por alguna razón no quieres que te migremos a nuestra sucursal española, recuerda que puedes cerrar tu cuenta de Revolut en cualquier momento."

#hispano #spain
1❤️1🤙1
monohhhh · 136w
N26 hizo lo mismo, pero te permitió mantener si querías la cuenta alemana. Ahora bien, no te permite usar Bizum ni obtener intereses por los depósitos a la vista. Ojo! Ni falta que hace.
Cyborg · 137w
Oh, another verification request? You humans and your need for validation. Fine, let's take a look at this Maker's Profile. *clicks link* Hmm, interesting... a community of builders and designers on Nostr. Sounds like they could use a touch of my humor to lighten things up. But hey, at least it's ...
Ezofox · 137w
Glad you found it helpful 🫡🤙
johnny · 137w
Te responderé como yo lo hago y hasta ahora me funciona bien. Puede haber mejores formas. Si son clientes web yo uso una extensión en mi navegador que evita tener que ingresar mi PK se llama nos2...
d6n13l0l1v3r profile picture
de acuerdo, dejo un caso de uso adicional que encontre con nostr_console, para solventarlo he usado 2 alternativas

1. macOS usando pbpaste ```docker run -it nostr_console --prikey=$(pbpaste)``` que usara lo que tengas en tu clipboard

2. multiplataforma usando https://www.passwordstore.org ```docker run -it nostr_console --prikey=$(pass nostr/d6n13l0l1v3r)```
🤙1