A Gnus backend for Hacker News
 
 
 
 
Go to file
dickmao b9ddf6f73b apprise encoding with utf-8 charset 2020-02-25 10:40:53 -05:00
features do not assume the requisite set-buffer's 2019-11-23 09:57:04 -05:00
tests sane gnus-thread-sort-functions 2019-12-19 08:16:27 -05:00
tools elpa keys 2020-02-24 07:09:01 -05:00
.gitignore gitignore adds 2019-08-23 16:53:57 -04:00
.travis.yml must install package-lint before calling it 2019-11-11 12:16:52 -05:00
Cask cask-ify package-lint.sh 2019-11-11 08:30:25 -05:00
Makefile don't run rescore if nnhackernews not a select method 2020-02-04 17:50:03 -05:00
README.in.rst readme 2020-02-17 06:42:22 -05:00
README.rst readme 2020-02-17 06:42:22 -05:00
nnhackernews.el apprise encoding with utf-8 charset 2020-02-25 10:40:53 -05:00
screencast.gif screencast.gif 2019-12-19 13:53:43 -05:00
screenshot.png screenshot for readme [skip ci] 2019-09-16 23:42:19 -04:00

README.rst

|build-status|

  Procrastination can be a full-time job.

A Gnus backend for Hacker News.

.. |build-status|
   image:: https://travis-ci.com/dickmao/nnhackernews.svg?branch=master
   :target: https://travis-ci.com/dickmao/nnhackernews
   :alt: Build Status
.. |melpa-dev|
   image:: https://melpa.org/packages/nnhackernews-badge.svg
   :target: http://melpa.org/#/nnhackernews
   :alt: MELPA current version
.. |melpa-stable|
   image:: http://melpa-stable.milkbox.net/packages/ein-badge.svg
   :target: http://melpa-stable.milkbox.net/#/ein
   :alt: MELPA stable version

.. image:: screencast.gif

Install
=======
As described in `Getting started`_, ensure melpa's whereabouts in ``init.el`` or ``.emacs``::

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

Then

::

   M-x package-refresh-contents RET
   M-x package-initialize RET
   M-x package-install RET nnhackernews RET

Alternatively, copy ``nnhackernews.el`` to a directory among ``C-h v RET load-path`` and add ``(require 'nnhackernews)`` to ``.emacs``.

Usage
=====
In your ``.emacs`` or ``init.el``, use ONE of the following:

::

   ;; Applies to first-time Gnus users
   (custom-set-variables '(gnus-select-method (quote (nnhackernews ""))))

or, if you're an existing Gnus user,

::

   ;; Applies to existing Gnus users
   (add-to-list 'gnus-secondary-select-methods '(nnhackernews ""))

Then ``M-x gnus``.

Enter the ``nnhackernews:news`` newsgroup with ``RET``.

Gnus will only show followup comments for threads you read, so be selective.  If you accidentally read a thread, or decide the thread is uninteresting, you may ``C-k`` it to prevent Gnus from showing followups.  Use ``C-k`` liberally.

The signal-to-noise of the hackernews firehose is such that I often "catch-up" via ``c`` to flush the unread threads.

Create a post via ``a``.

Reply to articles with ``f`` or ``r``.  Include original with ``F``.

Vote articles by ``R =`` (up), or ``R 0`` (retract).

From the ``*Group*`` buffer, press ``g`` to refresh all groups.  ``M-g`` on a particular group to refresh individually.

From the summary buffer, ``/o`` redisplays articles already read.  ``x`` undisplays them.

``S c`` cancels articles.

Gnus beginners may find the interface bewildering.  In particular, groups with no unread articles do not display.  Use ``L`` to bring them out of hiding.

Gnus For a New Generation
=========================
The Gnus software that the author himself uses is at https://github.com/dickmao/gnus.
His changes include non-blocking fetch, and fixing threads sorting.

.. _Getting started: http://melpa.org/#/getting-started