All Projects → clarete → Hackernews.el

clarete / Hackernews.el

Licence: gpl-3.0
Hacker News client for Emacs

Projects that are alternatives of or similar to Hackernews.el

Nox
Nox is a lightweight, high-performance LSP client for Emacs
Stars: ✭ 181 (-9.5%)
Mutual labels:  emacs
Emacs History
Historical Emacs Software Preservation
Stars: ✭ 184 (-8%)
Mutual labels:  emacs
Emacs
🧛🏻‍♂️ Dark theme for Emacs
Stars: ✭ 190 (-5%)
Mutual labels:  emacs
Materialistic
A material-design Hacker News Android reader
Stars: ✭ 2,163 (+981.5%)
Mutual labels:  hacker-news
Org Books
Reading list management with org mode
Stars: ✭ 186 (-7%)
Mutual labels:  emacs
Julia Emacs
Julia support in Emacs.
Stars: ✭ 187 (-6.5%)
Mutual labels:  emacs
Hackerweb Native
A simply readable Hacker News app for iOS & Android, built with React Native. V2 now over here https://github.com/cheeaun/hackerweb-native-2
Stars: ✭ 177 (-11.5%)
Mutual labels:  hacker-news
Emacs Direnv
direnv integration for emacs
Stars: ✭ 194 (-3%)
Mutual labels:  emacs
Elispcheatsheet
Quick reference to the core language of Emacs ---Editor MACroS.
Stars: ✭ 186 (-7%)
Mutual labels:  emacs
React Hn
React-powered Hacker News client
Stars: ✭ 2,174 (+987%)
Mutual labels:  hacker-news
Pomidor
Pomidor is a simple and cool pomodoro technique timer.
Stars: ✭ 183 (-8.5%)
Mutual labels:  emacs
Super Save
Save Emacs buffers when they lose focus
Stars: ✭ 184 (-8%)
Mutual labels:  emacs
El Compilador
An SSA-based compiler for Emacs Lisp
Stars: ✭ 187 (-6.5%)
Mutual labels:  emacs
Dotfiles
Jichao Ouyang's awesome dotfiles
Stars: ✭ 182 (-9%)
Mutual labels:  emacs
Build Emacs For Macos
Somewhat hacky script to automate building of Emac.app on macOS.
Stars: ✭ 192 (-4%)
Mutual labels:  emacs
Flycheck
On the fly syntax checking for GNU Emacs
Stars: ✭ 2,138 (+969%)
Mutual labels:  emacs
Smudge
Control the Spotify app from within Emacs.
Stars: ✭ 186 (-7%)
Mutual labels:  emacs
Evil Snipe
2-char searching ala vim-sneak & vim-seek, for evil-mode
Stars: ✭ 196 (-2%)
Mutual labels:  emacs
Dimmer.el
Interactively highlight which buffer is active by dimming the others.
Stars: ✭ 194 (-3%)
Mutual labels:  emacs
Know Your Http Well
HTTP headers, media-types, methods, relations and status codes, all summarized and linking to their specification.
Stars: ✭ 2,205 (+1002.5%)
Mutual labels:  emacs

Simple Hacker News Emacs Client

MELPA MELPA Stable

It's simple because it doesn't actually interact with Hacker News. It uses a HTTP API to get the data.

Interface

Version 0.6.1 of the hackernews package is able to fetch stories from six different Hacker News feeds, namely top, new, best, ask, show and job stories. The default feed is top stories, which corresponds to the Hacker News homepage.

The score, title, and comments count of each story is presented on a line of its own (see screenshot below), though this format is customizable. Both the title and comments count strings are hyperlinked to the Hacker News page for the item (the one with the comments), unless the story links to an external page, in which case the title is hyperlinked to that instead.

Clicking or typing RET on a link opens it with the command browse-url, which selects a browser based on the user option browse-url-browser-function. This defaults to the system's default browser.

Typing t on a link first tries to open it in eww, if available, and otherwise passes it to the command browse-url-text-emacs, which consults the user option browse-url-text-browser. This defaults to running lynx within Emacs. Keep in mind that some websites do not render well in text mode.

A future hackernews version may support upvoting and interacting with comments.

Keymap

Key Description
RET Open link in default (external) browser
t Open link in text-based browser within Emacs
r Mark link as visited
R Mark link as unvisited
n Move to next title link
p Move to previous title link
TAB Move to next comments count link
S-TAB Move to previous comments count link
m Load more stories
g Reload stories
f Prompt user for a feed to switch to
q Quit

All feed re/loading commands accept an optional numeric prefix argument denoting how many stories to act on. For example, M-50g refreshes the feed of the current hackernews buffer and fetches its top 50 stories. With no prefix argument, the value of the user option hackernews-items-per-page is used instead.

Screenshot

screenshot

Installation

Using the built-in package manager

Those who like the built-in package manager package.el need only point it to a MELPA repository, which can be achieved by adding the following code to your user-init-file:

(require 'package)
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/"))
(package-initialize)

Note that this will follow the bleeding edge of hackernews development. Though hackernews contributors make every effort to keep the latest snapshot usable and bug-free, to err is human. If this thought scares you, a more stable experience can be achieved by replacing:

'("melpa" . "https://melpa.org/packages/")

in the example above with:

'("melpa-stable" . "https://stable.melpa.org/packages/")

or equivalent. See https://melpa.org/#/getting-started/ for more on this.

Once package.el is configured, you can run M-xpackage-installREThackernewsRET.

Manual download

Place the hackernews.el file into a directory on your load-path and add the following code to your user-init-file:

(autoload 'hackernews "hackernews" nil t)

Alternatively, if you always want the package loaded at startup (this slows down startup):

(require 'hackernews)

Usage

Just run M-xhackernewsRET. This reads the feed specified by the user option hackernews-default-feed, which defaults to top stories, i.e. the Hacker News homepage. A direct command for each supported feed is also supported, e.g. M-xhackernews-top-storiesRET or M-xhackernews-ask-storiesRET. These direct commands are not autoloaded, however, so to use them before hackernews has been loaded, you should autoload them yourself, e.g. by adding the following to your user-init-file:

(autoload 'hackernews-ask-stories "hackernews" nil t)

Customization

You can list and modify all custom faces and variables by typing M-xcustomize-groupREThackernewsRET.

All hackernews buffers are displayed using the pop-to-buffer function for increased compatibility and customizability in how windows and frames are re/used. This function displays buffers in a new window by default. The simplest way to instead reuse the current window for hackernews buffers is to customize one of the user options same-window-buffer-names, same-window-regexp or in Emacs 24 and subsequent versions, display-buffer-alist via M-xcustomize-groupRETwindowsRET.

If you prefer to roll out your own Elisp, you could add to your user-init-file something as simple as:

(add-to-list 'same-window-regexps "\\`\\*hackernews .*\\*\\'")

Troubleshooting

In general, errors and misbehavior pertaining to network retrieval and JSON parsing are probably due to bugs in older Emacsen. The minimum recommended Emacs version for hackernews is 25. Emacs 24 should work, but suffers from network security vulnerabilities that were fixed in version 25. Emacs 23 is no longer officially supported as of 2018-06-08.

In any case, please report any problems on the project's issue tracker, so that the possibility for mitigation can be investigated.

License

Copyright (C) 2012-2021 The Hackernews.el Authors

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].