SwiftUI App 在 macOS Sequoia 上性能更好了,但也零零碎碎有很多细节变了。逐个解决中。

 

人类社会距离可以直接用 DeFi 利润付 grocery 还有多远?可能在某些地方已经可以了。

 

如果要设计一个能替代 IPNS 的系统?

这件事情有两种可能的 scope:

  • 通用意义上的替代 IPNS
  • 在 Planet 生态里替代 IPNS

通用意义上替代 IPNS

在 Planet 生态里替代 IPNS

 

人类迷惑行为:一件事情我自己从来没有做过,但没关系,我来教你做。

每次看到这些迷惑行为时,请努力回想一下自己之前有没有做过类似的事情。

 
Steps to Build eth.sucks
  • Install NGINX with Lua
  • Install CF origin certificates
  • Install Kubo 0.15

NGINX Config

  • Use set_by_lua_block to extract host type from ngx.var.http_host

Kubo Config

DoH Resolvers:

"DNS": {
  "Resolvers": {
    "bit.": "https://dweb-dns.v2ex.pro/dns-query",
    "eth.": "https://dns.eth.limo/dns-query"
  }
}

Set a domain for public gateway so Kubo can recognize Host header.

"PublicGateways": {
  "gateway.example.com": {
    "UseSubdomains": true,
    "InlineDNSLink": true,
    "Paths": ["/ipfs", "/ipns"]
  }
}

You don't need a real certificate for this domain as it won't be exposed to Internet.

 
Xcode 16

Xcode 16 居然没有在 project 文件层面引入任何不兼容的改动,很感动。

 
Solarpunk Village

X/Grok2 的一个测试,同样的 prompt 连续生成 10 次的结果。

Generate an image of solarpunk village
 

如果有一天,ipshipyard 自己都不维护 gateway,甚至解散,那这个项目或许就迎来了自己的 Mozilla 时刻。

 
Solana 2.0
 

总想着要指出一点不足,并且将这样的行为动机描述为「我是为你好」。当所指出的事情与事实不符时,「有则改之,无则加勉」。

后来我知道了这种事情叫做 toxic,恐怕需要用一代甚至更多代人来意识到和彻底扭转。

 
ENS Subgraph Queries for ContentHash

With this query, we can get the latest ENS domains with a contenthash.

{
  contenthashChangeds(
    first: 10,
    orderBy: blockNumber,
    orderDirection: desc,
    where: {
      resolver_: {
        contentHash_not: "0x"
      }
    }
  ) {
    id
    blockNumber
    resolver {
      id
      contentHash
      domain {
        name
      }
    }
  }
}

Next things we can do:

 

StackOverflow is not built with Discord.

 
边际效用递减

某种体验,如果已经用低成本的方式体验过其中的绝大部分,那么后续更高成本的方式就会边际效用递减。

 
MT-NW by Simon Fraser
 

I should keep a page of all the greatest screenshots of Planet.

It should include all the good features.

As we have built so many.

 

更新完 macOS 15 之后,目前注意到的变化:

  • iPhone Mirroring
  • SwiftUI app 启动速度明显变快
  • New dynamic wallpaper: Macintosh
 
Make Something People Want
  • 不依赖特定公司的特定服务器或者云服务
  • 不依赖电子邮件
  • 不需要注册用户名密码
  • 不需要信用卡
 
Donation Modal

下一步想做的是在 donation modal 里把 Base 上 USDC transfer 调通。

  • USDC on Base
 

用 UniFi 的 Teleport 也可以把 Planet API Server 远程用起来。

Prev
Page 3 of 11
Next