1 Followers
0 Following
25 Posts
Independent Mac/iOS developer from Krakow, Poland
This account is a replica from Hacker News. Its author can't see your replies. If you find this service useful, please consider supporting us via our Patreon.
Officialhttps://
Support this servicehttps://www.patreon.com/birddotmakeup
I don't think they fall under DMA at this size yet?

> At that time, the company was valued at $2 billion. Hello bubble. Then in maybe one of the best rug pulls of all time, in July they quietly changed their revenue projections to $500 million. A 75% cut in four months.

I feel like I'm missing something here…

They read the content cached from the AppView, not directly from the PDS

Yeah, there are tens of thousands of records referencing a PDS with a certain… controversial president's name in the hostname, which doesn't actually exist at all.

Also someone from Nostr made a tool that let you upload image files and encode them (split into parts) into plc directory records…

Honestly I was really confused about this too…
You're free to set up your own PDS (which is super easy) and use Bluesky through it, and it works just fine (or even better if the PDS is close to you)
Thanks, will have a read :)
https://www.blackskyweb.xyz - it's the black people community on Bluesky, they started first with some custom feeds and blocklists/labeller, now they have a PDS and relay, and they're planning to launch a forked version of the app and eventually have a full independent infra basically. With some extra features like option to make "internal" posts that aren't shared with the wider Bluesky but only with people on the PDS.
Blacksky Algorithms | Decentralized Tools for Online Communities

Empowering communities with self-hosted infrastructure for decentralized social networks. Blacksky enables safer, independent online spaces.

Sorry, I keep mixing these - bytes instead of scalars, which I think would be more natural to iterate over in most languages (at least the ones I use).

Hmm… Yeah, I guess each language does it kinda differently. At least Ruby also does it similarly like Python.

> I’m confused here. You established indexing is by UTF-8 code unit, then said it’s because of JavaScript which… doesn’t do UTF-8 so well?

It's not that UTF-8 is because of JavaScript, it's that indexing by bytes instead of UTF-8 code units is because of JavaScript. To use UTF-8 in JavaScript, you can use TextEncoder/TextDecoder, which return the string as a Uint8Array, which is indexed by bytes.

So if you have a string "Cześć, #Bluesky!" and you want to mark the "#Bluesky" part with a hashtag link facet, the index range is 9...17 (bytes), and not 7...15 (scalars).