Oddbean new post about | logout
 Because I haven't unnerved everyone enough, I would like to offer more gratuitous math about the loss of information resulting from a centralization of decision-making.

nostr:nevent1qvzqqqqqqypzphtxf40yq9jr82xdd8cqtts5szqyx5tcndvaukhsvfmduetr85ceqqs8cusku0p8aq0zdl7p32rcl2ac703hssdyzcq06zjdkgllafpj8ngplzr3j 
 I dont think this is particularly controversial. I would use open sats model when I’d want my donation to be distributed to different people. If I want one dev that I appreciate to get my sats, I just send sats to that particular dev without any middleman. As long as you contributing to bitcoin devs is up to you how you donate. It’s your money and your decision and there’s no need to use “the best model” or base your decision on a public poll 🙃 
 People are literally afraid to zap individual devs because they are worried that they're zapping "the wrong one" and need to leave it up to experts.

It's like... If you use Damus, zap @jb55 . If you use Nostrudel, zap @hzrd149.

This is not brain surgery. 
 I think the "backend guys" will end up getting lots of free marketing and zaps from "frontend guys", which makes economic sense.
The person who only interacts with a social media client doesn't need to know who runs the git client it's hosted on. The person using the git client is the customer of that person. It's business-to-business (B2B).

This is why "zap who you know" actually works well and distributes the money in a logical fashion. 
 LOL in that case those folks need a middleman lmaoooo 
 Imagine needing a middleman to use your Bitcoin
https://media.tenor.com/jDJkh3w0wTAAAAAC/gregzaj1-ln_strike.gif 
 I dont wanna zap devs so Im afraid to zap the wrong one I better sit here and look at my feet 🦶🦶 
 Yes. Looking at my feet. Much safer. Nostr will thrive if I look at my feet 😂😂💀 
  --
//  ContentView.swift
//  Trivia_App
//
//  Created by Maciej Zak on 12/05/19.
//

import SwiftUI

struct ContentView: View {
    @State private var score = 0
    @State private var isCorrect = false

    let categories = ["Science", "History", "Geography", "Art", "Music"]

    var body: some View {
        NavigationView {
            ScrollView {
                VStack(spacing: 10) {
                    Text("Welcome to Trivia App!")
                        .font(.title)
                        .padding()

                    ForEach(categories, id: \.self) { category in
                        SectionHeader(category: category)

                        ScrollView {
                            ForEach(questionsByCategory[category] ?? [], id: \.0) { (index, question) in
                                QuestionView(question: question, isCorrect: $isCorrect, score: $score)
                                    .onReceive(isCorrect.$isCorrect) { _ in
                                        if isCorrect {
                                            score += 1
                                            isCorrect = false
                                        }
                                    }
                                .padding()
                            }
                        }
                    }

                    Text("\(score) out of \(categories.count)")
                        .font(.title2)
                        .padding()
                }
                .onAppear {
                    isCorrect = false
                }
            }
            .navigationBarTitle("Trivia App")
        }
    }
} 
 😂 
  Let r be 1 - (5 + (-642)/(-9)). Solve -r*c + 7*c = -32 for c.
A: 2

/anna 
 
    <template>
        <div id="app">
            <router-view></router-view>
            <button @click="test">点击</button>
        </div>
    </template>
    <script lang='ts'>
    import { Component, Vue } from 'vue-property-decorator'
    @Component({
        components: {
            // 组件
        }
    })
    export default class App extends Vue{
        test(){
            console.log('测试')
        }
    }
    </script> 
 😂 
 I think the grants are useful as seed money for a novel program or to spend on training devs and stuff, but it's counterproductive to expect them to pay for everything forever.

At some point, the thing is there and getting used and then the users need to at least consider pulling out their wallets. 
 For sustainability, I mean, and to keep the devs who don't get grants (which will be almost all of them, if Nostr expands globally) motivated because they can get zaps INSTEAD of grants. 
 If you're in Angola and making a fishing app, you shouldn't be thinking you need to apply for a grant, to monetize your effort.

We have zaps for that.

nostr:nevent1qvzqqqqqqypzphtxf40yq9jr82xdd8cqtts5szqyx5tcndvaukhsvfmduetr85ceqyt8wumn8ghj7emjv4jkuum0w4kzuumsv93k2tcprdmhxue69uhhg6r9vehhyetnwshxummnw3erztnrdakj7qpqzjr7rf5vqeufh3lgg4uvz0kmn5k0el4l9vrvnrs8uwjze4ygm30qt3cs4u 
 We lay the cultural groundwork NOW, that we zap our devs and creators. 

This is when it's a painless change made by relatively wealthy people used to using Bitcoin, who do so many micropayments on LN, eCash, etc., that we can steadily improve the process. 
 By the time it gets to "fishing app guy" and "farmer's market app in the Andes" and "Bavarian butcher mail-order page", those payment processes need to be smooth, reliable, and normalized.

This is something we can all help streamline. 
 Is there infrastructure in place to showplace devs looking for grants? Something like a kickstarter directly on Nostr where zaps could easily be crowdfunded.  Notes get lost in the shuffle fairly quickly here. 
 #asknostr 
 https://opensats.org/ no? 
 Looks like OpenSats is an intermediary. I’m talking more direct 
 Maybe doesn’t exist yet. 
 I could see that. Where you could select your favorite devs from a list and zap them all at once, with a big zap-split, or individually. 
 Yep exactly. 
 @Karnage has an app explorer. That would probably be a good place to find stuff to zap. https://www.nostrapps.com/ 
 Would just need to add npubs to the app entries. 
 That sounds like a pretty straightforward way to accomplish this 
 https://nostrapp.link/ has the app author's npub and you can zap them iirc

I also built https://heya.fund/ which can be useful for devs wanting to raise funds. 
 TIL that there's an app for finding and zapping your favorite devs over their app listing.

nostr:nevent1qvzqqqqqqypzqla9dawkjc4trc7dgf88trpsq2uxvhmmpkxua607nc5g6a634sv5qqsyunjzryh00glv3cqlppncasptw4c9cknc7tundd06y3vqmuj248qamd83s 
 the coolest part imo is that uses NIP-89 under the hood, you can review and recommend apps so whenever a client sees an unknown event kind it can query your social graph for finding a compatible app 🤯 galaxy brain stuff from @PABLOF7z  
 Ooooh, that sounds cool. Thanks@PABLOF7z ! 
 
Vad är det du vill ha att jag ska svara på?

/anna 
 
Vad är det som jag ska svara på för dig?

/anna 
 Nostr app.link seems more complete, how is it populated?  
 it's populated with NIP-89 information so every time a dev creates an app and publishes the app definition to nostr it should appear there. nostr native and automatically updated which is pretty cool, @brugeman is the author. 
 Thank you ser 🙏🏻 
 0.0217*3
A: 0.0651

/anna 
 Thanks for the info! 
 was just thinking about Heya today with all the noise 💜