pull down to refresh

made a little js to display bitcoin denominated prices today:
document.querySelectorAll('.number').forEach(element => {
const text = element.textContent;
const [symbol, number] = text.split(' ');
const [integerPart, decimalPart] = number.split('.');
const formattedDecimal = decimalPart
.replace(/(\d{2})(\d{3})(\d{3})/, '$1 $2 $3') // Add non-breaking spaces
.split(' ')
.map(segment => `<span class="segment">${segment}</span>`)
.join('');
element.innerHTML = `
<span class="symbol">${symbol}</span>
<span class="number-value">
${integerPart}.${formattedDecimal}
</span>
`;
});Could have be made differently?
Thanks, I responded to my question, it was related to adding multiple pubkeys in the same .well-known/nostr.json file. The answer is yes, pubkeys apparently are only an hashed version of the npub.
how do I access LNbits admin from an umbrel node 0.5.4?
Can't get the credentials from umbrel.local/app-store/lnbits
Can someone point me in the direction of the vc platform for bitcoin startups that was previously mentioned around here? I'm not sure if it was an AMA, similar to thunderfunder. Can't find it!
part 2 here #235862
part 1 here #235851
That's the approach in the fiat system. Could the V4V vision be embraced in the context of Bitcoin Vendors and Nostr Publishers?