TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

This website is hosted on Bluesky

713 pointsby hasheddan6 months ago

26 comments

pfraze6 months ago
Appreciated Daniel reaching out to the team about this! Hosting blobs is one of those things that will inevitably go through iterations as we understand the abuse vectors more and more, but for now it's really fun to see this kind of usage in action. The PDS is meant to be a database host in the same sense that a webserver is a website host.
评论 #42231959 未加载
评论 #42233337 未加载
评论 #42232062 未加载
评论 #42236211 未加载
评论 #42233596 未加载
simonw6 months ago
I was curious as to the security context this runs in:<p><pre><code> curl -i &#x27;https:&#x2F;&#x2F;porcini.us-east.host.bsky.network&#x2F;xrpc&#x2F;com.atproto.sync.getBlob?did=did:plc:j22nebhg6aek3kt2mex5ng7e&amp;cid=bafkreic5fmelmhqoqxfjz2siw5ey43ixwlzg5gvv2pkkz7o25ikepv4zeq&#x27; </code></pre> Here are the headers I got back:<p><pre><code> x-powered-by: Express access-control-allow-origin: * cache-control: private vary: Authorization, Accept-Encoding ratelimit-limit: 3000 ratelimit-remaining: 2998 ratelimit-reset: 1732482126 ratelimit-policy: 3000;w=300 content-length: 268 x-content-type-options: nosniff content-security-policy: default-src &#x27;none&#x27;; sandbox content-type: text&#x2F;html; charset=utf-8 date: Sun, 24 Nov 2024 20:57:24 GMT strict-transport-security: max-age=63072000 </code></pre> Presumably that ratelimit is against your IP?<p>&quot;access-control-allow-origin: *&quot; is interesting - it means you can access content hosted in this way using fetch() from JavaScript on any web page on any other domain.<p>&quot;content-security-policy: default-src &#x27;none&#x27;; sandbox&quot; is very restrictive (which is good) - content hosted here won&#x27;t be able to load additional scripts or images, and the sandbox tag means it can&#x27;t run JavaScript either: <a href="https:&#x2F;&#x2F;developer.mozilla.org&#x2F;en-US&#x2F;docs&#x2F;Web&#x2F;HTTP&#x2F;Headers&#x2F;Content-Security-Policy&#x2F;sandbox" rel="nofollow">https:&#x2F;&#x2F;developer.mozilla.org&#x2F;en-US&#x2F;docs&#x2F;Web&#x2F;HTTP&#x2F;Headers&#x2F;Co...</a>
评论 #42231063 未加载
评论 #42231037 未加载
SAHChandler6 months ago
I&#x27;m very hopeful for the possibility of using bluesky for blob data.<p>A friend and I had considered looking into storing DOOM WADs on bluesky so that &quot;map packs&quot; could be shared in the same way posts are. Follow an account, a list, or a starter pack, and you could theoretically modify GZDoom or some other client to know how to search and view any WADs posted by those accounts. Like how the Steam Workshop works, except it&#x27;s via bluesky. :D
评论 #42236084 未加载
评论 #42235093 未加载
the-chitmonger6 months ago
I wasn&#x27;t around for this specific era, but the way users of BlueSky are able to dive deep into technological waters reminds me of how people talk about learning HTML for the first time while using MySpace. Social media is a more saturated market now than before, but I wonder if we&#x27;ll see a new generation of programmers sprout from BlueSky.
评论 #42237031 未加载
评论 #42239530 未加载
评论 #42236041 未加载
willscott6 months ago
One of the points that is made is that since the PDS that&#x27;s being interacted with here is part of a &#x27;Personal Data Server&#x27; rather than the Bluesky product, it ends up able to offer infinite free data storage.<p>This seems like one of the things that might be part of the references the bluesky team has made at time to introducing a subscription service - providing more space &#x2F; bandwidth &#x2F; higher quality video on your PDS seems like the type of hosting that could be offered at a premium tier.
评论 #42237586 未加载
rsynnott6 months ago
There should really be a name for this phenomenon; put basically anything on the internet, and sooner or later people will try to host arbitrary files on it.
评论 #42238877 未加载
评论 #42234932 未加载
评论 #42235024 未加载
评论 #42239041 未加载
edavis6 months ago
If this sort of thing interests you, check out atfile: <a href="https:&#x2F;&#x2F;github.com&#x2F;electricduck&#x2F;atfile">https:&#x2F;&#x2F;github.com&#x2F;electricduck&#x2F;atfile</a>
bbor6 months ago
Pretty awesome! Convenience link to the fascinating github issue linked at the bottom, featuring Bluesky celebrity pfrazee: <a href="https:&#x2F;&#x2F;github.com&#x2F;bluesky-social&#x2F;atproto&#x2F;issues&#x2F;523">https:&#x2F;&#x2F;github.com&#x2F;bluesky-social&#x2F;atproto&#x2F;issues&#x2F;523</a><p>I have a lot of hope for AT. I&#x27;m sure there&#x27;s lots of smart people on HN that have done great things with the Fediverse, but this whole paradigm just seems more sustainable + realistic. Basically it gives us centralization by default, but with <i>real</i> decentralized support when you need it &#x2F; for power users.
评论 #42230724 未加载
h4x0rr6 months ago
Anyone else feels like this will be abused for phishing and&#x2F;or malware distribution?
评论 #42231125 未加载
评论 #42234944 未加载
评论 #42233325 未加载
评论 #42231113 未加载
评论 #42233313 未加载
评论 #42231731 未加载
hiop6 months ago
The recent API changes in Strava reminded me of how limited our access is to the data stored on their platform. As a dominant player in the fitness space, they could gradually lock features behind a subscription wall.<p>While this might raise privacy or safety concerns, could the AT Protocol be a suitable platform for storing GPX or FIT files?
评论 #42238369 未加载
hi_hi6 months ago
Could some awesome person possibly summarise any limitations or use cases where this might not work well?<p>The example provided is quite basic static text, so I&#x27;m wondering if there&#x27;s a reason for that?
Retr0id6 months ago
The CSP headers didn&#x27;t used to be there, which I used to pop an alert(), way back. (at the time there was also a MIME whitelist, but that whitelist included image&#x2F;svg+xml, which allows script execution)
slowhadoken6 months ago
Whenever I hear about Bluesky I think about Jack Dorsey quitting their board and asked people to stay on Twittet&#x2F;X.<p><a href="https:&#x2F;&#x2F;amp.theguardian.com&#x2F;technology&#x2F;article&#x2F;2024&#x2F;may&#x2F;07&#x2F;jack-dorsey-quits-bluesky-board-urges-users-stay-elon-musk-x-twitter" rel="nofollow">https:&#x2F;&#x2F;amp.theguardian.com&#x2F;technology&#x2F;article&#x2F;2024&#x2F;may&#x2F;07&#x2F;j...</a>
评论 #42232135 未加载
评论 #42234933 未加载
steveklabnik6 months ago
Ah this is super cool! I’ve been thinking about doing this with my website, but was going to leverage the whtwind lexicon, since my site is mostly a blog. But for the front page, and anything else, I may have wanted something else.<p>This is more of an unstructured approach, which is cool because it needs less specialized tooling. It has the disadvantage of being… well, just a blob. No semantic information there.
la647106 months ago
I think the AT protocol is versatile in that users can acces each others data once authenticated without any centralized service (granted the aggregators and some other things may still be centralized).
评论 #42230956 未加载
评论 #42234584 未加载
hk13376 months ago
<a href="https:&#x2F;&#x2F;atproto.com&#x2F;guides&#x2F;glossary" rel="nofollow">https:&#x2F;&#x2F;atproto.com&#x2F;guides&#x2F;glossary</a><p>How exactly is the personal data server used? Examples and such?<p>The link gives a nice high level explanation but I still am not sure of its purpose.
skybrian6 months ago
I&#x27;m wondering whether a third-party PDS implementation should support other protocols as well. Would a combined git&#x2F;PDS repo make any sense at all? (That is, it&#x27;s a PDS, but it also implements enough of git to do read-only access via git commands.)<p>What other protocols would make sense?
srg06 months ago
My first reaction was like -- wow, a site that runs on a reverb pedal.
评论 #42237365 未加载
anacrolix6 months ago
<a href="https:&#x2F;&#x2F;github.com&#x2F;anacrolix&#x2F;btlink">https:&#x2F;&#x2F;github.com&#x2F;anacrolix&#x2F;btlink</a>
评论 #42231414 未加载
neuroelectron6 months ago
What&#x27;s the license for the Bluesky data btw? Is it something free to mirror and train LLMs on?
评论 #42232166 未加载
评论 #42232058 未加载
genem96 months ago
“Hosting websites” has been possible on nostr for some time already with npub.pro …
alpb6 months ago
Right now it&#x27;s the only page under site:bsky.network if you search for that. Hilarious and awesome! <a href="https:&#x2F;&#x2F;www.google.com&#x2F;search?q=site%3Absky.network" rel="nofollow">https:&#x2F;&#x2F;www.google.com&#x2F;search?q=site%3Absky.network</a> Daniel is a great hacker.
rpastuszak6 months ago
Just a (very unserious) reminder that you can host +7kb of data in a single tweet using data URIs + gzip.<p>Here&#x27;s Pong (HTML + JS) and the Epic of Gilgamesh: <a href="https:&#x2F;&#x2F;x.com&#x2F;rafalpast&#x2F;status&#x2F;1316836397903474688" rel="nofollow">https:&#x2F;&#x2F;x.com&#x2F;rafalpast&#x2F;status&#x2F;1316836397903474688</a><p>(brought to you by the ad tracking pixel parameters ignoring the tweet length limit)<p>More links + the &quot;Twitter CDN&quot; editor™: <a href="https:&#x2F;&#x2F;sonnet.io&#x2F;projects#:~:text=Laconic!%20(a%20Twitter%20CDN)" rel="nofollow">https:&#x2F;&#x2F;sonnet.io&#x2F;projects#:~:text=Laconic!%20(a%20Twitter%2...</a>
tr1ll10nb1ll6 months ago
unrelated probably, but it made me realize how I don&#x27;t really see Hugo&#x2F;Jekyll type websites anymore.
评论 #42230549 未加载
评论 #42230905 未加载
评论 #42230654 未加载
评论 #42230731 未加载
评论 #42239886 未加载
leoc6 months ago
<a href="https:&#x2F;&#x2F;bsky.app&#x2F;profile&#x2F;leocomerford.bsky.social&#x2F;post&#x2F;3l7v6x2w56v26" rel="nofollow">https:&#x2F;&#x2F;bsky.app&#x2F;profile&#x2F;leocomerford.bsky.social&#x2F;post&#x2F;3l7v6...</a> To help the hard of clicking, this time I have pasted it all for you:<p>Leo R. Comerford ‪@leocomerford.bsky.social‬<p>Why was it decided not to build on any existing content-addressable networking system (IPFS or whatever)?<p>November 1, 2024 at 12:39 PM<p>‪Leo R. Comerford‬ ‪@leocomerford.bsky.social‬ · 23d<p>(Not implying that this was the wrong decision, it’s a genuine question.)<p>‪dan‬ ‪@danabra.mov‬ · 23d<p>actually not sure i can answer this well. paging @bnewbold.net or maybe @why.bsky.team (who worked on IPFS btw)<p>‪dan‬ ‪@danabra.mov‬ · 23d<p>my guess is that we’d want data hosting to be under direct control of the user (same as web hosting) rather than peer-to-peer, want instant deletion&#x2F;edits at the source, need ability to move to a different host or take content down, need grouping into collections. not sure how much IPFS could adapt<p>‪dan‬ ‪@danabra.mov‬ · 23d<p>we do use some pieces from IPFS through (aside from the actual peer to peer mechanism) ‪bryan newbold‬ ‪@bnewbold.net‬ · 4mo<p>you can basically ignore it, we don&#x27;t use &quot;IPFS&quot; proper anywhere.<p>there are strong social connections, and we borrow some tech components like CIDs (flexible hash&#x2F;digest syntax) and DAG-CBOR (more-deterministic subset of CBOR, good for signing+hashing) ‪<p>Bumblefudge‬ ‪@bumblefudge.com‬ · 1d<p>yeah this is all accurate. bluesky remixed a lot of IPFS components and patterns in interesting ways, but the monolithic global IPFS network (with chatty DHT distribution) wouldn&#x27;t make sense here, BS made an infinitely more efficient&#x2F;performant distribution of bytes tailored to its use case. ‪<p>Bumblefudge‬ ‪@bumblefudge.com‬ · 1d<p>FWIW the IPFS foundation is working on making IPFS more modular and easily remixed for future BlueSkies, but it&#x27;s a big task decomposing the monolith and reorienting the documentation and ergonomics...<p>[a second reply to the first skeet:]<p>‪Uai‬ ‪@why.bsky.team‬ · 23d<p>As far as im concerned (and i led ipfs development for a number of years) we <i>are</i> using ipfs, just a specific streamlined implementation of it. All your repo data can be imported into an ipfs node and addressed via cid ‪<p>Uai‬ ‪@why.bsky.team‬ · 23d<p>We dont use libp2p because for a consumer mobile app we didnt want to futz with nat traversal and connectivity and the like, but its definitely possible to build a p2p version of bluesky
评论 #42231615 未加载
layer86 months ago
Someone implementing a file hosting service on top of Bluesky would explain a steep growth in user accounts. ;)
评论 #42240949 未加载