Alex Gleason
Alex Gleason
Revocable keypair in clipboard is fine in 99.99% of cases. Fine, one-time secret in clipboard is fine in 99.9999% of cases. I do not see the increased software complexity as...
I think displaying the license on desktop and hiding it with a media query could work. This is what GitHub does on repos.
This is #523 It's a presence filter specifically.
I think this would solve many problems and we should have it. But there are challenges in relays actually implementing it: https://github.com/nostr-protocol/nips/issues/523#issuecomment-1650244105 We would have to define which specific tags...
You would have to basically double the amount of space used by tag indexes. Maybe more since you can't use a partial index if you want both presence and absence...
It seems like the solution to everything not in NIP-01 is DVMs.
I regret posting that.
I don't think filters are getting any more changes at this point. I need more than just presence/absence tags, anyway. I need joins.
Instead of adding new filter properties, we can include an extension to NIP-50's `search` property, like: ```json { "search": "has:#e" } ``` This fixes everything IMO.
It's already part of NIP-50 https://github.com/nostr-protocol/nips/blob/master/50.md#extensions To search for a note with "has:#e" in the text, you'd do this: ```json { "search": "\"has:#e\"" } ``` The functionality in question (filter...