Algolia Hacker News Search GitHub Project Archived

(github.com)

51 points | by maguszin 2 hours ago

5 comments

  • xnx 1 hour ago
    Does this indicate a new HN search could be coming?
  • JoshGlazebrook 56 minutes ago
    Wasn't aware that this backend ran on rails.
    • mihaelm 21 minutes ago
      Ruby is a sleeper for me. I wasn’t around when Ruby on Rails was all the rage for startups, so I always get surprised when I learn that so-and-so started off as a Ruby project.

      But it totally makes sense considering its style.

  • h4ch1 1 hour ago
    Hmm, I've been getting "Algolia API failed" on Harmonic for the past day, was wondering what could be going on.
    • NSPG911 58 minutes ago
      I've been having issues logging into my HN account on Harmonic for quite a while, now this, the API is down :/
  • SilverElfin 1 hour ago
    Is there a place to get an archive of all HN posts and historical comments?
    • nomilk 33 minutes ago
      Easiest way might be to use google cloud's 'bigquery' tool which lets you query hn data with SQL

      I just tried

          SELECT *
          FROM `bigquery-public-data.hacker_news.full` 
      
      and it returns 47049059 rows. And

          SELECT
            MAX(timestamp) AS most_recent_timestamp
          FROM `bigquery-public-data.hacker_news.full`;
      
      gives 2026-02-21 09:12:49 UTC, so it checks out.
    • StrangeSound 46 minutes ago
      There's a BigQuery public dataset

        bigquery-public-data.hacker_news.full
    • krapp 1 hour ago
      There are some data sets but Hacker News has a non rate-limited API (see the bottom of the page) so you can just build one yourself.

      I don't think you can get the content of flagged posts without actually scraping the site but that'll get you banned.

  • ChrisArchitect 57 minutes ago
    This isn't 'archived' - it's just the source code of HN Search. And place for reporting problems, like back in August when it wasn't ingesting data briefly

    https://news.ycombinator.com/item?id=44934518

    • sciurus 50 minutes ago
      The repo page says "This repository was archived by the owner on Feb 10, 2026. It is now read-only."