A Gnus backend for Hacker News
 
 
 
 
Go to file
dickmao 7d3f1b5a3d failing on 25.1 2019-10-24 18:24:22 -04:00
features C-c C-c send no longer goes to summary buffer? 2019-09-30 19:40:54 -04:00
tests get rid of a misunderstanding 2019-08-27 20:32:38 -04:00
tools ignore-errors delete-file 2019-10-12 21:14:08 -04:00
.gitignore gitignore adds 2019-08-23 16:53:57 -04:00
.travis.yml failing on 25.1 2019-10-24 18:24:22 -04:00
Cask recording nnhackernews--request-item 2019-08-17 19:51:31 -04:00
Makefile sort out travis_repo_slug and travis_pull_request_branch 2019-10-24 17:29:07 -04:00
README.in.rst screenshot for readme [skip ci] 2019-09-16 23:42:19 -04:00
README.rst screenshot for readme [skip ci] 2019-09-16 23:42:19 -04:00
nnhackernews.el unwind-protect is apropos here 2019-10-24 18:01:13 -04: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.org/dickmao/nnhackernews.svg?branch=master
   :target: https://travis-ci.org/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:: screenshot.png

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-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 ``.gnus`` or ``.emacs``,

::

   (add-to-list 'gnus-secondary-select-methods
                '(nnhackernews ""))

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.

When finished, "catch-up" via ``c`` to flush the unread threads.  Gnus will not show comments for them.

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.

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