db42's avatar
db42
npub1jcaz...flp2
Engineer at Fold. React native dev. Christian, sourdough. Nostr projects: PureSignal: https://testflight.apple.com/join/Sv9RM8vz Bitbybit mempool app: https://apps.apple.com/us/app/bitbybit-mempool-explorer/id6479184653
db42's avatar
db42 6 months ago
Here’s a script for your family’s secret Santa ‘’’ const names = [] function createSecretSanta(names) { if (names.length < 2) { throw new Error("Need at least 2 names for Secret Santa") } const shuffled = [...names] for (let i = shuffled.length - 1; i > 0; i--) { const j = Math.floor(Math.random() * (i + 1)); [shuffled[i], shuffled[j]] = [shuffled[j], shuffled[i]] } const assignments = [] for (let i = 0; i < shuffled.length; i++) { const giver = shuffled[i] const receiver = shuffled[(i + 1) % shuffled.length] assignments.push({ giver, receiver }) } return assignments } const assignments = createSecretSanta(names) assignments.forEach((assignment) => { console.log(`${assignment.giver} -> ${assignment.receiver}`) }) ‘’’
db42's avatar
db42 6 months ago
A great way to quantify your degree of procrastination. Find the browser tab of the thing you’re supposed to be working on, and then count how many browser tabs there are to the right of that tab.
db42's avatar
db42 6 months ago
@Bitcoin News did you change your rss feed url or completely remove it? I was using it for @PureSignal but it stopped working about a week ago.
db42's avatar
db42 6 months ago
Would you rather solo mine 1 bitcoin block or score 1 touchdown in the NFL?
db42's avatar
db42 6 months ago
“… BlackRock increasing its exposure to its own spot Bitcoin ETF” ♻️ View article →
db42's avatar
db42 7 months ago
Kind of funny how nothing ever really changes. image
db42's avatar
db42 8 months ago
If pimple patch companies are subtly promoting bitcoin in their packaging, we’re winning guys. image
db42's avatar
db42 11 months ago
#asknostr I’m confused, are we supposed to put “nostr:” before the naddr/nprofile/etc. in kind 1 notes? It seems like some clients parse it and others don’t.
db42's avatar
db42 1 year ago
Where can I find beef in the US that looks like this? #asknostr #beefstr image
db42's avatar
db42 1 year ago
Dumb question about cashu, is there a monetary incentive built in to run a mint? @calle
db42's avatar
db42 1 year ago
#asknostr how are other nostr devs implementing push notifications?
db42's avatar
db42 1 year ago
One thing I loved about #MoneyElectric was all the non-Satoshi stuff. - It painted bitcoin in a really good light that I would never expect from a journalist. - Showed just how dumb the current financial system is and current economists. - Depicted small blockers in a good light, and was generally positive about the outcome of the block wars. - It highlighted El Salvador’s success, and the gave a lot of attention to @JAN3 A lot of non-bitcoiners are going to watch this over the years. With a small sample size of non-bitcoiners (my wife), she’s not convinced that @Peter Todd was Satoshi, but she actually watched the entire doc (that never happens) and I saw her listening attentively as they talked about all culturally relevant about bitcoin. This was good for bitcoin.
db42's avatar
db42 1 year ago
#asknostr which nostr apps have the best onboarding experience? Specifically focusing on the eas of nsec creation.
db42's avatar
db42 1 year ago
#asknostr why isn’t there a nostr kind for things like podcasts, music, video, and other media for clients to implement. Feels like notes are all just Twitter posts with text and links with minimal support for images and videos. It could be so much better. What am I missing?