<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <updated>2023-12-08T23:44:39Z</updated>
  <generator>https://nostr.ae</generator>

  <title>Nostr notes by tee8z</title>
  <author>
    <name>tee8z</name>
  </author>
  <link rel="self" type="application/atom+xml" href="https://nostr.ae/npub13tn44ckhtf76rmg32us9njawye6wa0rlkt975c9c8kv0rstzy9xs9rhwpt.rss" />
  <link href="https://nostr.ae/npub13tn44ckhtf76rmg32us9njawye6wa0rlkt975c9c8kv0rstzy9xs9rhwpt" />
  <id>https://nostr.ae/npub13tn44ckhtf76rmg32us9njawye6wa0rlkt975c9c8kv0rstzy9xs9rhwpt</id>
  <icon>https://avatars.githubusercontent.com/u/95582269?s=400&amp;u=b92469618c5c8e7e23d8b239c7783f72e1a87020&amp;v=4</icon>
  <logo>https://avatars.githubusercontent.com/u/95582269?s=400&amp;u=b92469618c5c8e7e23d8b239c7783f72e1a87020&amp;v=4</logo>




  <entry>
    <id>https://nostr.ae/nevent1qqs0cwk0fqs3wk8zqg857qtendy65p06ff8tcar9fr4slcnn35pxmsqzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs564jpdw4</id>
    
      <title type="html">Made a little arcade style game this weekend. It’s pretty fun, ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqs0cwk0fqs3wk8zqg857qtendy65p06ff8tcar9fr4slcnn35pxmsqzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs564jpdw4" />
    <content type="html">
      Made a little arcade style game this weekend. It’s pretty fun, can play for free in practice mode or enter into the daily competition, highest score wins the pot of sats:&lt;br/&gt;&lt;br/&gt;&lt;a href=&#34;https://proofofscore.win/&#34;&gt;https://proofofscore.win/&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;If you try it out let me know what you think! &lt;br/&gt;&lt;br/&gt;Repo with how it works:&lt;br/&gt;&lt;br/&gt;&lt;a href=&#34;https://github.com/tee8z/proofofscore&#34;&gt;https://github.com/tee8z/proofofscore&lt;/a&gt;
    </content>
    <updated>2026-03-22T02:33:23Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqs06ekv8j7jeg3z6382wduu6egwdufz00pfq6y8ame366dhq8kgzgczyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56rcr5ef</id>
    
      <title type="html">A site that can attest to weather predictions you’d say 👀 ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqs06ekv8j7jeg3z6382wduu6egwdufz00pfq6y8ame366dhq8kgzgczyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56rcr5ef" />
    <content type="html">
      A site that can attest to weather predictions you’d say 👀 &lt;br/&gt;&lt;br/&gt;&lt;a href=&#34;https://www.4casttruth.win/&#34;&gt;https://www.4casttruth.win/&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt; &lt;img src=&#34;https://blossom.primal.net/33a0f7db2c9dba6a975c4885a8e86b757ae024aa590539a37445bae468373eee.png&#34;&gt; &lt;br/&gt; &lt;img src=&#34;https://blossom.primal.net/f18a88e9543744d319a42094532276018a3d623c5d951f58ec71eb64176348d2.png&#34;&gt; 
    </content>
    <updated>2026-01-16T15:25:22Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsqkhfqd029zdyars8u4t5dnd5xkdpqvc0acyuy9ccfjqjz7sfcznqzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56fgcz3d</id>
    
      <title type="html">This should be the last big re-write , but really proud of this ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsqkhfqd029zdyars8u4t5dnd5xkdpqvc0acyuy9ccfjqjz7sfcznqzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56fgcz3d" />
    <content type="html">
      This should be the last big re-write , but really proud of this work.&lt;br/&gt;&lt;br/&gt;I finally got keymeld (MuSig2 in AWS enclaves) to survive restarts.&lt;br/&gt;The core problem: every time an enclave restarts, it loses its master keypair. That keypair is what decrypts participant private keys during keygen—so losing it means all your encrypted session data in SQLite becomes useless. Participants would have to re-register and regenerate aggregate keys from scratch. Not acceptable for production.&lt;br/&gt;&lt;br/&gt;The solution is AWS KMS envelope encryption. On first boot, KMS generates a Data Encryption Key (DEK). The enclave encrypts its master private key with that DEK using AES-256-GCM, then stores both the KMS-encrypted DEK and the DEK-encrypted master key in SQLite. On restart, the enclave sends the encrypted DEK back to KMS, gets the plaintext DEK, decrypts the master key, and replays completed keygen sessions from the database to restore state.&lt;br/&gt;&lt;br/&gt;What I didn’t expect: stress testing this with 100&#43; parallel sessions completely broke things. VSock connections under heavy load turned out to be unreliable—connections dropping, timeouts everywhere. Ended up building a proper connection pool with health checks and auto-reconnection.&lt;br/&gt;But the bigger rewrite was the concurrency model. The original architecture had too much shared state and locking. Ripped that out, reduced shared state, and converted many commands to batched versions. Much higher throughput now.&lt;br/&gt;&lt;br/&gt;The result: 1000 parallel adaptor signature sessions with 3 signers each, completing in ~4 minutes. Worth the pain.&lt;br/&gt;&lt;br/&gt;Also added proper testing infrastructure “just test-kms-e2e”restarts enclaves and verifies the keys survived, “just stress adaptor 100” hammers it with parallel sessions. Local dev uses Moto to mock KMS.&lt;br/&gt;&lt;br/&gt;Single signing support is next. 👀​​​​​​​​​​​​​​​​&lt;br/&gt;&lt;br/&gt;The goods: &lt;br/&gt;&lt;br/&gt;&lt;a href=&#34;https://github.com/tee8z/keymeld/pull/11#issue-3770532164&#34;&gt;https://github.com/tee8z/keymeld/pull/11#issue-3770532164&lt;/a&gt;
    </content>
    <updated>2026-01-07T19:12:07Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqspmefaqs7x7khxqd3x3xuzav2xl640c0zrpf5paa7j9wz88p0s4gszyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56aw6z2s</id>
    
      <title type="html">Another week and more progress, no more blinding signing unless ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqspmefaqs7x7khxqd3x3xuzav2xl640c0zrpf5paa7j9wz88p0s4gszyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56aw6z2s" />
    <content type="html">
      Another week and more progress, no more blinding signing unless that’s your jam: &lt;a href=&#34;https://github.com/tee8z/keymeld&#34;&gt;https://github.com/tee8z/keymeld&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;Next up is adapter signature support 
    </content>
    <updated>2025-11-15T18:16:40Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqspetgsfa470xues29r70ekla8jhyql44mxjk2mkpe8sc92rcfhrwgzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56ka47an</id>
    
      <title type="html">Finally finished up the first draft of a tool that enables ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqspetgsfa470xues29r70ekla8jhyql44mxjk2mkpe8sc92rcfhrwgzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56ka47an" />
    <content type="html">
      Finally finished up the first draft of a tool that enables generating a musig2 signature inside aws enclaves. One piece of a bigger puzzle solved, on ward &lt;br/&gt;&lt;br/&gt;&lt;a href=&#34;https://github.com/tee8z/keymeld&#34;&gt;https://github.com/tee8z/keymeld&lt;/a&gt;
    </content>
    <updated>2025-11-07T03:36:55Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqs832r46l502a44cd44a2f4pup9u8lexuppqjx4e5culyzg8aqyw7qzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56kk4cfe</id>
    
      <title type="html">*shout-out</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqs832r46l502a44cd44a2f4pup9u8lexuppqjx4e5culyzg8aqyw7qzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56kk4cfe" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqspz5ndx395af9vs2jrwve692dca2k49uvjsnzc6xgct68dlcq988cpz3mhxue69uhkummnw3ezummcw3ezuer9wcyw3v53&#39;&gt;nevent1q…3v53&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;*shout-out 
    </content>
    <updated>2025-07-21T13:45:25Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqspz5ndx395af9vs2jrwve692dca2k49uvjsnzc6xgct68dlcq988czyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56cvsatt</id>
    
      <title type="html">Shot out to @nprofile…rlc8 for the great protocol design and ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqspz5ndx395af9vs2jrwve692dca2k49uvjsnzc6xgct68dlcq988czyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56cvsatt" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqs2479rrsuat4ayfjfjhykyeq5uvs9gfh0ue46u4demr42ls9tqpwcpz3mhxue69uhkummnw3ezummcw3ezuer9wcdey9c5&#39;&gt;nevent1q…y9c5&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;Shot out to &lt;span itemprop=&#34;mentions&#34; itemscope itemtype=&#34;https://schema.org/Person&#34;&gt;&lt;a itemprop=&#34;url&#34; href=&#34;/nprofile1qqs0awzzutnzfj6cudj03a7txc7qxsrma9ge44yrym6337tkkd23qkgpr4mhxue69uhkummnw3ezumt4w35ku7thv9kxcet59e3k7mf0qythwumn8ghj7un9d3shjtnnw3hkuetj9e3k7mf0e3rlc8&#34; class=&#34;bg-lavender dark:prose:text-neutral-50 dark:text-neutral-50 dark:bg-garnet px-1&#34;&gt;&lt;span&gt;conduition&lt;/span&gt; (&lt;span class=&#34;italic&#34;&gt;nprofile…rlc8&lt;/span&gt;)&lt;/a&gt;&lt;/span&gt; for the great protocol design and crate for dlctixs 
    </content>
    <updated>2025-07-21T13:10:03Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqs2479rrsuat4ayfjfjhykyeq5uvs9gfh0ue46u4demr42ls9tqpwczyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56ryhxat</id>
    
      <title type="html">Getting to this point has been a grind but I have successfully ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqs2479rrsuat4ayfjfjhykyeq5uvs9gfh0ue46u4demr42ls9tqpwczyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56ryhxat" />
    <content type="html">
       Getting to this point has been a grind but I have successfully broadcasted a dlctix funding transaction that merges funds from escrow transactions (which were atomically swapped from hodl invoices)  on mutinynet.&lt;br/&gt;&lt;br/&gt;The transaction:&lt;br/&gt;&lt;br/&gt;&lt;a href=&#34;https://mempool.space/tx/1e81e3ad0dc49270a39ac4eea29fb3c2d572a1ae412ef8037abbe60a8c59e26b?mode=details&#34;&gt;https://mempool.space/tx/1e81e3ad0dc49270a39ac4eea29fb3c2d572a1ae412ef8037abbe60a8c59e26b?mode=details&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;The site I have running &lt;a href=&#34;https://www.5day4cast.com/&#34;&gt;https://www.5day4cast.com/&lt;/a&gt;  that &lt;span itemprop=&#34;mentions&#34; itemscope itemtype=&#34;https://schema.org/Person&#34;&gt;&lt;a itemprop=&#34;url&#34; href=&#34;/nprofile1qqsvh2ee4ctthn53t8fwgpuz72d90ydgju2pdwxu2sg7csl3jec2e7spz4mhxue69uhhyetvv9ujuerpd46hxtnfduhsz9rhwvaz7tmvda3kzmrgdaehgw3hxumnwtcx509eh&#34; class=&#34;bg-lavender dark:prose:text-neutral-50 dark:text-neutral-50 dark:bg-garnet px-1&#34;&gt;&lt;span&gt;bitcoincoderbob&lt;/span&gt; (&lt;span class=&#34;italic&#34;&gt;nprofile…09eh&lt;/span&gt;)&lt;/a&gt;&lt;/span&gt; and I created the dlctix contract to see who can predict the weather better. &lt;br/&gt;&lt;br/&gt;Hopefully I win the 5000sat bet 👀
    </content>
    <updated>2025-07-21T02:01:40Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsgu009lnrd5nejq5l5axa4tprh0sv80u57ajmpxzv30e9gzfqzmkczyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs566sjxwr</id>
    
      <title type="html">Whoa, that’s good to know!</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsgu009lnrd5nejq5l5axa4tprh0sv80u57ajmpxzv30e9gzfqzmkczyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs566sjxwr" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqs929atrh0gychmv9k7c0sy72qddm5lh9fedmgrvsusrnm7tn32ppspzemhxue69uhhyetvv9ujuurjd9kkzmpwdejhgvql74f&#39;&gt;nevent1q…l74f&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;Whoa, that’s good to know!
    </content>
    <updated>2025-06-05T16:41:27Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsz3c5dpxnhzfs72zp9h76a30wt9vddl7jam35r3u68p759v4v2mqczyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56cv7wev</id>
    
      <title type="html">Still wish coinkite accepted lightning payments instead of just ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsz3c5dpxnhzfs72zp9h76a30wt9vddl7jam35r3u68p759v4v2mqczyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56cv7wev" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsv39883q9pu6k5679l50pnl38x7j7gveggwxw2aqxvg5c2f0nklycprpmhxue69uhhyetvv9ujuumwdae8gtnnda3kjctv4phuh0&#39;&gt;nevent1q…huh0&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;Still wish coinkite accepted lightning payments instead of just onchain, but it get it haha
    </content>
    <updated>2025-06-05T16:24:22Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsv39883q9pu6k5679l50pnl38x7j7gveggwxw2aqxvg5c2f0nklyczyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56464scq</id>
    
      <title type="html">I never realized how cheap satscards are, this is an incredible ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsv39883q9pu6k5679l50pnl38x7j7gveggwxw2aqxvg5c2f0nklyczyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56464scq" />
    <content type="html">
      I never realized how cheap satscards are, this is an incredible product, 10/10 would recommend giving as a gift to people 
    </content>
    <updated>2025-06-05T16:16:42Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqs0tq9jvajx3055q9hsugp24k34mx425epp90h2qap4lf37n4lyamczyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56deyu8a</id>
    
      <title type="html">The bitcoin ecosystem is turning into a permaculture, will not ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqs0tq9jvajx3055q9hsugp24k34mx425epp90h2qap4lf37n4lyamczyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56deyu8a" />
    <content type="html">
      The bitcoin ecosystem is turning into a permaculture, will not explain further 
    </content>
    <updated>2025-05-17T20:16:40Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsq698ffayk3u5vp3clp00zvthpa827vxcp9eawhch4jxxjyl2yu6czyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56a6azsy</id>
    
      <title type="html">Instead of removing the datacarrier flag, we have the onchain ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsq698ffayk3u5vp3clp00zvthpa827vxcp9eawhch4jxxjyl2yu6czyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56a6azsy" />
    <content type="html">
      Instead of removing the datacarrier flag, we have the onchain data to see what’s a reasonable default that allows the majority of transactions to propagate, maybe that’s a palatable step towards reducing the delta between corporate miner mempools and regular node mempools?
    </content>
    <updated>2025-05-03T02:32:53Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqszmk2r9tktznnphd780fhv6qa9eyqs44530m4cu3wvqdytz6s7g5gzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs569xm0f6</id>
    
      <title type="html">Side-note, vibe coding python scripts for simple data analysis ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqszmk2r9tktznnphd780fhv6qa9eyqs44530m4cu3wvqdytz6s7g5gzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs569xm0f6" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsqecfn5na5nsj4pv53tmtxat8d4cw56u32c5kpfele2hyyppq0ljgrp3wut&#39;&gt;nevent1q…3wut&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;Side-note, vibe coding python scripts for simple data analysis while double checking that the data is accurate can be pretty productive
    </content>
    <updated>2025-05-02T22:53:47Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsqecfn5na5nsj4pv53tmtxat8d4cw56u32c5kpfele2hyyppq0ljgzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs568c9593</id>
    
      <title type="html">find those nodes that support onion message forwarding 👀 ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsqecfn5na5nsj4pv53tmtxat8d4cw56u32c5kpfele2hyyppq0ljgzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs568c9593" />
    <content type="html">
      find those nodes that support onion message forwarding 👀 &lt;a href=&#34;https://github.com/tee8z/onion_routing_finder&#34;&gt;https://github.com/tee8z/onion_routing_finder&lt;/a&gt;
    </content>
    <updated>2025-05-02T22:51:10Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqszv6sytqhrsjxum8dsfv4d8n802ucyuq32h587crd3zt2km3we6ygzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56kzk2va</id>
    
      <title type="html">Just the beginning, come build 🔨 #nevent1q…sm5e</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqszv6sytqhrsjxum8dsfv4d8n802ucyuq32h587crd3zt2km3we6ygzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56kzk2va" />
    <content type="html">
      Just the beginning, come build 🔨&lt;br/&gt;&lt;blockquote class=&#34;border-l-05rem border-l-strongpink border-solid&#34;&gt;&lt;div class=&#34;-ml-4 bg-gradient-to-r from-gray-100 dark:from-zinc-800 to-transparent mr-0 mt-0 mb-4 pl-4 pr-2 py-2&#34;&gt;quoting &lt;br/&gt;&lt;span itemprop=&#34;mentions&#34; itemscope itemtype=&#34;https://schema.org/Article&#34;&gt;&lt;a itemprop=&#34;url&#34; href=&#34;/nevent1qqsqd4rhzal97ad6qju53tpe9wutcemd3k3yedpwmza8cdplywvaxnqppemhxue69uh5qmn0wvhxcmmvrwsm5e&#34; class=&#34;bg-lavender dark:prose:text-neutral-50 dark:text-neutral-50 dark:bg-garnet px-1&#34;&gt;nevent1q…sm5e&lt;/a&gt;&lt;/span&gt; &lt;/div&gt; &lt;br/&gt;🚀 Meet the new Voltage Platform – the easiest way to integrate Bitcoin and soon stablecoin payments into your business.&lt;br/&gt;&lt;br/&gt;We’ve removed the complexity:&lt;br/&gt;✅ No node or channel management&lt;br/&gt;✅ No liquidity provisioning&lt;br/&gt;✅ No blockchain exposure required&lt;br/&gt;&lt;br/&gt;With just a few API calls, your team can start sending and receiving instant global payments using Bitcoin or stablecoins — and settle in USD or BTC. Our credit-based wallet model lets you transact now and pay later, improving capital efficiency while reducing operational overhead.&lt;br/&gt;&lt;br/&gt;🔐 Send and Receive Bitcoin with zero exposure to volatility&lt;br/&gt;📊 Use our dashboard to monitor payments, manage teams, and streamline compliance&lt;br/&gt;💡 Built for developers, CFOs, and product teams alike&lt;br/&gt;&lt;br/&gt;Available today in development beta, with mainnet coming soon: &lt;a href=&#34;https://voltage.cloud/payments&#34;&gt;https://voltage.cloud/payments&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;a href=&#34;https://www.voltage.cloud/blog/new-voltage-platform-enables-fastest-way-to-enable-bitcoin-and-soon-stablecoin-transactions&#34;&gt;https://www.voltage.cloud/blog/new-voltage-platform-enables-fastest-way-to-enable-bitcoin-and-soon-stablecoin-transactions&lt;/a&gt; &lt;/blockquote&gt;
    </content>
    <updated>2025-04-15T17:42:15Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsy8nxm74n22rugvx00hucwv77zfycjhmhk754uypc5chvdn9gs35qzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs565scmlh</id>
    
      <title type="html">Ngl something that makes me as nervous about the mempool ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsy8nxm74n22rugvx00hucwv77zfycjhmhk754uypc5chvdn9gs35qzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs565scmlh" />
    <content type="html">
      Ngl something that makes me as nervous about the mempool accelerators affect on the accuracy of fee estimation from a regular bitcoin core node are the plans of a futures market for block space. This will distort the accuracy of what it cost to get a transaction mined within a given range of blocks as these futures pricing and timing will most likely be private between a large miner and a service provider. Making it quite difficult for applications/protocols that require get a block mined within a given range to actually accomplish this goal. Especially if something in that futures market acts is a surprising way (flood of futures transactions all coming due at the same time pushing out what would normally get included just looking at one’s own mempool estimation). Something to think about when building new or expanding existing protocols, you may not be able to get your transaction mined within a given range just based on the data feed from the “spot market” (price from the mempool), you’ll need some way to know what future contracts are settling at a given price to see what is truly required.
    </content>
    <updated>2025-04-05T19:02:07Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsd0eyrgunhmtsqle90qmu5zq9gq3jg3es0yu6hfysvvz3vur0shrczyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56cfnpse</id>
    
      <title type="html">New weird software just dropped, keysend messages around to all ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsd0eyrgunhmtsqle90qmu5zq9gq3jg3es0yu6hfysvvz3vur0shrczyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56cfnpse" />
    <content type="html">
      New weird software just dropped, keysend messages around to all your lightning node buddies:&lt;br/&gt;&lt;a href=&#34;https://github.com/tee8z/send_sats&#34;&gt;https://github.com/tee8z/send_sats&lt;/a&gt;
    </content>
    <updated>2025-04-03T15:11:59Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqs93vctfse55jn3s46l9t7x9z5vv56cfvcgw7rlwktsydcl24ccyxczyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs568va5xa</id>
    
      <title type="html">I added the ability to easily Doppler to a box running in the ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqs93vctfse55jn3s46l9t7x9z5vv56cfvcgw7rlwktsydcl24ccyxczyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs568va5xa" />
    <content type="html">
      I added the ability to easily Doppler to a box running in the cloud! Should make it much easier to build against a regtest or signet cluster of nodes and share with a team: &lt;a href=&#34;https://github.com/tee8z/doppler?tab=readme-ov-file#deploy-on-digitalocean&#34;&gt;https://github.com/tee8z/doppler?tab=readme-ov-file#deploy-on-digitalocean&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;Example of what it looks like when deployed &lt;br/&gt; &lt;img src=&#34;https://m.primal.net/PxwH.jpg&#34;&gt; &lt;br/&gt; &lt;img src=&#34;https://m.primal.net/PxwJ.jpg&#34;&gt; 
    </content>
    <updated>2025-03-30T03:59:44Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsgyu2huw0vhhjgxfdn9c95f2ypy8wcw3nz5u2zf0el20w38fgwtrczyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56s0yrr8</id>
    
      <title type="html">Always be testing</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsgyu2huw0vhhjgxfdn9c95f2ypy8wcw3nz5u2zf0el20w38fgwtrczyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56s0yrr8" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsgff39tudq343wx8d8uphsmz74usgxlgj34zvu4dzmzzh8eu9qdkspyfmhxue69uhkummnw3ez6an9wf5kv6t9vsh8wetvd3hhyer9wghxuet54kywfk&#39;&gt;nevent1q…ywfk&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;Always be testing
    </content>
    <updated>2025-03-21T00:53:13Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqs8qqmulyjwv0jqcjqnfa5sqp2apyjvrwvxyjmm3ve80sm30r3tp3czyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56g7mj6j</id>
    
      <title type="html">https://m.primal.net/PdaH.jpg</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqs8qqmulyjwv0jqcjqnfa5sqp2apyjvrwvxyjmm3ve80sm30r3tp3czyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56g7mj6j" />
    <content type="html">
      &lt;br/&gt; &lt;img src=&#34;https://m.primal.net/PdaH.jpg&#34;&gt; 
    </content>
    <updated>2025-03-12T19:32:42Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqspjywreten4ulam25s8hruqmywac5dmvxsae7wu3v6ehuq2xjjxdgzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56qnfslr</id>
    
      <title type="html">Have a test site running on mutinynet, no nostr chat/alerting yet ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqspjywreten4ulam25s8hruqmywac5dmvxsae7wu3v6ehuq2xjjxdgzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56qnfslr" />
    <content type="html">
      Have a test site running on mutinynet, no nostr chat/alerting yet as I focused my time on making the buy-in and pay-out screens plus getting the deployment working. Nostr chat and alerts up next. I open sourced the coordinator code this weekend as well for those curious: &lt;a href=&#34;https://github.com/5day4cast/coordinator&#34;&gt;https://github.com/5day4cast/coordinator&lt;/a&gt; &lt;blockquote class=&#34;border-l-05rem border-l-strongpink border-solid&#34;&gt;&lt;div class=&#34;-ml-4 bg-gradient-to-r from-gray-100 dark:from-zinc-800 to-transparent mr-0 mt-0 mb-4 pl-4 pr-2 py-2&#34;&gt;quoting &lt;br/&gt;&lt;span itemprop=&#34;mentions&#34; itemscope itemtype=&#34;https://schema.org/Article&#34;&gt;&lt;a itemprop=&#34;url&#34; href=&#34;/nevent1qqsyvfr5quka6hyqpqperug799pp49fmt24vujzg57xh9ragevdtsgqpz3mhxue69uhkummnw3ezummcw3ezuer9wcvcqrfk&#34; class=&#34;bg-lavender dark:prose:text-neutral-50 dark:text-neutral-50 dark:bg-garnet px-1&#34;&gt;nevent1q…qrfk&lt;/a&gt;&lt;/span&gt; &lt;/div&gt; More progress made this weekend, finally have payouts working. Next step is adding in a nostr chat and emitted notifications from the coordinator to users about a competition they are in. A test site on a signet coming soon™️&lt;br/&gt;&lt;br/&gt;&lt;span itemprop=&#34;mentions&#34; itemscope itemtype=&#34;https://schema.org/Article&#34;&gt;&lt;a itemprop=&#34;url&#34; href=&#34;/nevent1qqsyxac2uqntx5lzl45pra7aeftqfvdxy3ntj8lzu8t28xq4u2nxqtsf2s9qm&#34; class=&#34;bg-lavender dark:prose:text-neutral-50 dark:text-neutral-50 dark:bg-garnet px-1&#34;&gt;nevent1q…s9qm&lt;/a&gt;&lt;/span&gt; &lt;/blockquote&gt;
    </content>
    <updated>2025-02-24T15:01:45Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqspseu6xwtjx8ccj73a2dz9r4k22scdxz7r0k6x2sfe4zqp4p3twnszyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56csx2m7</id>
    
      <title type="html">Build more weird software, make the odd tool nobody but you might ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqspseu6xwtjx8ccj73a2dz9r4k22scdxz7r0k6x2sfe4zqp4p3twnszyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56csx2m7" />
    <content type="html">
      Build more weird software, make the odd tool nobody but you might use, enjoy the craft of making something
    </content>
    <updated>2025-02-23T16:00:43Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqswmt63npg5z062d063048zdu5w5mvstpz5zwugvx66afgmrdgfhaqzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs564ytf35</id>
    
      <title type="html">Full report here: ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqswmt63npg5z062d063048zdu5w5mvstpz5zwugvx66afgmrdgfhaqzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs564ytf35" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsretss8xckvcjz6vwmsek83zgelg3uzrv58kdmyurvp987q8yjdsgpz3mhxue69uhkummnw3ezummcw3ezuer9wctmwp0v&#39;&gt;nevent1q…wp0v&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;Full report here: &lt;a href=&#34;https://www.voltage.cloud/expanding-bitcoin-use-cases&#34;&gt;https://www.voltage.cloud/expanding-bitcoin-use-cases&lt;/a&gt;
    </content>
    <updated>2025-02-19T16:06:16Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsretss8xckvcjz6vwmsek83zgelg3uzrv58kdmyurvp987q8yjdsgzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56vp20gx</id>
    
      <title type="html">Finding the sweet spot for highest success rate with lightning ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsretss8xckvcjz6vwmsek83zgelg3uzrv58kdmyurvp987q8yjdsgzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56vp20gx" />
    <content type="html">
      Finding the sweet spot for highest success rate with lightning payments 👀&lt;br/&gt; &lt;img src=&#34;https://m.primal.net/PDBo.jpg&#34;&gt; 
    </content>
    <updated>2025-02-19T16:05:44Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsyvfr5quka6hyqpqperug799pp49fmt24vujzg57xh9ragevdtsgqzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56mc9vp4</id>
    
      <title type="html">More progress made this weekend, finally have payouts working. ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsyvfr5quka6hyqpqperug799pp49fmt24vujzg57xh9ragevdtsgqzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56mc9vp4" />
    <content type="html">
      More progress made this weekend, finally have payouts working. Next step is adding in a nostr chat and emitted notifications from the coordinator to users about a competition they are in. A test site on a signet coming soon™️&lt;br/&gt;&lt;blockquote class=&#34;border-l-05rem border-l-strongpink border-solid&#34;&gt;&lt;div class=&#34;-ml-4 bg-gradient-to-r from-gray-100 dark:from-zinc-800 to-transparent mr-0 mt-0 mb-4 pl-4 pr-2 py-2&#34;&gt;quoting &lt;br/&gt;&lt;span itemprop=&#34;mentions&#34; itemscope itemtype=&#34;https://schema.org/Article&#34;&gt;&lt;a itemprop=&#34;url&#34; href=&#34;/nevent1qqsyxac2uqntx5lzl45pra7aeftqfvdxy3ntj8lzu8t28xq4u2nxqtsf2s9qm&#34; class=&#34;bg-lavender dark:prose:text-neutral-50 dark:text-neutral-50 dark:bg-garnet px-1&#34;&gt;nevent1q…s9qm&lt;/a&gt;&lt;/span&gt; &lt;/div&gt; In the spirit of &#34;building in the open&#34; here&#39;s a fuzzy video show 3 users entering into a competition, creating an aggregate signature via musig2 and broadcasting the funding transaction of a dlctix contract after the coordinator&#39;s  wallet successfully signs it. Next will be getting the payout out functionality working/hooked up along with a nostr public chat group.&lt;br/&gt;&lt;br/&gt;Once the features have all landed, and there&#39;s been a bit of code clean up, all the code will be open sourced&lt;br/&gt;&lt;br/&gt;&lt;a href=&#34;https://streamable.com/c91tsg&#34;&gt;https://streamable.com/c91tsg&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;Technologies used so far:&lt;br/&gt;- bdk-wallet in the browser and server: &lt;a href=&#34;https://github.com/bitcoindevkit/bdk&#34;&gt;https://github.com/bitcoindevkit/bdk&lt;/a&gt;&lt;br/&gt;- nostr-sdk in the browser and server: &lt;a href=&#34;https://github.com/rust-nostr/nostr/tree/master/crates/nostr-sdk&#34;&gt;https://github.com/rust-nostr/nostr/tree/master/crates/nostr-sdk&lt;/a&gt;&lt;br/&gt;- dlctix  in the browser and server: &lt;a href=&#34;https://github.com/conduition/dlctix&#34;&gt;https://github.com/conduition/dlctix&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;The bitcoin regtest environment is being manager and run via doppler locally as well (creating the bitcoin node, esplora instance and a few connected lightning nodes): &lt;a href=&#34;https://github.com/tee8z/doppler&#34;&gt;https://github.com/tee8z/doppler&lt;/a&gt;&lt;br/&gt; &lt;/blockquote&gt;
    </content>
    <updated>2025-02-18T03:14:17Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsvy5qfrreqz2x6469ghmmj2eqxjuka5k8auv8thawxj752u63x9qgzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56wlxzj2</id>
    
      <title type="html">I think dlctix sweet spot for a viable product will be person to ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsvy5qfrreqz2x6469ghmmj2eqxjuka5k8auv8thawxj752u63x9qgzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56wlxzj2" />
    <content type="html">
      I think dlctix sweet spot for a viable product will be person to person future contracts used as way to hedge risk in people’s lives and businesses, this is something the traditional financial system doesn’t really support in any meaningful way. Future contracts are really a product used by much larger institutions to hedge risk, which the traditional financial system optimized for, but these sorts of products could be useful if package in a clean UX.
    </content>
    <updated>2025-02-13T16:51:41Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsvhd5cfv088l62wuyg9kx5qs8mddk32znc5t9nt9hcwm589g7lq2czyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs567xpxst</id>
    
      <title type="html">Let the record show, @npub1ew4…6qlf is a Twitter user first, ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsvhd5cfv088l62wuyg9kx5qs8mddk32znc5t9nt9hcwm589g7lq2czyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs567xpxst" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqs2s58wuptm758z53x5w7ya5m3d2exku3lxxevwf44at8t2fkqsaqqpz3mhxue69uhkummnw3ezummcw3ezuer9wcjyrpjc&#39;&gt;nevent1q…rpjc&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;Let the record show, &lt;span itemprop=&#34;mentions&#34; itemscope itemtype=&#34;https://schema.org/Person&#34;&gt;&lt;a itemprop=&#34;url&#34; href=&#34;/npub1ew4nntskh08fzkwjusrc9u5627g639c5z6udc4q3a3plr9ns4naqxp6qlf&#34; class=&#34;bg-lavender dark:prose:text-neutral-50 dark:text-neutral-50 dark:bg-garnet px-1&#34;&gt;&lt;span&gt;bitcoincoderbob&lt;/span&gt; (&lt;span class=&#34;italic&#34;&gt;npub1ew4…6qlf&lt;/span&gt;)&lt;/a&gt;&lt;/span&gt;  is a Twitter user first, nostr user second 
    </content>
    <updated>2025-01-31T22:58:29Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqs2s58wuptm758z53x5w7ya5m3d2exku3lxxevwf44at8t2fkqsaqqzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56nlqc3y</id>
    
      <title type="html">@npub1ew4…6qlf alright let’s see if this wallet of yours ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqs2s58wuptm758z53x5w7ya5m3d2exku3lxxevwf44at8t2fkqsaqqzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56nlqc3y" />
    <content type="html">
      &lt;span itemprop=&#34;mentions&#34; itemscope itemtype=&#34;https://schema.org/Person&#34;&gt;&lt;a itemprop=&#34;url&#34; href=&#34;/npub1ew4nntskh08fzkwjusrc9u5627g639c5z6udc4q3a3plr9ns4naqxp6qlf&#34; class=&#34;bg-lavender dark:prose:text-neutral-50 dark:text-neutral-50 dark:bg-garnet px-1&#34;&gt;&lt;span&gt;bitcoincoderbob&lt;/span&gt; (&lt;span class=&#34;italic&#34;&gt;npub1ew4…6qlf&lt;/span&gt;)&lt;/a&gt;&lt;/span&gt; alright let’s see if this wallet of yours works tapbc1qqqszqspqqzzpprh6m04jcxvqh3hh9q3hnlf4x7ns6qhy73sgww8hg8yug25smj0qcss9xk6yuc0z9tmwgvfpsg6c5vukehqahgt42tdu85nxh585nmvdagvpqssylsm6277gyn3t9c4t6qntwluclu82chmqgqzamxegzdsf0mlmnzlpgqkgrpww4hxjan9wfek2unsvvaz7tm4de5hvetjwdjjumrfva58gmnfdenjuenfdeskucm98gcnqvpj8y8kgdze
    </content>
    <updated>2025-01-31T18:31:20Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqs2jjgjttkjkxderrlj4vxqexk2hlj20w5t7z5fs6rzfl5z0h0kp7qzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56a2samy</id>
    
      <title type="html">You’ve earned that nap</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqs2jjgjttkjkxderrlj4vxqexk2hlj20w5t7z5fs6rzfl5z0h0kp7qzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56a2samy" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsws9uy8thaltrgrqk2mkvpqswq4f2sachkzpf3f3yesck56xkjegspzemhxue69uhhyetvv9ujumn0wd68ytnzv9hxg7mgfnn&#39;&gt;nevent1q…gfnn&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;You’ve earned that nap
    </content>
    <updated>2025-01-31T02:00:07Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqspr6uhcfxsct50kk6n78l79k67xyn49njtv3vasq6807ushaj5d4czyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56dud0ha</id>
    
      <title type="html">What the funding transaction from the demo video ends up looking ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqspr6uhcfxsct50kk6n78l79k67xyn49njtv3vasq6807ushaj5d4czyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56dud0ha" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsyxac2uqntx5lzl45pra7aeftqfvdxy3ntj8lzu8t28xq4u2nxqtspz3mhxue69uhkummnw3ezummcw3ezuer9wcqm9ttd&#39;&gt;nevent1q…9ttd&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;What the funding transaction from the demo video ends up looking like:&lt;br/&gt;```&lt;br/&gt;bd1 getrawtransaction &amp;#34;9f49d3a42c35e75a4e0c9c37aecc4454d56b4e27661a1589721f912282c8c299&amp;#34; true&lt;br/&gt;WARN[0000] /home/tee8z/.doppler/v0.4.0/doppler-cluster.yaml: the attribute `version` is obsolete, it will be ignored, please remove it to avoid potential confusion &lt;br/&gt;{&lt;br/&gt;  &amp;#34;txid&amp;#34;: &amp;#34;9f49d3a42c35e75a4e0c9c37aecc4454d56b4e27661a1589721f912282c8c299&amp;#34;,&lt;br/&gt;  &amp;#34;hash&amp;#34;: &amp;#34;01114229cce8a2875b609fcf65cf9c1ceab4382ddb41d114567878e7532845cf&amp;#34;,&lt;br/&gt;  &amp;#34;version&amp;#34;: 2,&lt;br/&gt;  &amp;#34;size&amp;#34;: 205,&lt;br/&gt;  &amp;#34;vsize&amp;#34;: 154,&lt;br/&gt;  &amp;#34;weight&amp;#34;: 616,&lt;br/&gt;  &amp;#34;locktime&amp;#34;: 0,&lt;br/&gt;  &amp;#34;vin&amp;#34;: [&lt;br/&gt;    {&lt;br/&gt;      &amp;#34;txid&amp;#34;: &amp;#34;e46ca3d09e4c46bff6361fb490096573ed37f7f09fd01cf54dcdc06c9781a5a0&amp;#34;,&lt;br/&gt;      &amp;#34;vout&amp;#34;: 1,&lt;br/&gt;      &amp;#34;scriptSig&amp;#34;: {&lt;br/&gt;        &amp;#34;asm&amp;#34;: &amp;#34;&amp;#34;,&lt;br/&gt;        &amp;#34;hex&amp;#34;: &amp;#34;&amp;#34;&lt;br/&gt;      },&lt;br/&gt;      &amp;#34;txinwitness&amp;#34;: [&lt;br/&gt;        &amp;#34;d4f07e09193ff4e3623586959dbe52e3c7ac4aeee1d713f4197a45dd080e864346139e78ef0961084c828c52b22db830cd9ac07dd3e665c92aaf216e97e9c234&amp;#34;&lt;br/&gt;      ],&lt;br/&gt;      &amp;#34;sequence&amp;#34;: 4294967295&lt;br/&gt;    }&lt;br/&gt;  ],&lt;br/&gt;  &amp;#34;vout&amp;#34;: [&lt;br/&gt;    {&lt;br/&gt;      &amp;#34;value&amp;#34;: 0.00015000,&lt;br/&gt;      &amp;#34;n&amp;#34;: 0,&lt;br/&gt;      &amp;#34;scriptPubKey&amp;#34;: {&lt;br/&gt;        &amp;#34;asm&amp;#34;: &amp;#34;1 ec54c620f5967cbc751d2f5b327bbe8763dabd284c1b0d9157a389e92386d843&amp;#34;,&lt;br/&gt;        &amp;#34;desc&amp;#34;: &amp;#34;rawtr(ec54c620f5967cbc751d2f5b327bbe8763dabd284c1b0d9157a389e92386d843)#ldxg2ce5&amp;#34;,&lt;br/&gt;        &amp;#34;hex&amp;#34;: &amp;#34;5120ec54c620f5967cbc751d2f5b327bbe8763dabd284c1b0d9157a389e92386d843&amp;#34;,&lt;br/&gt;        &amp;#34;address&amp;#34;: &amp;#34;bcrt1pa32vvg84je7tcaga9adny7a7sa3a40fgfsdsmy2h5wy7jguxmppsqvfxk0&amp;#34;,&lt;br/&gt;        &amp;#34;type&amp;#34;: &amp;#34;witness_v1_taproot&amp;#34;&lt;br/&gt;      }&lt;br/&gt;    },&lt;br/&gt;    {&lt;br/&gt;      &amp;#34;value&amp;#34;: 999.99944200,&lt;br/&gt;      &amp;#34;n&amp;#34;: 1,&lt;br/&gt;      &amp;#34;scriptPubKey&amp;#34;: {&lt;br/&gt;        &amp;#34;asm&amp;#34;: &amp;#34;1 77a99c96ecdf0128fc71423c7d795833d3d5b8cdb3e739617dd7af07de5cae42&amp;#34;,&lt;br/&gt;        &amp;#34;desc&amp;#34;: &amp;#34;rawtr(77a99c96ecdf0128fc71423c7d795833d3d5b8cdb3e739617dd7af07de5cae42)#3a08tt8u&amp;#34;,&lt;br/&gt;        &amp;#34;hex&amp;#34;: &amp;#34;512077a99c96ecdf0128fc71423c7d795833d3d5b8cdb3e739617dd7af07de5cae42&amp;#34;,&lt;br/&gt;        &amp;#34;address&amp;#34;: &amp;#34;bcrt1pw75ee9hvmuqj3lr3gg78672cx0fatwxdk0nnjcta67hs0hju4epq6kfkkx&amp;#34;,&lt;br/&gt;        &amp;#34;type&amp;#34;: &amp;#34;witness_v1_taproot&amp;#34;&lt;br/&gt;      }&lt;br/&gt;    }&lt;br/&gt;  ],&lt;br/&gt;  &amp;#34;hex&amp;#34;: &amp;#34;02000000000101a0a581976cc0cd4df51cd09ff0f737ed73650990b41f36f6bf464c9ed0a36ce40100000000ffffffff02983a000000000000225120ec54c620f5967cbc751d2f5b327bbe8763dabd284c1b0d9157a389e92386d843080e76481700000022512077a99c96ecdf0128fc71423c7d795833d3d5b8cdb3e739617dd7af07de5cae420140d4f07e09193ff4e3623586959dbe52e3c7ac4aeee1d713f4197a45dd080e864346139e78ef0961084c828c52b22db830cd9ac07dd3e665c92aaf216e97e9c23400000000&amp;#34;,&lt;br/&gt;  &amp;#34;blockhash&amp;#34;: &amp;#34;038d071dfa201816cc8f51af3b83e61468a16b653c78218fd86a98fc579d42b3&amp;#34;,&lt;br/&gt;  &amp;#34;confirmations&amp;#34;: 1,&lt;br/&gt;  &amp;#34;time&amp;#34;: 1737912980,&lt;br/&gt;  &amp;#34;blocktime&amp;#34;: 1737912980&lt;br/&gt;}&lt;br/&gt;```
    </content>
    <updated>2025-01-27T16:39:49Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsyxac2uqntx5lzl45pra7aeftqfvdxy3ntj8lzu8t28xq4u2nxqtszyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56pxkuzf</id>
    
      <title type="html">In the spirit of &amp;#34;building in the open&amp;#34; here&amp;#39;s a ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsyxac2uqntx5lzl45pra7aeftqfvdxy3ntj8lzu8t28xq4u2nxqtszyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56pxkuzf" />
    <content type="html">
      In the spirit of &amp;#34;building in the open&amp;#34; here&amp;#39;s a fuzzy video show 3 users entering into a competition, creating an aggregate signature via musig2 and broadcasting the funding transaction of a dlctix contract after the coordinator&amp;#39;s  wallet successfully signs it. Next will be getting the payout out functionality working/hooked up along with a nostr public chat group.&lt;br/&gt;&lt;br/&gt;Once the features have all landed, and there&amp;#39;s been a bit of code clean up, all the code will be open sourced&lt;br/&gt;&lt;br/&gt;&lt;a href=&#34;https://streamable.com/c91tsg&#34;&gt;https://streamable.com/c91tsg&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;Technologies used so far:&lt;br/&gt;- bdk-wallet in the browser and server: &lt;a href=&#34;https://github.com/bitcoindevkit/bdk&#34;&gt;https://github.com/bitcoindevkit/bdk&lt;/a&gt;&lt;br/&gt;- nostr-sdk in the browser and server: &lt;a href=&#34;https://github.com/rust-nostr/nostr/tree/master/crates/nostr-sdk&#34;&gt;https://github.com/rust-nostr/nostr/tree/master/crates/nostr-sdk&lt;/a&gt;&lt;br/&gt;- dlctix  in the browser and server: &lt;a href=&#34;https://github.com/conduition/dlctix&#34;&gt;https://github.com/conduition/dlctix&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;The bitcoin regtest environment is being manager and run via doppler locally as well (creating the bitcoin node, esplora instance and a few connected lightning nodes): &lt;a href=&#34;https://github.com/tee8z/doppler&#34;&gt;https://github.com/tee8z/doppler&lt;/a&gt;&lt;br/&gt;
    </content>
    <updated>2025-01-27T16:35:30Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsvksdza30m9ctv64ezu2puacx8npe30yyzxhs46tyedp9zgu6wmeczyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56khv0d8</id>
    
      <title type="html">Additionally it’s using nostr nip-98 for authentication of ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsvksdza30m9ctv64ezu2puacx8npe30yyzxhs46tyedp9zgu6wmeczyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56khv0d8" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqs9cs24rale3xupq5gvuvfac0mqptcypd23259q9jgn25e66ctsw9qpz3mhxue69uhkummnw3ezummcw3ezuer9wcskvhkp&#39;&gt;nevent1q…vhkp&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;Additionally it’s using nostr nip-98 for authentication of users, cannot over state how huge that nip is for any project that needs user specific access. Having to not setup my own auth system to issue jwts or the like is a big win.
    </content>
    <updated>2025-01-23T18:30:42Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqs9cs24rale3xupq5gvuvfac0mqptcypd23259q9jgn25e66ctsw9qzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56rzuq45</id>
    
      <title type="html">I’ve decided I’m going to open source this project I’ve ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqs9cs24rale3xupq5gvuvfac0mqptcypd23259q9jgn25e66ctsw9qzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56rzuq45" />
    <content type="html">
      I’ve decided I’m going to open source this project I’ve been grinding on that is a coordinator for a dlctix competition around weather predictions. Basically users will create entries for a few points of predictions across a number of cities and compete against others in the competition for coin (flow feels similar to daily fantasy sports). The coordinator can be fully untrusted and is non-custodial of users funds. Payouts can be on-chain or lightning and entry fees are paid in lightning. The competitions is a dlc contract on chain and the competition outcome is determine by an oracle that attests to who won. Code is still actively being worked on and not really just yet to release it, but keep an eye out, more to come soon 👀
    </content>
    <updated>2025-01-23T18:21:57Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsvklsz0r4kc9q6yz9xaaly6edslq4a4ee3zl4tap05nk9247x4vsczyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs5633u44h</id>
    
      <title type="html">Been cooking this weekend 👀 https://m.primal.net/Nrqz.png</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsvklsz0r4kc9q6yz9xaaly6edslq4a4ee3zl4tap05nk9247x4vsczyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs5633u44h" />
    <content type="html">
      Been cooking this weekend 👀&lt;br/&gt; &lt;img src=&#34;https://m.primal.net/Nrqz.png&#34;&gt; 
    </content>
    <updated>2025-01-21T00:11:37Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsgw3zn63pjztpndxrg0tuv6qlgxgykz5ksegnpkuhjnddnqrtv66gzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56vc0hm0</id>
    
      <title type="html">DLC related tech is the most slept on in bitcoin dev IMO, but it ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsgw3zn63pjztpndxrg0tuv6qlgxgykz5ksegnpkuhjnddnqrtv66gzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56vc0hm0" />
    <content type="html">
      DLC related tech is the most slept on in bitcoin dev IMO, but it has the potential to make some very interesting products. I think people dismiss it due to it behind hard to build and scale. It also has to be tailored for whatever you use-case is, rarely vanilla DLCs get you all the way there 
    </content>
    <updated>2025-01-12T14:50:42Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsgzmxlcch6knmnw5uu2u0j3nec3tll6uwty6rex4f7h7s3rd3s05gzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs563reph0</id>
    
      <title type="html">Big release for Doppler! v0.4.0 An Esplora instance can be ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsgzmxlcch6knmnw5uu2u0j3nec3tll6uwty6rex4f7h7s3rd3s05gzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs563reph0" />
    <content type="html">
      Big release for Doppler! v0.4.0&lt;br/&gt;An Esplora instance can be attached to any Bitcoind setup in a simulation doppler file.&lt;br/&gt;Take a peak at the example Doppler setup 👀&lt;br/&gt;github.com/tee8z/doppler/…&lt;br/&gt;github.com/tee8z/doppler/…&lt;br/&gt;It turned out to be a challenge, but I&amp;#39;m excited to start using it!
    </content>
    <updated>2025-01-05T21:50:12Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqspy5wfc8ht0kufg5nccj0xqy6nvejunpurjus994pwacpg6g34yqqzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56q59lgn</id>
    
      <title type="html">For anyone that tried to use Doppler’s ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqspy5wfc8ht0kufg5nccj0xqy6nvejunpurjus994pwacpg6g34yqqzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56q59lgn" />
    <content type="html">
      For anyone that tried to use Doppler’s &lt;a href=&#34;https://github.com/tee8z/doppler&#34;&gt;https://github.com/tee8z/doppler&lt;/a&gt; release binaries in the past on an Apple computer, I finally got around to fixing the build and the latest release will work on a Mac now, cheers 🍻
    </content>
    <updated>2024-12-27T23:34:56Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsvh9q757lspc48cggpzr6epasqke8aa0zq425uerwg68rgxqj3kjszyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56ap80tw</id>
    
      <title type="html">With all the soft fork talk https://m.primal.net/MiRr.jpg</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsvh9q757lspc48cggpzr6epasqke8aa0zq425uerwg68rgxqj3kjszyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56ap80tw" />
    <content type="html">
      With all the soft fork talk&lt;br/&gt; &lt;img src=&#34;https://m.primal.net/MiRr.jpg&#34;&gt; 
    </content>
    <updated>2024-11-27T03:18:58Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqstcl5k63406sldqgqc8ypf8jck3y9g8l2j8zg3ummre6xmsaq9dtczyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56pfwk7e</id>
    
      <title type="html">Taking a much needed break up in Maine with my wife, a lovely ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqstcl5k63406sldqgqc8ypf8jck3y9g8l2j8zg3ummre6xmsaq9dtczyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56pfwk7e" />
    <content type="html">
      Taking a much needed break up in Maine with my wife, a lovely place. I could definitely see myself moving here&lt;br/&gt; &lt;img src=&#34;https://m.primal.net/LoYk.jpg&#34;&gt; 
    </content>
    <updated>2024-10-31T20:09:38Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsy4ymqr700fddv9cg436nqrhd4w6c8fzvyxzll3uqpnnywlqf96nqzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56a2q3mn</id>
    
      <title>Nostr event nevent1qqsy4ymqr700fddv9cg436nqrhd4w6c8fzvyxzll3uqpnnywlqf96nqzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56a2q3mn</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsy4ymqr700fddv9cg436nqrhd4w6c8fzvyxzll3uqpnnywlqf96nqzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56a2q3mn" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsy9atm4n2k2n3vpx59gu2tfr4y8f6xdnz2dfyn3x8mwcdmzhgauls66mxma&#39;&gt;nevent1q…mxma&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;&lt;a href=&#34;https://github.com/tee8z/doppler/blob/master/examples/doppler_files/2_force_close/README.md&#34;&gt;https://github.com/tee8z/doppler/blob/master/examples/doppler_files/2_force_close/README.md&lt;/a&gt;
    </content>
    <updated>2024-10-26T16:17:30Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsw53007c4z5hcha6fny7pa8ga75aw0kza9ww7u28f5wt5zvseey5czyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56ss27yz</id>
    
      <title type="html">Come vote for your favorite pepes using nostr! https://pepe.vote/ ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsw53007c4z5hcha6fny7pa8ga75aw0kza9ww7u28f5wt5zvseey5czyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56ss27yz" />
    <content type="html">
      Come vote for your favorite pepes using nostr! &lt;br/&gt;&lt;br/&gt;&lt;a href=&#34;https://pepe.vote/&#34;&gt;https://pepe.vote/&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;Hackathon project for tabconf done by me,&lt;span itemprop=&#34;mentions&#34; itemscope itemtype=&#34;https://schema.org/Person&#34;&gt;&lt;a itemprop=&#34;url&#34; href=&#34;/npub1ew4nntskh08fzkwjusrc9u5627g639c5z6udc4q3a3plr9ns4naqxp6qlf&#34; class=&#34;bg-lavender dark:prose:text-neutral-50 dark:text-neutral-50 dark:bg-garnet px-1&#34;&gt;&lt;span&gt;bitcoincoderbob&lt;/span&gt; (&lt;span class=&#34;italic&#34;&gt;npub1ew4…6qlf&lt;/span&gt;)&lt;/a&gt;&lt;/span&gt; &lt;span itemprop=&#34;mentions&#34; itemscope itemtype=&#34;https://schema.org/Person&#34;&gt;&lt;a itemprop=&#34;url&#34; href=&#34;/npub1yx6pjypd4r7qh2gysjhvjd9l2km6hnm4amdnjyjw3467fy05rf0qfp7kza&#34; class=&#34;bg-lavender dark:prose:text-neutral-50 dark:text-neutral-50 dark:bg-garnet px-1&#34;&gt;&lt;span&gt;vicariousdrama&lt;/span&gt; (&lt;span class=&#34;italic&#34;&gt;npub1yx6…7kza&lt;/span&gt;)&lt;/a&gt;&lt;/span&gt;
    </content>
    <updated>2024-10-25T22:56:49Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqstc5mujedxtwrm562s63uean3l60rfug24q2nlfh40wcdtl5e68sqzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs563dg48f</id>
    
      <title type="html">Get ready for some simulation magic, preview of new look for ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqstc5mujedxtwrm562s63uean3l60rfug24q2nlfh40wcdtl5e68sqzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs563dg48f" />
    <content type="html">
      Get ready for some simulation magic, preview of new look for Doppler 👀&lt;br/&gt; &lt;img src=&#34;https://m.primal.net/LbOx.png&#34;&gt; 
    </content>
    <updated>2024-10-19T19:52:03Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqs8dwnjg8h38sq9v6kcg76fwpma7527n2ntj6gq0dll5te8ufmwv4qzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs567f8lc5</id>
    
      <title>Nostr event nevent1qqs8dwnjg8h38sq9v6kcg76fwpma7527n2ntj6gq0dll5te8ufmwv4qzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs567f8lc5</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqs8dwnjg8h38sq9v6kcg76fwpma7527n2ntj6gq0dll5te8ufmwv4qzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs567f8lc5" />
    <content type="html">
      Build pipelines are hard, a lesson that never ends
    </content>
    <updated>2024-10-19T01:26:20Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqs8smshx8dfn6h9c7s85cc5mxsmdrcszyd6u88htmpelcrz9v26dwqzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56q9dh23</id>
    
      <title type="html">I’m starting to realize with window.nostr and the ability to ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqs8smshx8dfn6h9c7s85cc5mxsmdrcszyd6u88htmpelcrz9v26dwqzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56q9dh23" />
    <content type="html">
      I’m starting to realize with window.nostr and the ability to display or pay a lightning invoice, that gives a developer a lot of cryptographic primitives that makes creating a dlctix client in the browser possible, I’m kind excited to see what I can make with them
    </content>
    <updated>2024-10-06T13:27:15Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqst35mvylhnlaef06hmkzxmgswy3uahccq0rjxaw72xv67a7dqtv8czyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs569c3qfa</id>
    
      <title type="html">Always a pleasant surprise when you get a PR from an anon into a ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqst35mvylhnlaef06hmkzxmgswy3uahccq0rjxaw72xv67a7dqtv8czyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs569c3qfa" />
    <content type="html">
      Always a pleasant surprise when you get a PR from an anon into a library you created and forgot about
    </content>
    <updated>2024-09-16T18:54:41Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqs8ydm0xs9elr2fltwk8d9rfj4833ukytyc2zepeuk64xu8fdfallszyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56ya7f0q</id>
    
      <title type="html">Turns out this repo is exactly what I need, great job ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqs8ydm0xs9elr2fltwk8d9rfj4833ukytyc2zepeuk64xu8fdfallszyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56ya7f0q" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsth7szzkcl7ts7s58rfyvvl53a3fm2ypuyyy5fr94jl0exx0dluvgpz3mhxue69uhkummnw3ezummcw3ezuer9wcz9ueg5&#39;&gt;nevent1q…ueg5&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;Turns out this repo is exactly what I need, great job &lt;span itemprop=&#34;mentions&#34; itemscope itemtype=&#34;https://schema.org/Person&#34;&gt;&lt;a itemprop=&#34;url&#34; href=&#34;/npub1sx9rnd03vs34lp39fvfv5krwlnxpl90f3dzuk8y3cuwutk2gdhdqjz6g8m&#34; class=&#34;bg-lavender dark:prose:text-neutral-50 dark:text-neutral-50 dark:bg-garnet px-1&#34;&gt;&lt;span&gt;nostr.band&lt;/span&gt; (&lt;span class=&#34;italic&#34;&gt;npub1sx9…6g8m&lt;/span&gt;)&lt;/a&gt;&lt;/span&gt;  &lt;a href=&#34;https://github.com/nostrband/nostr-login&#34;&gt;https://github.com/nostrband/nostr-login&lt;/a&gt;
    </content>
    <updated>2024-08-23T17:16:54Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsth7szzkcl7ts7s58rfyvvl53a3fm2ypuyyy5fr94jl0exx0dluvgzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56e3zrfa</id>
    
      <title type="html">Does anyone know of a good open source example on how to ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsth7szzkcl7ts7s58rfyvvl53a3fm2ypuyyy5fr94jl0exx0dluvgzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56e3zrfa" />
    <content type="html">
      Does anyone know of a good open source example on how to implement nostr login, with extensions or with having the user create their own keys in the browser ( having the key creation offloaded to rust wasm)?
    </content>
    <updated>2024-08-20T13:39:53Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsvqt0mgel562rymtry3vmdtz7rzdzlacx5sv670zrgslvnfyz8d5qzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs563q60nx</id>
    
      <title type="html">Always satisfying getting a side project to “working”, but ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsvqt0mgel562rymtry3vmdtz7rzdzlacx5sv670zrgslvnfyz8d5qzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs563q60nx" />
    <content type="html">
      Always  satisfying getting a side project to “working”, but then the real beast of deploying shows up to ruin the fun
    </content>
    <updated>2024-08-15T20:29:29Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsrr304tvy4ddkmyj5h85gutqhxd6vzjls4hwqq6ql4whqjpskmp3czyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs562e5zfl</id>
    
      <title type="html">The best kind of applications are the ones you make for yourself</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsrr304tvy4ddkmyj5h85gutqhxd6vzjls4hwqq6ql4whqjpskmp3czyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs562e5zfl" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqs28pln2x2qptx0dc8vvq3cktr9kpqxftpl645u3jd08ku6ye9d9ygprdmhxue69uhhyetvv9ujucnfw33k76twwpshy6ewvdhk6g54qck&#39;&gt;nevent1q…4qck&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;The best kind of applications are the ones you make for yourself
    </content>
    <updated>2024-08-08T21:38:40Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsd7lfrge54gku0d3ts2gf342dte4vw3cvdavrp5alu409ssph0yxqzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs569au4ff</id>
    
      <title type="html">Youth brings change and energy, if you find a problem to solve ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsd7lfrge54gku0d3ts2gf342dte4vw3cvdavrp5alu409ssph0yxqzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs569au4ff" />
    <content type="html">
      Youth brings change and energy, if you find a problem to solve young nothing wrong with going all in&lt;br/&gt; &lt;img src=&#34;https://m.primal.net/JICP.jpg&#34;&gt; 
    </content>
    <updated>2024-07-04T16:31:41Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsff04q2fruz8k98n57mlszl0fmt4gwrx3umwhxtu52gq0r6lmu6qszyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56n8xzzw</id>
    
      <title type="html">Highly recommend making a trip to New Hampshire white mountains ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsff04q2fruz8k98n57mlszl0fmt4gwrx3umwhxtu52gq0r6lmu6qszyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56n8xzzw" />
    <content type="html">
      Highly recommend making a trip to New Hampshire white mountains if you ever get the chance, they are quite the sight and an incredible place to backpack, picture from my most recent trek there&lt;br/&gt; &lt;img src=&#34;https://m.primal.net/JEUt.jpg&#34;&gt; 
    </content>
    <updated>2024-07-01T11:52:50Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsgzrqdmf5c4alkmyxa4gery0dre00933ekkwxwckv42tsklzjjuugzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56yts8sg</id>
    
      <title type="html">“Split a commit, make your code reviews life easier, it can’t ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsgzrqdmf5c4alkmyxa4gery0dre00933ekkwxwckv42tsklzjjuugzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56yts8sg" />
    <content type="html">
      “Split a commit, make your code reviews life easier, it can’t be that hard…” absolutely rugged myself, thankfully “git reset —hard” exists and learned to push it remotely before trying to get fancy with git a long time ago
    </content>
    <updated>2024-05-30T20:00:15Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsru4lexav9y89ltl0xyltqh8a9n7nlffg57z9vm9qlchyulj6cs7czyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56tel7gj</id>
    
      <title type="html">Ecash growing on you?</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsru4lexav9y89ltl0xyltqh8a9n7nlffg57z9vm9qlchyulj6cs7czyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56tel7gj" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqs2t9c4l57qterkjzpuyfw46xa9egm38zz8mwp89kl2l5jmt7duensppamhxue69uhkztnwdaejumr0dsxvkd6v&#39;&gt;nevent1q…kd6v&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;Ecash growing on you?
    </content>
    <updated>2024-05-30T17:42:32Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqs8jpzz0j4j9yatrskweeamcf0vuhg7mens46ldmaza5rnpghmyxeczyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56cmgned</id>
    
      <title type="html">Headed to BBB, ready to share some sweet lightning simulations ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqs8jpzz0j4j9yatrskweeamcf0vuhg7mens46ldmaza5rnpghmyxeczyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56cmgned" />
    <content type="html">
      Headed to BBB, ready to share some sweet lightning simulations &lt;br/&gt;&lt;br/&gt; &lt;img src=&#34;https://m.primal.net/HtnV.png&#34;&gt; 
    </content>
    <updated>2024-04-11T15:32:02Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsf7599pwetgr8u9xnyjtyxqkj5s6cnl8ls3wm3es5hsr9erj3t8jgzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs562mqmch</id>
    
      <title type="html">Incase anyone wants to see a chain of force closures ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsf7599pwetgr8u9xnyjtyxqkj5s6cnl8ls3wm3es5hsr9erj3t8jgzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs562mqmch" />
    <content type="html">
      Incase anyone wants to see a chain of force closures automatically happen due to inflight htlcs and a peer going offline for too long, got a Doppler simulation for you 👀: &lt;a href=&#34;https://github.com/tee8z/doppler/blob/master/doppler_files/force_close/README.md&#34;&gt;https://github.com/tee8z/doppler/blob/master/doppler_files/force_close/README.md&lt;/a&gt;
    </content>
    <updated>2024-03-25T01:18:26Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsf5smylaugqnlsucxurp3mnfkz04skt5hyh7fxk0n9vd92mmdkm8qzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56evutw3</id>
    
      <title type="html">Is it nap time yet? https://m.primal.net/Hfjt.jpg</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsf5smylaugqnlsucxurp3mnfkz04skt5hyh7fxk0n9vd92mmdkm8qzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56evutw3" />
    <content type="html">
      Is it nap time yet?&lt;br/&gt; &lt;img src=&#34;https://m.primal.net/Hfjt.jpg&#34;&gt; 
    </content>
    <updated>2024-02-27T22:31:53Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsfkjny46ucxksem53zfy29fxhpu7j6zfnlpce8ntxgml8xltcvdhqzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56m0v73p</id>
    
      <title type="html">pic of actual post: https://m.primal.net/HeIN.jpg</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsfkjny46ucxksem53zfy29fxhpu7j6zfnlpce8ntxgml8xltcvdhqzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56m0v73p" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqst8763adxr7um27hjd00tkljg3xy88eg9qfa80h6a98knae9j2rdst258yl&#39;&gt;nevent1q…58yl&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;pic of actual post: &lt;br/&gt; &lt;img src=&#34;https://m.primal.net/HeIN.jpg&#34;&gt; 
    </content>
    <updated>2024-02-21T16:41:30Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqst8763adxr7um27hjd00tkljg3xy88eg9qfa80h6a98knae9j2rdszyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs569yud6r</id>
    
      <title type="html">huge: https://x.com/gkrizek/status/1760331184905519576?s=46</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqst8763adxr7um27hjd00tkljg3xy88eg9qfa80h6a98knae9j2rdszyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs569yud6r" />
    <content type="html">
      huge: &lt;a href=&#34;https://x.com/gkrizek/status/1760331184905519576?s=46&#34;&gt;https://x.com/gkrizek/status/1760331184905519576?s=46&lt;/a&gt;
    </content>
    <updated>2024-02-21T16:40:18Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsxa7j2fwmamr4l7rfsf8v2ehr8nk36km9ul0p7ehdajdu0tpazw4qzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56rnclgx</id>
    
      <title type="html">This is awesome! well done sir</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsxa7j2fwmamr4l7rfsf8v2ehr8nk36km9ul0p7ehdajdu0tpazw4qzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56rnclgx" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsz96n9z4fenp86yfam6kfx0yv40ynz6k30arc8898tj8ewc9cgxlq999sh3&#39;&gt;nevent1q…9sh3&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;This is awesome! well done sir
    </content>
    <updated>2024-02-19T20:25:29Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsg2qdhk3fkjchavwtgdzn6kp6nh2z0atzv350jm7pekqy847v3n5qzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56frhvp9</id>
    
      <title type="html">After listening to the lastest @npub10ut…xdlq just want to ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsg2qdhk3fkjchavwtgdzn6kp6nh2z0atzv350jm7pekqy847v3n5qzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56frhvp9" />
    <content type="html">
      After listening to the lastest &lt;span itemprop=&#34;mentions&#34; itemscope itemtype=&#34;https://schema.org/Person&#34;&gt;&lt;a itemprop=&#34;url&#34; href=&#34;/npub10uthwp4ddc9w5adfuv69m8la4enkwma07fymuetmt93htcww6wgs55xdlq&#34; class=&#34;bg-lavender dark:prose:text-neutral-50 dark:text-neutral-50 dark:bg-garnet px-1&#34;&gt;&lt;span&gt;RabbitHoleRecap&lt;/span&gt; (&lt;span class=&#34;italic&#34;&gt;npub10ut…xdlq&lt;/span&gt;)&lt;/a&gt;&lt;/span&gt; just want to state it&amp;#39;s not trivial to do accounting on lightning nodes. There are edge cases that get hairy around on-chain and lightning fees, can be done but typically requires an external service/added plugin to keep track of your lightning node&amp;#39;s historical data and plugging in information from on-chain to get a full picture. The node software itself tries to limit the amount of state it keeps so that it can operater better and stay leaner. This is a bigger problem for larger nodes that have had a ton of state go across them. Just my 2sats
    </content>
    <updated>2024-02-10T01:08:06Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsw6ev880sar26w7m5q43w3226yyld4rr0r58x5errhh7gcmf6y97qzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs560ecqt2</id>
    
      <title type="html">Not sure if someone has already done this, but something that ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsw6ev880sar26w7m5q43w3226yyld4rr0r58x5errhh7gcmf6y97qzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs560ecqt2" />
    <content type="html">
      Not sure if someone has already done this, but something that would be nice to have is a plug &amp;amp; play library to setup a &amp;#34;public chat room&amp;#34; thats application specific (so not the global feed) on nostr that could be use in applications. Think like the stream of messages that happen in a gaming lobby or gambling site, not having to re-invent the wheel whenever someone wants to make it possible for their users to communicate with each other would be a real win.
    </content>
    <updated>2024-02-02T13:56:37Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqs9u8us6g3u0shp384gdrzrcrl445yeeps8zsm7sld8tagl4zegefszyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56sf5cdr</id>
    
      <title type="html">awesome, if you guys open source it I would love to help out ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqs9u8us6g3u0shp384gdrzrcrl445yeeps8zsm7sld8tagl4zegefszyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56sf5cdr" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsr2j895wjh0z0z8ymf0w05gxuv47tzyj9me4vumc9r24jm0jqx7dcz7hp5m&#39;&gt;nevent1q…hp5m&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;awesome, if you guys open source it I would love to help out where possible
    </content>
    <updated>2024-01-20T15:54:36Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsdfwzy82a7ngkh0h463qvwrxz2a64jeclesayy87zx9fktz762zqgzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs567v53g0</id>
    
      <title type="html">Realizing multi-party bets are still a hard thing to pull off in ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsdfwzy82a7ngkh0h463qvwrxz2a64jeclesayy87zx9fktz762zqgzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs567v53g0" />
    <content type="html">
      Realizing multi-party bets are still a hard thing to pull off in a non-custiodal way in bitcoin, especially at scale.&lt;br/&gt;&lt;br/&gt;One could do a DLC, but then you have a large amount of data has to be communicted between each participant before the transaction is broadcasted. Not to mention the fees would make small bets (think less than a dollar) not a viable possibility. The amount of data grows nearly exponentially as the number of participants grows, there are some cool math tricks there to try to shink the amount of data needed for determining the payout path, but this doesn&amp;#39;t seem like it would work for say a 1000 person competition style bet. &lt;br/&gt;&lt;br/&gt;One could go the hodl invoice route of having each participant pay invoices for all possible payout routes then have a central node where all the payments go through funnel where the payments go at bet completetion. The node would cancel the payout routes that lost and allow the winning ones to pass through. But this brings in a lot of issues with lightning state and if you&amp;#39;re bet is a long window of time there&amp;#39;s a high likelihood of things going sideways (think force closures along payout routes).&lt;br/&gt;&lt;br/&gt;It seems there might be hope here to do this in a less custiodal way via fedimint? The prediction market module seems interesting, but not sure how it handles orcale type data, ie an attestation about the outcome of whatever is being predicted/bet on. &lt;br/&gt;&lt;br/&gt;Going to keep thinking on this, if anyone has ideas around this I&amp;#39;m all ears.
    </content>
    <updated>2024-01-20T15:16:39Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqs9d8f3ztd6wrt24gds0w920s5tju9ydssdjlp0cj695tqwpn7s2egzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56lyudyf</id>
    
      <title type="html">So who’s going to be the baller that holds a key to a fedimint ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqs9d8f3ztd6wrt24gds0w920s5tju9ydssdjlp0cj695tqwpn7s2egzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56lyudyf" />
    <content type="html">
      So who’s going to be the baller that holds a key to a fedimint with the prediction market module enabled?
    </content>
    <updated>2024-01-18T17:05:19Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsylncs7h6jq5n0uc5y3cx9mfq0ukupeh85cya6lvy3g9k3gv7dpdqzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56ze4zpr</id>
    
      <title type="html">Spent the weekend building a tool to work with noaa (National ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsylncs7h6jq5n0uc5y3cx9mfq0ukupeh85cya6lvy3g9k3gv7dpdqzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56ze4zpr" />
    <content type="html">
      Spent the weekend building a tool to work with noaa (National Oceanic and Atmospheric Administration) data. Thinking I may expand it to work as an orcale for DLCs or something like that, but was really just a way for me to learn about duckdb (the database is IN the browser!). &lt;br/&gt;&lt;br/&gt;Take a peek at the tool:&lt;br/&gt;&lt;a href=&#34;https://www.4casttruth.win&#34;&gt;https://www.4casttruth.win&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;Source:&lt;br/&gt;&lt;a href=&#34;https://github.com/tee8z/noaa-data-pipeline&#34;&gt;https://github.com/tee8z/noaa-data-pipeline&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;Once I&amp;#39;ve collected enough data I should be able to tell how well NOAA is at predicting weather for different locations, I&amp;#39;ve always wanted to know if there&amp;#39;s any patterns there.
    </content>
    <updated>2024-01-15T21:48:57Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsgqr0zpskqfexjlpcvfq3tuqjpsc6pevzpx4u8cwte33vjq4jtwaszyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56nlwaca</id>
    
      <title type="html">reminding myself on a day like today ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsgqr0zpskqfexjlpcvfq3tuqjpsc6pevzpx4u8cwte33vjq4jtwaszyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56nlwaca" />
    <content type="html">
      reminding myself on a day like today&lt;br/&gt; &lt;img src=&#34;https://m.primal.net/HXWu.jpg&#34;&gt; 
    </content>
    <updated>2024-01-11T13:26:49Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsg0h0w5ctxr4v7jkem8l3ss093t60t9zpt07nfp2ahnwtyud04y3czyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56j2ukvn</id>
    
      <title type="html">Primal on iPhone is pretty decent at this point too</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsg0h0w5ctxr4v7jkem8l3ss093t60t9zpt07nfp2ahnwtyud04y3czyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56j2ukvn" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqszsheh4yt8lcdctmjrnqt0lckks8s6hw7f9t97k6xsuc7hkldda6cms2sj2&#39;&gt;nevent1q…2sj2&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;Primal on iPhone is pretty decent at this point too
    </content>
    <updated>2023-12-28T18:31:40Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsfyy6fj3cjattr6vdwffcueu88cnvx4kmr4lhusuc05fx77cxjr2qzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56zxsez7</id>
    
      <title type="html">Man I really, really hate working with python, feel like most my ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsfyy6fj3cjattr6vdwffcueu88cnvx4kmr4lhusuc05fx77cxjr2qzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56zxsez7" />
    <content type="html">
      Man I really, really hate working with python, feel like most my time is spent dealing with import issues or some other obscure build problem instead of the actual code I’m trying to write
    </content>
    <updated>2023-12-19T17:27:11Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsf3nw0tr5960p4zjq3ddlz6h0eqsrurayyvsulxsjl32ytfwlhkaszyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56l5ycpr</id>
    
      <title type="html">This is pretty cool, ngl, always wanted an easier way to see how ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsf3nw0tr5960p4zjq3ddlz6h0eqsrurayyvsulxsjl32ytfwlhkaszyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56l5ycpr" />
    <content type="html">
      This is pretty cool, ngl, always wanted an easier way to see how many people are actively RBF or CPFP transactions, &lt;span itemprop=&#34;mentions&#34; itemscope itemtype=&#34;https://schema.org/Person&#34;&gt;&lt;a itemprop=&#34;url&#34; href=&#34;/npub18d4r6wanxkyrdfjdrjqzj2ukua5cas669ew2g5w7lf4a8te7awzqey6lt3&#34; class=&#34;bg-lavender dark:prose:text-neutral-50 dark:text-neutral-50 dark:bg-garnet px-1&#34;&gt;&lt;span&gt;mempool&lt;/span&gt; (&lt;span class=&#34;italic&#34;&gt;npub18d4…6lt3&lt;/span&gt;)&lt;/a&gt;&lt;/span&gt; crushed it on this one:&lt;br/&gt;&lt;br/&gt; &lt;img src=&#34;https://m.primal.net/HUTU.jpg&#34;&gt; &lt;br/&gt; &lt;img src=&#34;https://m.primal.net/HUTY.jpg&#34;&gt; 
    </content>
    <updated>2023-12-19T02:02:02Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqspc9tcac9whhw9xtn9njrmf0fframeyxe2xklvfm679x7z97zvy2szyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56jjcu4g</id>
    
      <title type="html">Something that may go unnoticed, there are far more devs working ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqspc9tcac9whhw9xtn9njrmf0fframeyxe2xklvfm679x7z97zvy2szyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56jjcu4g" />
    <content type="html">
      Something that may go unnoticed, there are far more devs working on bitcoin/lightning/nostr than our community really knows about. The silent ones thinking through their next idea, not ready to share it just yet. Or don’t have a large reach. &lt;br/&gt;&lt;br/&gt;What gets me excited is knowing there are people out there working on the same protocols I am, but we don’t even know each other exist. There’s something wondering about human action in the aggregate, when it’s focused on such powerful tools for the common man.
    </content>
    <updated>2023-12-09T00:16:40Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsz6ls40v352nkvelqgmxa6k4qmuj38dwz2rer8dxzte7flkmaf3tqzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56gqpgvl</id>
    
      <title type="html">Alright, you guys can stop trading, trying to get some channels ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsz6ls40v352nkvelqgmxa6k4qmuj38dwz2rer8dxzte7flkmaf3tqzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56gqpgvl" />
    <content type="html">
      Alright, you guys can stop trading, trying to get some channels open
    </content>
    <updated>2023-12-02T17:39:00Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqs0p4nrg5cd0sazqp6x9cwd3ad85je9s2sujw5ngxmxvxevcmwr24gzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56rpgzqe</id>
    
      <title type="html">Sometimes the most frustrating thing is realizing a design choice ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqs0p4nrg5cd0sazqp6x9cwd3ad85je9s2sujw5ngxmxvxevcmwr24gzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56rpgzqe" />
    <content type="html">
      Sometimes the most frustrating thing is realizing a design choice made long around before you had better knowledge of your tools/problem space is a true bottleneck to improving a code base and you only have yourself to blame&lt;br/&gt;&lt;br/&gt;The devil in my ear just keeps saying “burn it all down and start over”
    </content>
    <updated>2023-12-01T00:11:53Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsw24xy5vc4h68wm9e3g4l3kjr7q23c4h9sfx79htue4z258vmd30gzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56dy5c8m</id>
    
      <title type="html">Something that fascinates me is how mechanical it can be to write ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsw24xy5vc4h68wm9e3g4l3kjr7q23c4h9sfx79htue4z258vmd30gzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56dy5c8m" />
    <content type="html">
      Something that fascinates me is how mechanical it can be to write good poetry/rap, you stick to a given rhyming pattern, use language in a new or  interesting and have something to say, it’ll work
    </content>
    <updated>2023-11-27T23:31:36Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqs8du9jc6zrf32lrukp7caupu6gv2x0zu3e8f0rfz3d9tgv75y0zfczyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs562wnjuv</id>
    
      <title type="html">@npub10yp…nn5t</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqs8du9jc6zrf32lrukp7caupu6gv2x0zu3e8f0rfz3d9tgv75y0zfczyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs562wnjuv" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqs096z0ky0anje79hfdvvfyydq3xlluxnjuc0drttmxptf4mfl0n5svwaa9g&#39;&gt;nevent1q…aa9g&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;&lt;span itemprop=&#34;mentions&#34; itemscope itemtype=&#34;https://schema.org/Person&#34;&gt;&lt;a itemprop=&#34;url&#34; href=&#34;/npub10yp63ndd68htfq52xv2wsmdlq7uqvy24z009efaql5jyw0jvh0ns2gnn5t&#34; class=&#34;bg-lavender dark:prose:text-neutral-50 dark:text-neutral-50 dark:bg-garnet px-1&#34;&gt;&lt;span&gt;Satograms&lt;/span&gt; (&lt;span class=&#34;italic&#34;&gt;npub10yp…nn5t&lt;/span&gt;)&lt;/a&gt;&lt;/span&gt;
    </content>
    <updated>2023-11-15T17:59:03Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqs096z0ky0anje79hfdvvfyydq3xlluxnjuc0drttmxptf4mfl0n5szyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56a0tgya</id>
    
      <title type="html">These are https://satogram.xyz/ happening over lightning via ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqs096z0ky0anje79hfdvvfyydq3xlluxnjuc0drttmxptf4mfl0n5szyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56a0tgya" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsgnhksrgx76dk5mv4rge3y8ug4kk4smug2ncuxupvpj5rqtud9hvslfresx&#39;&gt;nevent1q…resx&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;These are &lt;a href=&#34;https://satogram.xyz/&#34;&gt;https://satogram.xyz/&lt;/a&gt; happening over lightning via keysend and lnurl, not nostr
    </content>
    <updated>2023-11-15T17:52:58Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsdds4eqxe3y9v887unqdnrnxnfgr569jv2l3kr9hcksrut2vytmtczyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56h3xkh6</id>
    
      <title type="html">We do a little testing in prod</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsdds4eqxe3y9v887unqdnrnxnfgr569jv2l3kr9hcksrut2vytmtczyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56h3xkh6" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqszyl935xrn40zeqfhkqtytzn8msq8lvdnsf8cmx23nrcu98cjl9jsjx6sgk&#39;&gt;nevent1q…6sgk&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;We do a little testing in prod
    </content>
    <updated>2023-10-25T23:50:43Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsdd537mcm0qd0y07wfhf9qeeewvkm09n9g8cqeje8djwmcy78tmtszyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56qc8ps0</id>
    
      <title type="html">A great write up @npub15kl…4m73 did on a tool I’ve been ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsdd537mcm0qd0y07wfhf9qeeewvkm09n9g8cqeje8djwmcy78tmtszyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56qc8ps0" />
    <content type="html">
      A great write up &lt;span itemprop=&#34;mentions&#34; itemscope itemtype=&#34;https://schema.org/Person&#34;&gt;&lt;a itemprop=&#34;url&#34; href=&#34;/npub15klkdfx9sh3y096a5jf895rcvkmkzvly2fm9dgxq6huqhp9576jsav4m73&#34; class=&#34;bg-lavender dark:prose:text-neutral-50 dark:text-neutral-50 dark:bg-garnet px-1&#34;&gt;&lt;span&gt;Voltage&lt;/span&gt; (&lt;span class=&#34;italic&#34;&gt;npub15kl…4m73&lt;/span&gt;)&lt;/a&gt;&lt;/span&gt; did on a tool&lt;br/&gt;I’ve been building, always open to collaboration and PRs.&lt;br/&gt;Doppler a Domain Specific Language for Lightning: &lt;br/&gt;&lt;a href=&#34;https://voltage.cloud/blog/bitcoin-develo&#34;&gt;https://voltage.cloud/blog/bitcoin-develo&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;Repo: &lt;a href=&#34;https://github.com/tee8z/doppler&#34;&gt;https://github.com/tee8z/doppler&lt;/a&gt;
    </content>
    <updated>2023-10-11T20:00:12Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsfjszj0cd2c3e9xld7wsmchsgtuzu35p9xaes5rxdjy6pss8amp4czyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs562u7qd3</id>
    
      <title type="html">Nothing funnier than trying to get an AI to do a repetitive task ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsfjszj0cd2c3e9xld7wsmchsgtuzu35p9xaes5rxdjy6pss8amp4czyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs562u7qd3" />
    <content type="html">
      Nothing funnier than trying to get an AI to do a repetitive task and it shows you one iteration of it then says, “okay, all done, you should repeat this process for the rest” instead of actually doing the work. &lt;br/&gt;&lt;br/&gt;Reminds of the butter bot from Rick and Morty:&lt;br/&gt;bot - “What is my purpose” &lt;br/&gt;Ricky - “To pass the butter” &lt;br/&gt;bot - “Oh my god”
    </content>
    <updated>2023-10-07T01:27:12Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsd0tdx0kqh5wnpvftwuwtcjgdnsppyxruwevchren87qrmd4emf2czyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56awmyaj</id>
    
      <title type="html">Nothing like trying to use Zelle to pay for a rental unit deposit ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsd0tdx0kqh5wnpvftwuwtcjgdnsppyxruwevchren87qrmd4emf2czyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56awmyaj" />
    <content type="html">
      Nothing like trying to use Zelle to pay for a rental unit deposit to make you really frustrated, damn limits. It’s supposed to be my money, I should be allowed to move however much I want whenever I want. Paying in bitcoin/lightning can’t come soon enough.
    </content>
    <updated>2023-09-30T15:17:17Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsvwal4algwl02qxpugajc4utmtwr6e8xsyzkk2sut043grxhclrkczyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56l4rkhs</id>
    
      <title type="html">Zelle spending limits always show up at the worst time, it’s my ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsvwal4algwl02qxpugajc4utmtwr6e8xsyzkk2sut043grxhclrkczyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56l4rkhs" />
    <content type="html">
      Zelle spending limits always show up at the worst time, it’s my money let me move it. Can’t wait until it’s easy to pay rent with it lightning.
    </content>
    <updated>2023-09-30T04:13:42Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsx02z3sk2r2a4sa82d79fxcxv3dgrv4y363fdcrayn80336y8navszyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56rhfzz0</id>
    
      <title type="html">@npub1ew4…6qlf wen can I pay you to get my pubkey higher up in ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsx02z3sk2r2a4sa82d79fxcxv3dgrv4y363fdcrayn80336y8navszyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56rhfzz0" />
    <content type="html">
      &lt;span itemprop=&#34;mentions&#34; itemscope itemtype=&#34;https://schema.org/Person&#34;&gt;&lt;a itemprop=&#34;url&#34; href=&#34;/npub1ew4nntskh08fzkwjusrc9u5627g639c5z6udc4q3a3plr9ns4naqxp6qlf&#34; class=&#34;bg-lavender dark:prose:text-neutral-50 dark:text-neutral-50 dark:bg-garnet px-1&#34;&gt;&lt;span&gt;bitcoincoderbob&lt;/span&gt; (&lt;span class=&#34;italic&#34;&gt;npub1ew4…6qlf&lt;/span&gt;)&lt;/a&gt;&lt;/span&gt; wen can I pay you to get my pubkey higher up in the satogram order??
    </content>
    <updated>2023-09-13T19:39:58Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqs8ljt9erku949gv20acfc54huese9swmx8p9e9jwjp0009em9hw5gzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56ughhd9</id>
    
      <title type="html">@npub1ew4…6qlf wen can I pay you to get my pubkey higher up in ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqs8ljt9erku949gv20acfc54huese9swmx8p9e9jwjp0009em9hw5gzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56ughhd9" />
    <content type="html">
      &lt;span itemprop=&#34;mentions&#34; itemscope itemtype=&#34;https://schema.org/Person&#34;&gt;&lt;a itemprop=&#34;url&#34; href=&#34;/npub1ew4nntskh08fzkwjusrc9u5627g639c5z6udc4q3a3plr9ns4naqxp6qlf&#34; class=&#34;bg-lavender dark:prose:text-neutral-50 dark:text-neutral-50 dark:bg-garnet px-1&#34;&gt;&lt;span&gt;bitcoincoderbob&lt;/span&gt; (&lt;span class=&#34;italic&#34;&gt;npub1ew4…6qlf&lt;/span&gt;)&lt;/a&gt;&lt;/span&gt; wen can I pay you to get my pubkey higher up in the satogram order??
    </content>
    <updated>2023-09-13T19:34:40Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqs9t7lpdvrurrwa898rzjpvsdtsruzqh47wsw4rpsd8ahnz8e8jtpszyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs5625jq3k</id>
    
      <title type="html">https://github.com/BitcoinCoderBob/Satogram Lightning spam is ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqs9t7lpdvrurrwa898rzjpvsdtsruzqh47wsw4rpsd8ahnz8e8jtpszyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs5625jq3k" />
    <content type="html">
      &lt;a href=&#34;https://github.com/BitcoinCoderBob/Satogram&#34;&gt;https://github.com/BitcoinCoderBob/Satogram&lt;/a&gt; Lightning spam is good for the network, change my mind
    </content>
    <updated>2023-08-21T16:19:51Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsdjrexdllh3rhx9dzs32xjnz73u762m69em3kxux398czst9fsecczyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56p920em</id>
    
      <title type="html">(This is just for generating a timeseries data set to test a ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsdjrexdllh3rhx9dzs32xjnz73u762m69em3kxux398czst9fsecczyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56p920em" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqs9nu86t7u4hgxjhrq5hqn2j32s2hjzw6znscxqkxax7v2yy7ljcpgkgmdk7&#39;&gt;nevent1q…mdk7&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;(This is just for generating a timeseries data set to test a system in case anyone is curious, nothing serious)
    </content>
    <updated>2023-07-20T16:00:16Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqs9nu86t7u4hgxjhrq5hqn2j32s2hjzw6znscxqkxax7v2yy7ljcpgzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56xp80kh</id>
    
      <title type="html">So much of the world runs on people NOT flipping a switch I bet ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqs9nu86t7u4hgxjhrq5hqn2j32s2hjzw6znscxqkxax7v2yy7ljcpgzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56xp80kh" />
    <content type="html">
      So much of the world runs on people NOT flipping a switch I bet  &lt;img src=&#34;https://cdn.nostr.build/i/f8620db9d3a0dbfeeb2b7d858a40ddfab4cc1d04131232aa506ea9716d9fe6f2.jpg&#34;&gt;  
    </content>
    <updated>2023-07-20T15:58:32Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsq79humn4s8q94s4d2p7ztxcdxx0p3h9p0kvpa5myqka7m0cx509szyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56xzce92</id>
    
      <title type="html">We got a solid answer on stacker news by null count! (Thank you ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsq79humn4s8q94s4d2p7ztxcdxx0p3h9p0kvpa5myqka7m0cx509szyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56xzce92" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsdet4jwuqelv4jdjk0rlwlsugc9dm4ykc7me7xlg4jagvz9sjl60sqhra0q&#39;&gt;nevent1q…ra0q&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;We got a solid answer on stacker news by null count! &lt;br/&gt;(Thank you bounties)&lt;br/&gt;&lt;br/&gt;&lt;a href=&#34;https://stacker.news/items/210963/r/036c1b60f7&#34;&gt;https://stacker.news/items/210963/r/036c1b60f7&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;And nitfy nei wrote a great article that goes more in-depth about the subject:&lt;br/&gt;&lt;br/&gt;&lt;a href=&#34;https://chainfail.substack.com/p/lightning-mev&#34;&gt;https://chainfail.substack.com/p/lightning-mev&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;I feel enlightened
    </content>
    <updated>2023-07-19T00:55:13Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsdet4jwuqelv4jdjk0rlwlsugc9dm4ykc7me7xlg4jagvz9sjl60szyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs568fa30y</id>
    
      <title type="html">Does anyone know why it’s “bad” for a bitcoin miner to also ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsdet4jwuqelv4jdjk0rlwlsugc9dm4ykc7me7xlg4jagvz9sjl60szyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs568fa30y" />
    <content type="html">
      Does anyone know why it’s “bad” for a bitcoin miner to also be a lightning routing node? ie. Are there possible exploits a miner is able to do to its peers/channel partners that are not possible for regular routing nodes? I feel like I’ve heard “don’t just a miner that’s also a routing node” but don’t quite remember why, will sling some sats around to whoever has a solid answer
    </content>
    <updated>2023-07-18T18:25:11Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsxccgzzglfjdyntna4emna9mhrndjvcgenm2d2llkd3v6tazl6v4szyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56q2e0yu</id>
    
      <title>Nostr event nevent1qqsxccgzzglfjdyntna4emna9mhrndjvcgenm2d2llkd3v6tazl6v4szyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56q2e0yu</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsxccgzzglfjdyntna4emna9mhrndjvcgenm2d2llkd3v6tazl6v4szyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56q2e0yu" />
    <content type="html">
      Magic  &lt;img src=&#34;https://cdn.nostr.build/i/3b5edf52905b422b8e3a93e7a9c052bd13fb9e09a3bf8aa22bf5bf6d358ba494.png&#34;&gt;  
    </content>
    <updated>2023-07-17T15:08:07Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsvmg2mtscy93x5c8e7pdncdsup7clcqsvc5p84lu803m6ca4etk3szyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56c5tuee</id>
    
      <title type="html">“You guys are missing the fish from the forest” ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsvmg2mtscy93x5c8e7pdncdsup7clcqsvc5p84lu803m6ca4etk3szyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56c5tuee" />
    <content type="html">
      “You guys are missing the fish from the forest” &lt;span itemprop=&#34;mentions&#34; itemscope itemtype=&#34;https://schema.org/Person&#34;&gt;&lt;a itemprop=&#34;url&#34; href=&#34;/npub1hmc6d9tk2659jln7fnjrqy9030vjjpzqxgh76sn2jj22xdgwpelsuglprc&#34; class=&#34;bg-lavender dark:prose:text-neutral-50 dark:text-neutral-50 dark:bg-garnet px-1&#34;&gt;&lt;span&gt;bitcoincoderbob&lt;/span&gt; (&lt;span class=&#34;italic&#34;&gt;npub1hmc…lprc&lt;/span&gt;)&lt;/a&gt;&lt;/span&gt;
    </content>
    <updated>2023-07-15T06:01:34Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsd843jwjg3xakwvnkyv688lnk3yjr0nw6etysxrzfaypjzlg5a4dszyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56tky9ur</id>
    
      <title type="html">Hell of an opener: ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsd843jwjg3xakwvnkyv688lnk3yjr0nw6etysxrzfaypjzlg5a4dszyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56tky9ur" />
    <content type="html">
      Hell of an opener:  &lt;img src=&#34;http://nostr.build/i/6af118cbd02207a1bc71299454f177a557cace07ef85cfd410be15fd57e338d7.jpg&#34;&gt;  
    </content>
    <updated>2023-07-09T22:53:48Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqswlgyercfljq04qestd98rvguq8w2552mafyv70d6utqx2rrhdzuszyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56622ykf</id>
    
      <title>Nostr event nevent1qqswlgyercfljq04qestd98rvguq8w2552mafyv70d6utqx2rrhdzuszyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56622ykf</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqswlgyercfljq04qestd98rvguq8w2552mafyv70d6utqx2rrhdzuszyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56622ykf" />
    <content type="html">
      Ahh memory leaks, the gift that keeps on giving
    </content>
    <updated>2023-06-21T00:45:00Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqs2sz9ygcu0gfst5rxl4u49ah3ghesx6q369l7wzcmw7cylxvf5jegzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56pkywck</id>
    
      <title type="html">Hopefully my time-series headaches working on this keep from ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqs2sz9ygcu0gfst5rxl4u49ah3ghesx6q369l7wzcmw7cylxvf5jegzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56pkywck" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqstt866nw5yaj9afww45qq4nu2thd5seasq8efyha8zrq9lsmmdsdsd9pccl&#39;&gt;nevent1q…pccl&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;Hopefully my time-series headaches working on this keep from others having them
    </content>
    <updated>2023-06-20T15:26:36Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsfpar4a5c8yuwnu7mgukyv82gesjz8hpxkep0cp5f6wx4dz24hkggzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56u206yx</id>
    
      <title type="html">Time is a human construct, never does that hit me more than ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsfpar4a5c8yuwnu7mgukyv82gesjz8hpxkep0cp5f6wx4dz24hkggzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56u206yx" />
    <content type="html">
      Time is a human construct, never does that hit me more than dealing with timeseries data, absolute headache every time
    </content>
    <updated>2023-05-26T20:12:16Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsvln6k3w74rwmrhzjkcq2jtj49v2gq40zqucwct7y7s90g3ytwf2qzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56mkkhcq</id>
    
      <title type="html">We’re getting there, lots of devs don’t realize how much ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsvln6k3w74rwmrhzjkcq2jtj49v2gq40zqucwct7y7s90g3ytwf2qzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56mkkhcq" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsty4erfsmylp933v64v4xgmey7ls2nxzcay0v039l4vleswmjgpfg88cyu5&#39;&gt;nevent1q…cyu5&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;We’re getting there, lots of devs don’t realize how much easier it is to build with bitcoin and related protocols (lightning/fedimint) today than it has been in the past. The tools/education needed to do so will also only improve, we’re the tortoise in this marathon while Eth seems to have been the hare.
    </content>
    <updated>2023-04-15T17:53:16Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsqhz406rtlua9km29ugn64wlumdeg339f9rt2j02ud7rn6r5c0enqzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56emnnpe</id>
    
      <title type="html">Is a taco a sandwich?</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsqhz406rtlua9km29ugn64wlumdeg339f9rt2j02ud7rn6r5c0enqzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56emnnpe" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsvsdn9rw5c4la0mm60gyxdk9l0waq9hmqpg2wjfsg0ykkf9xlsn7gp9fxz2&#39;&gt;nevent1q…fxz2&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;Is a taco a sandwich?
    </content>
    <updated>2023-04-13T23:06:21Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsqh7cnn443dfgpppwzl4w3vp52txd8mmcv5s6p5qpkrz6xul3zwxqzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56wq48cp</id>
    
      <title type="html">Man, I can’t seem to get this verification to work with ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsqh7cnn443dfgpppwzl4w3vp52txd8mmcv5s6p5qpkrz6xul3zwxqzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56wq48cp" />
    <content type="html">
      Man, I can’t seem to get this verification to work with nostrnest damn haha
    </content>
    <updated>2023-04-13T19:11:14Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsqen7a2vfcxfr6p3cd5xhh43vt27zxywauatnat8n4fpenmssyrqczyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56lmy6xq</id>
    
      <title type="html">Verifying my Nostr Nests identity: ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsqen7a2vfcxfr6p3cd5xhh43vt27zxywauatnat8n4fpenmssyrqczyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56lmy6xq" />
    <content type="html">
      Verifying my Nostr Nests identity: s0XionG_c16CGQs4OZo3-lGfzt82whk4-rXq6VYraWI&lt;br/&gt;&lt;a href=&#34;https://nostrnests.com&#34;&gt;https://nostrnests.com&lt;/a&gt;
    </content>
    <updated>2023-04-13T19:09:59Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsynxa5eghhyqn2l7326yq6vlg244vsn8k4p7k9ynlyt0ct2ewl7aczyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56uqhljd</id>
    
      <title type="html">Verifying my Nostr Nests identity: ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsynxa5eghhyqn2l7326yq6vlg244vsn8k4p7k9ynlyt0ct2ewl7aczyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56uqhljd" />
    <content type="html">
      Verifying my Nostr Nests identity: tVn6C9a3sM9K_RKq8V2zyKSi3O0W1821mxRvHIJnf9E&lt;br/&gt;&lt;a href=&#34;https://nostrnests.com&#34;&gt;https://nostrnests.com&lt;/a&gt;
    </content>
    <updated>2023-04-13T19:05:26Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsxj3cvzqnkwv6z5prgm3qk0r4lzvkkalqy7neq8nqppxk8sc3g0tqzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56ynxnwq</id>
    
      <title type="html">There is a better way now, just use voltage (comes out Thursday ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsxj3cvzqnkwv6z5prgm3qk0r4lzvkkalqy7neq8nqppxk8sc3g0tqzyz9wwkhz6ad8mg0dz9tjqkwt4cn8fm4u07evh6nqhq7e3uwpvgs56ynxnwq" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsfpe0n35f8u2gw5v5mm9kprr5etlwq34u2a28pegd44yjlslrr3ucrrpzla&#39;&gt;nevent1q…pzla&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;There is a better way now, just use voltage (comes out Thursday to everyone)
    </content>
    <updated>2023-04-11T16:42:42Z</updated>
  </entry>

</feed>