Live data from Hacker News

Show HN: Web0.cc – Generate clutter, ad and tracker free article pages to share

web0.cc

31–40 of 65 posts

Re: Show HN: Web0.cc – Generate clutter, ad and tracker free article pages to share

#31
post #19

I saw "generate clutter..." in the title and thought "why would I want to generate clutter?" I know it's a minor point but I'd go "Remove clutter, ads and trackers from any article" for a stronger initial proposition.

Mine is

> Generate pages free of ads, trackers and other clutter.

Put the major purpose in the first two words.

[edit - otoh it doesn't generate pages really but generates versions of existing pages]

Re: Show HN: Web0.cc – Generate clutter, ad and tracker free article pages to share

#32
post #19

I saw "generate clutter..." in the title and thought "why would I want to generate clutter?" I know it's a minor point but I'd go "Remove clutter, ads and trackers from any article" for a stronger initial proposition.

How about “Declutter web pages, remove ads and trackers”. Then the thing being improved (web pages) is also mentioned at the start and not only at the end.

Re: Show HN: Web0.cc – Generate clutter, ad and tracker free article pages to share

#35
Reddit page converted to text only. Headline claim checks out. Would be even cooler if this were just in the browser, that you could link someone to web0.cc/#url and it would do the computation client-side, not needing any queueing system and (depending on CORS headers) slightly more privacy-friendly.

Given that it now has queueing, server-side processing, and forever-links, clearly there's computing power and storage behind it. What will this cost to run? Would I not risk ads being shown when we start to use this frequently?

Re: Show HN: Web0.cc – Generate clutter, ad and tracker free article pages to share

#36
post #14

Why isn't this achieved client side?

CORS makes this difficult. For non-CORS enabled sites you would need to use a server-side proxy. But at that point why not do the filtering on the server to avoid transferring unnecessary data?

> For non-CORS enabled sites

Which is essentially every website, as CORS underpins how the web works. Only if there is a public API for a given site, would it be possible to do otherwise. And then you'd usually still need URL to API mapping, plus any further API sign up stuff that may or may not be required for simple GETs.

Re: Show HN: Web0.cc – Generate clutter, ad and tracker free article pages to share

#37
post #36

Earlier quoted context omitted.

CORS makes this difficult. For non-CORS enabled sites you would need to use a server-side proxy. But at that point why not do the filtering on the server to avoid transferring unnecessary data?

> For non-CORS enabled sites Which is essentially every website, as CORS underpins how the web works. Only if there is a public API for a given site, would it be possible to do otherwise. And then you'd usually still need URL to API mapping, plus any further API sign up stuff that may or may not be required for simple GETs.

CORS was a hacky fix to a bad design that we are still paying for.

But backwards compatibility is nice I guess.

Re: Show HN: Web0.cc – Generate clutter, ad and tracker free article pages to share

#38
Hmm reminds me of Google’a AMP in a way. I applaud author’s work. It’s really nice. Unfortunately if this gets popular all the negatives that stemmed from Google trying to host AMP content, with similarly good intentions, might come back to haunt us. Hopefully your product remains niche. Great work

Re: Show HN: Web0.cc – Generate clutter, ad and tracker free article pages to share

#39
Is it reading the web page, parsing it into an AST, sanitizing the AST, then writing it out? I have a similar function on my site: https://roastidio.us

There are 2 caveats:

* There are broken HTML files that somehow still work with a browser.

* There are web pages that rely on javascript even for the main text.

Post reply on HN