readability VS hn-search

Compare readability vs hn-search and see what are their differences.

SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.
surveyjs.io
featured
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
readability hn-search
52 1,637
8,128 524
4.0% 0.2%
6.3 2.9
6 days ago 6 months ago
JavaScript TypeScript
GNU General Public License v3.0 or later GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

readability

Posts with mentions or reviews of readability. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-05-01.
  • 2markdown – Transform Websites into Markdown
    4 projects | news.ycombinator.com | 1 May 2024
    Why not just use something like https://github.com/mozilla/readability

    And not pay $0.01 per request?

    There’s a node version too https://www.npmjs.com/package/@mozilla/readability

  • Mozilla: Readability.js
    8 projects | news.ycombinator.com | 25 Feb 2024
  • CSS for readability
    3 projects | /r/webdev | 9 Dec 2023
    I'm working with the Mozilla's readability library https://github.com/mozilla/readability to get the "readable" text from articles and now I want to style the extracted text in a readable way.
  • Building a Serverless Reader View with Lambda and Chrome
    5 projects | dev.to | 25 Sep 2023
    Do you remember the Firefox Reader View? It's a feature that removes all unnecessary components like buttons, menus, images, and so on, from a website, focusing on the readable content of the page. The library powering this feature is called Readability.js, which is open source.
  • Webrecorder: Capture interactive websites and replay them at a later time
    6 projects | news.ycombinator.com | 1 Aug 2023
    I wonder if Firefox "reader mode as a utility" might be a viable alternative for Pinboard like "content oriented" archiving?

    https://github.com/mozilla/readability

  • Creating an advanced search engine with PostgreSQL
    9 projects | news.ycombinator.com | 12 Jul 2023
    Depending upon the type of content, one might want to look into using the Readability (Browder's reader view) to parse the webpage. It will give you all the useful info without the junk. Then you can put it in the DB as needed.

    https://github.com/mozilla/readability

    Btw, readability, is also available in few other languages like Kotlin:

    https://github.com/dankito/Readability4J

  • Seeking a tool or method to convert webpages into Q&A format using NLP
    1 project | /r/LanguageTechnology | 10 Jun 2023
    Use Mozilla's Readability to extract that sweet, sweet text content from webpages.
  • I built a free prompt managing tool - Knit
    2 projects | /r/ChatGPTPromptGenius | 8 Jun 2023
    Same as above but the ability to grab the entire article text (you can use the Readability library for that: https://github.com/mozilla/readability)
  • I need automatic source URLs when I paste any text onto a card or note, like on OneNote.
    4 projects | /r/ObsidianMD | 20 Apr 2023
    // Original script // https://gist.github.com/kepano/90c05f162c37cf730abb8ff027987ca3 // Bookmarklet Converter // https://caiorss.github.io/bookmarklet-maker/ // Libraries // https://github.com/mixmark-io/turndown // https://github.com/mozilla/readability javascript: Promise.all([import('https://unpkg.com/[email protected]?module'), import('https://unpkg.com/@tehshrike/[email protected]'), ]).then(async ([{ default: Turndown }, { default: Readability }]) => { /* Optional vault name */ const vault = ""; /* Optional folder name such as "Clippings/" */ const folder = "Clippings/"; /* Optional tags */ const tags = ""; function getSelectionHtml() { var html = ""; if (typeof window.getSelection != "undefined") { var sel = window.getSelection(); if (sel.rangeCount) { var container = document.createElement("div"); for (var i = 0, len = sel.rangeCount; i < len; ++i) { container.appendChild(sel.getRangeAt(i).cloneContents()); } html = container.innerHTML; } } else if (typeof document.selection != "undefined") { if (document.selection.type == "Text") { html = document.selection.createRange().htmlText; } } return html; } const selection = getSelectionHtml(); const { title, byline, content } = new Readability(document.cloneNode(true)).parse(); function getFileName(fileName) { var userAgent = window.navigator.userAgent, platform = window.navigator.platform, windowsPlatforms = ['Win32', 'Win64', 'Windows', 'WinCE']; if (windowsPlatforms.indexOf(platform) !== -1) { fileName = fileName.replace(':', '').replace(/[/\\?%*|"<>]/g, '-'); } else { fileName = fileName.replace(':', '').replace(/\//g, '-').replace(/\\/g, '-'); } return fileName; } const fileName = getFileName(title); if (selection) { var markdownify = selection; } else { var markdownify = content; } if (vault) { var vaultName = '&vault=' + encodeURIComponent(`${vault}`); } else { var vaultName = ''; } const markdownBody = new Turndown({ headingStyle: 'atx', hr: '---', bulletListMarker: '-', codeBlockStyle: 'fenced', emDelimiter: '*', }).turndown(markdownify); var date = new Date(); function convertDate(date) { var yyyy = date.getFullYear().toString(); var mm = (date.getMonth()+1).toString(); var dd = date.getDate().toString(); var mmChars = mm.split(''); var ddChars = dd.split(''); return yyyy + '-' + (mmChars[1]?mm:"0"+mmChars[0]) + '-' + (ddChars[1]?dd:"0"+ddChars[0]); } const today = convertDate(date); // This is the output template // It is similar to an Obsidian core template // except to insert a value we use: ${value} instead of {{value}} const fileContent =`--- type: clipping date_added: ${today} aliases: [] tags: [${tags}] --- author:: ${byline.toString().split('\n')[0].trim()} source:: [${title}](${document.URL}) ${markdownBody} `; // This copies your text to the clipboard navigator.clipboard.writeText(fileContent); // This creates a new document in Obsidian containing your clipping // I commented it out as this isn't what you asked for /* document.location.href = "obsidian://new?" + "file=" + encodeURIComponent(folder + fileName) + "&content=" + encodeURIComponent(fileContent) + vaultName; */ })
  • Any js packages to only scrape relevant content from a webpage?
    1 project | /r/webscraping | 27 Mar 2023

hn-search

Posts with mentions or reviews of hn-search. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-05-07.
  • Rule of Thumb: Anything that looks fancy is not worth you time
    1 project | news.ycombinator.com | 8 May 2024
    - Ads with Psychological tricks

    Truly good websites have around 2 facts per 10 word sentence, and get instantly to the chase. Also: good websites give you the names of all their competitors/alternative websites before showing their own stuff, and give you further reading.

    Right now the world of technology is supposedly more innovative than ever, but somehow Wikipedia (https://www.wikipedia.org/) and Search Hackernews (https://hn.algolia.com/) beat billion dollar search engines.

    Articles written decades ago are still unsurpassed in terms of quality and ease of understanding, but the best modern websites can do is textbook explanations. It is time society graduates from boilerplate buzzword textbook culture.

    Now the gems of the internet are slowly being buried beneath mountains of trash.

    If something sounds boilerplate it isn't good enough.

    Don't bother saying something that has been said before, and better.

  • What makes a translation great
    2 projects | news.ycombinator.com | 7 May 2024
    >for more detail: https://hn.algolia.com/?dateRange=all&page=0&prefix=false&qu...

    Oh, I see. We actually discussed Pound about four years ago - just a little back and forth about the ABC of Reading: https://news.ycombinator.com/item?id=24196681

    >What's your explanation of why Pound went Fascist?

    I'm not sure I particularly have one; I haven't read any of his longer political or cultural (i.e. non-literary) works. I just think it's silly to correlate an approach to translation that you dislike with fascism. Especially as I'm not sure it even makes sense on its own terms: I can only read your comment as 'lazy translator? Figures that he would be a fascist', but if I imagine the type of translation a fascist would approve of, the approach I picture is fastidious, fussy, concerned with fidelity to the point of stickler-ishness. (Isn't that from where we get 'grammar nazi'?)

    And oh, well, since you ask I'll take a shy at it: my vague sense is that he became fascist because saw a society in decline due to it becoming more and more a sham society: opulence without virtue, power without vigour, money no longer tied to actually existing goods. (Of course, all of this shades easily into antisemitism.) He saw fascism as the answer; It's easier to see in retrospect that it wasn't.

  • Zed Decoded: Linux When? – Zed Blog
    7 projects | news.ycombinator.com | 7 May 2024
    "multiplayer notepad" goes back 15 years at least - https://hn.algolia.com/?dateRange=all&page=0&prefix=false&qu... notepad&sort=byDate&type=comment

    it was used back with a popular website which opened a text document and anyone viewing could type, but I can't remember the name. That became a thing in Google Docs, Microsoft Office, Floobits, and lots of self-hosted and cloned sites.

  • Louis Rossmann: YouTube's Legal Team sent me a letter [video]
    1 project | news.ycombinator.com | 3 May 2024
    If you see a post that ought to have been moderated but hasn't been, the likeliest explanation is that we didn't see it. You can help by flagging it or emailing us at [email protected].

    https://hn.algolia.com/?dateRange=all&page=0&prefix=false&qu...

  • An Oil Price-Fixing Conspiracy Caused 27% of All Inflation in 2021
    1 project | news.ycombinator.com | 3 May 2024
    Ok, but please don't post unsubstantive comments to Hacker News.

    I understand the reason for repeating these sentiments—it's the same reason why they get upvoted to the top of threads*—but repetition of this kind is what we're most trying to avoid here.

    https://hn.algolia.com/?dateRange=all&page=0&prefix=false&so...

    https://news.ycombinator.com/newsguidelines.html

    * I've marked this one off topic now.

  • Validating app for manufacturers enhancing process reliability and efficiency
    1 project | news.ycombinator.com | 2 May 2024
    I was looking for it in the guidelines. There are a couple of conventions for postings. Consider a bit of prior examples: [https://hn.algolia.com/?q=show+hn]
  • Show HN: Hacker Search – A semantic search engine for Hacker News
    3 projects | news.ycombinator.com | 2 May 2024
    yeah there are only three stories coming up from the site search

    https://hn.algolia.com/?q=postgres+clustering

    only one is semanthically correct, the other pick up the wrong version of clustering (i.e. k-means instead of multi master writes)

    but yeah if one doesn't test the hard cases, how does one know it preserves semantics :D

  • Longevity of Recordable CDs, DVDs and Blu-Rays
    1 project | news.ycombinator.com | 2 May 2024
  • The Scientific Method Part 5: Illusions, Delusions, and Dreams
    1 project | news.ycombinator.com | 2 May 2024
    Like dismissing the work of Feyerabend or Wittgenstein without seemingly having read either:

    https://hn.algolia.com/?dateRange=pastMonth&page=0&prefix=tr...

  • Any Google Analytics Alternatives?
    3 projects | news.ycombinator.com | 1 May 2024
    https://hn.algolia.com/?dateRange=all&page=0&prefix=true&que...

What are some alternatives?

When comparing readability and hn-search you can also consider the following projects:

parser - 📜 Extract meaningful content from the chaos of a web page

duckduckgo-locales - Translation files for <a href="https://duckduckgo.com"> </a>

koreader - An ebook reader application supporting PDF, DjVu, EPUB, FB2 and many more formats, running on Cervantes, Kindle, Kobo, PocketBook and Android devices

v - Simple, fast, safe, compiled language for developing maintainable software. Compiles itself in <1s with zero library dependencies. Supports automatic C => V translation. https://vlang.io

readability.php - PHP port of Mozilla's Readability.js

rssguard - Feed reader (and podcast player) which supports RSS/ATOM/JSON and many web-based feed services.

yq - Command-line YAML, XML, TOML processor - jq wrapper for YAML/XML/TOML documents

SponsorBlock - Skip YouTube video sponsors (browser extension)

milkdown - 🍼 Plugin driven WYSIWYG markdown editor framework.

stylus - Stylus - Userstyles Manager

nitter - Alternative Twitter front-end