Default avatar
npub19p3l...wdmw
npub19p3l...wdmw
Ya know since I've been on #nostr the lack of any "algorithm" promoting and demoting things has been nice! It just proves we're not all disagreeable as we thought we were when you don't have FB and Twitter et. al. dividing us #plebs
When using webln and webln.makeInvoice() how do I specify a payee?
Now that mini-black holes could potentially be an unlimited source of energy, I want to know how to hook it up to my miner.
How do I connect my wallet with getalby on iris.to? `Using Alby? Go to nwc.getalby.com to get your NWC config!` This doesn't help
Can anyone zap me at zap@pay.globalthreat.info -- I have had zero zaps in like a month.
blackfriday...the day 9 out of 10 emails get flagged as spam :_D
ya fuck 1 moose and they call you moose fucker for life. #gm #nostr
i made a little zapper bookmark....its zaps everything on the page javascript:(async () => {const weblnModule = await import('https://unpkg.com/webln@0.3.2/dist/webln.min.js'); const { webln } = window; const findAllNostrPublicKeys = () => {const allElements = document.querySelectorAll('body *'); const npubRegex = /npub1[a-zA-Z0-9]+?\b/; const npubIds = []; allElements.forEach(element => {const matches = element.textContent.match(npubRegex); if (matches) {npubIds.push(...matches); } }); return npubIds; }; const npubs = findAllNostrPublicKeys(); console.log(npubs); await webln.enable(); for (let npub of npubs) {try {const paymentRequest = await webln.makeInvoice(); await webln.sendPayment(paymentRequest); } catch (error) {console.error('Error processing payment:', error); } } })();