nowfound

Alternatives

Products that do what CLI for Hacker News does

Hi HN! I've built hnterminal, a pip package that lets you browse, upvote, and comment on HN from terminal: $ pip install hnterminal $ hnterminal hnterminal is an interactive REPL environment with commands like "get_front_page", "get_tree", "upvote", "reply_to", etc, each of which supports rich arguments and comes with full help documentation. On the read side, hnterminal uses the HN API to construct front page and comment trees. On the write side, it reads the webpage and constructs an API response from parsed information. Unfortunately, a write API does not exist for HN (that I know of).…

  1. 1BU

    Hi HN! I've built hnterminal, a pip package that lets you browse, upvote, and comment on Hacker News from your terminal. To get started: $ pip install hnterminal $ hnterminal hnterminal is an interactive REPL environment with commands like "get_front_page", "get_tree", "upvote", "reply_to", etc, each of which supports rich arguments and comes with full help documentation. Checkout the readme.

    2023 · github.com

  2. 2HB
  3. 3AH
  4. 4HR
  5. 5BE
  6. 6GL

    Hi HN, I hacked a simple service for gathering HN replies and organizing them by the parent's username. The main idea is to be able to efficiently get the latest replies to an HN user. For example, you can use this service to send yourself notifications when some replies to you on HN. The service queries the official HN API and can be self-hosted. It is basically ~30 lines of Bash script. I made this mostly for educational purposes -- thought you might find it useful for something. Cheers! Edit: for example, here are the latest replies to me [0]. It includes only recent replies, since I…

    2022 · github.com

  7. 7IM
  8. 8CH

    Little chrome extension I made to collapse comments on HN, feel free to use it if you want.

    2014 · github.com

  9. 9HG
  10. 10PF

    My first python app, it displays posts from hacker news that is tagged under "Show HN"...

    2013 · showhnapp.herokuapp.com

  11. 11HI

    Hi HN, Sharing HN Insights, a webapp I built that highlights trending themes and summarizes discussion threads from the front page. This started earlier this week as a toy project to test out Gemini 3 Pro in aistudio. I found the POC useful, so I decided to productionize it. I've included the original seed prompt below: > Create an app that creates a summary of the comment threads for hacker news front page. The UX should be similar, but clicking the comments instead opens a summary. The summary is generated when clicked so it can gather new threads. To productionize, I used Claude Code and…

    Nov 2025 · hn-insights.com

  12. 12YH

    The comments on HN are often at least as good (if not better!) than the links. I built this app to have a way to quickly read through all the top comments on front page stories. I hope some of you find it useful too.

    2012 · news.ycommentator.com

  13. 13HH

    Each link has an anchor tag like this: <a href="vote?for=4156127&dir=up&by=asto&auth=12345&whence=%6e%65%77%73" onclick="return vote(this)" id="up_4156127"> <img vspace="3" hspace="2" border="0" src="http://ycombinator.com/images/grayarrow.gif"> </a> The vote function looks like this: function vote(node) { var v = node.id.split(/_/); // {'up', '123'} var item = v[1]; // hide arrows byId('up_' + item).style.visibility = 'hidden'; byId('down_' + item).style.visibility = 'hidden'; // ping server var ping = new Image(); ping.src =…

    2012

  14. 14LA

    I've been frustrated with Reddit's recent API turn, and am also not the biggest fan of HN on mobile. I used to take part in discussion years ago on both sites, but have slowly turned into a lurker. As such, I need a slick client that works on both desktop and mobile, that let's me merely consume content, both media and comments, on both sites. I build ledit over the past few nights for exactly that purpose. I gather others might also have a similar need that's not yet filled by other options out there. https://github.com/badlogic/ledit How does it work? * As a default,…

    2023 · marioslab.io

  15. 15AT

    Hello community. Some time ago I was trying to create a project for my students using Hacker News data. As you might know, HN offers an official API [0], but it's based on Firebase and I felt it's main usage is to build clients, rather than consult data. I found out that Algolia also provides an official REST API [1]. It's exactly what I needed: the ability to "search" HN. Either by keywords, type of stories (Show HN, Ask HN, etc) and/or date. So I created a thin python wrapper on top of Algolia's Search API: https://github.com/santiagobasulto/python-hacker-news The…

    2019

  16. 16HO
  17. 17IW

    It's inspired by this comment I made: https://news.ycombinator.com/item?id=26599746. I actually saw several comments with HTTP URL posted, and that was the only one I bothered to comment on. So I thought that this is something better suited for bots than human. I hacked this together over yesterday and today: https://github.com/fishy/https-bot. Basically it uses the Firebase API (https://github.com/HackerNews/API) to find comments with HTTP URLs in them, try the HTTPS version, compare the contents, post back a comment if the contents are…

    2021

  18. 18IB

    Hello HN, around October last year, I started to work on campaignkit.cc as a side project. It is a service to detect invalid and malicious email addresses. You can upload text files, and use the REST API or direct integration to retrieve a detailed report for each email address. End of March I added Stripe Payments and got my first paying customers via SEM. A coworker suggested starting a Show HN thread, so here we are :) I used golang for the backend since I wanted something lightweight with fast compilation times (coming from scala). For the frontend, I'm using Next.js and TailwindUI. On…

    2022 · campaignkit.cc

  19. 19AD

    Some years ago, I discovered a bot called Little Birdie to watch HN comments for keywords and post a link to Slack. Unfortunately, it has disappeared and I've found myself missing this. So this bot is a re-implementation of it, but now also supporting Discord. It's very easy to use: 1. install the bot on your workspace/guild 2. /keywords add rust,hn,foobar (for Discord) ; @newsbutler add rust,hn,foobar (for Slack) 3. done For technical stuff : it is implemented in Crystal + Postgres (hosted on Render+Neon). I will certainly opensource it when I clean the repo of all production…

    2025 · newsbutler.xyz

  20. 20AM

    There are many like it but this one is mine: https://itunes.apple.com/us/app/pivit/id705715915?mt=8 Seriously, though, this Hacker News reader is better than what's out there, or I wouldn't have spent time on it. How? Most importantly, it utilizes the background refresh APIs, so content is always up to date. Pull to refresh is there, but you probably won't need it. The more addicted you are, the more often it updates. So if you check every few hours, you'll always get the current front page. Complementing this, it helps you see not only what you've read but what…

    2013

  21. 21IA

    Maybe you've had this experience too: You build something you're proud of, post it on HN with your low-karma account, and... crickets. Zero votes, zero comments. That's what happened to me last Monday. I posted my coding tool (XaresAICoder - an open-source browser IDE) that I'd built with AI assistance. In my mind it was revolutionary. On HN? Completely ignored. Then I wondered: How many other potentially great projects suffer the same fate? What "hidden gems" are we missing because they come from low-karma accounts? So I built hn-gems (with help from Claude and my own XaresAICoder). It…

    2025 · hn-gems.sensem.de

  22. 22AP

    2013 · hn-polls.herokuapp.com

  23. 23HC

    I was inspired by the notification summaries on iOS 18 and really liked the idea of AI giving you a quick preview of the content before going to the content. I applied that to HN and built a Chrome extension that summarizes the sentiment and content of HN comments and previews it right next to the stories on the homepage. Makes it so much easier to decide whether I want to delve into the HN comments of a story. It gave me a chance to play with Gemini 1.5 Flash-8B which has been great. Super fast, super cheap, huge context and does a great john on basic tasks like summarizing comment threads.…

    2024

  24. 24HR

    Hey guys, I just flicked the switch on http://hnrecap.com and thought I would make a tiny announcement! The site was created for a simple reason: There is a big rotation of articles on the front page of Hacker News every day, and unless you are on here 24/7, you are bound to miss some great content and discussions. I was tired of this and the rss feed doesn't cut it for me since it doesn't preserve ranking information over time. On HN Recap, rankings are somewhat preserved: Every 2 minutes, I request the HN front page, update articles and attribute points in the following simple fashion: #1…

    2010

Ranked by how close each launch is in meaning, then by votes. Refine with a description →