TIL the word myopic means “lacking imagination, foresight, or intellectual insight”
db42
db42
npub1jcaz...flp2
Engineer at Fold.
React native dev. Christian, sourdough.
Nostr projects:
PureSignal: https://testflight.apple.com/join/Sv9RM8vz
Bitbybit mempool app: https://testflight.apple.com/join/KKLprVH0
Why is it even a question that the US would have any say in what happens to that bitcoin? While it’s great that Maduro is no longer in power, it shouldn’t even be on the table that we can now just go in and plunder their country for whatever we like.
View Article →
Trump DOES know the difference between people who innovate and build freedom tech and people who are outright scammers! 🙌
View Article →
Are tether private equity investments part of the dollar peg mechanism or just from company profits?
View Article →
@Oshi (推し) @Bitcoin Beans @The Bullish ₿itcoiner @Satoshi Coffee Co. @SoapMiner I’ve been working on a nostr tool that allows merchants to post classified listings requesting to connect with suppliers that accept btc. It works the same on the supplier side.
Example: I make sourdough bread and sell it for sats to my customers. I’d like to pay my flour suppliers in sats as well. I create a listing on this app and a supplier who’s sees my listing can contact me to set up a deal.
Is this something you all would use? Would you even want to pay for your ingredients in sats? Or have you already found your suppliers and aren’t looking for new ones?
Calling it now, #XXI acquires @strike in the next 18 months. Maybe even a reverse merger. No big conspiracy, it just kind of makes sense. XXI wants to be more than a just a treasury company but has no products. Strike has the products and is profitable but doesn’t have the treasury and public standing to be huge fast. Same CEO.
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}`)
})
‘’’