Alex Gleason

Results 427 comments of Alex Gleason

I ended up working around my issues by just not using TSX. I renamed the file to `.ts`, added `import { jsx } from 'react/jsx-runtime';` at the top, then used...

I think this is a dupe of https://github.com/jsr-io/jsr-npm/issues/76 I created an [xjsr](https://www.npmjs.com/package/xjsr) package as a workaround you can run like this: ```bash ➜ npx xjsr @alexgleason/hello hello ``` I needed...

The `since` filter is a problem because, to avoid querying the past events strfry stores, I wanted to do this in my client: ![image](https://github.com/nostrband/noauth/assets/3639540/dcba357a-acf5-402a-9818-859fbbbc0571) But to work around strfry's issue,...

I am going to just start blocking all events that include uppercase "t" tags on my relays. I am already blocking any events with "invisible" hashtags, eg they include a...

@alltheseas The case in the text can be any, but there's also a `t` tag inserted into the tags that you can query by in filters. And that has to...

> Is this a different issue from [nostr-protocol/nips@d0962aa](https://github.com/nostr-protocol/nips/commit/d0962aac09ed1747c19bb96ce4accdaaab707c8d)? Same issue. That fixes it not being in the NIPs. Still don't know which clients are doing it though.

> FYI Nostur right now adds the tag the way the author wrote it and then also always includes a lowercased version. This actually makes sense, so I might be...

Clients don't have to notify about quotes. You p tag if you want the recipient to be notified, and you don't if you don't.

I think if devs don't have an opinion, they should add the "p" tag because it's what most users expect. However I've encountered some Japanese devs on the Fediverse that...

I reproduced this problem, but I found it only happens if the grouped routes contain a path. So the problem doesn't occur in this code: ```ts const routerA = new...