rascal: A command-line client for Reddit

[ library, mit, program, web ] [ Propose Tags ]

Rascal is a command-line client for Reddit with colors, configurable sorting, threaded comments, and some day most of Reddit's API available.


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 1.1.4, 1.1.5, 1.1.6
Dependencies aeson, ansi-terminal, base (>=4.6 && <4.7), containers, curl, curl-aeson, directory, filepath, mtl, process (>=1.2), vector [details]
License MIT
Author Sylvain Soliman
Maintainer Sylvain.Soliman@gmail.com
Category Web
Home page http://soli.github.io/rascal/
Source repo this: git clone git://github.com/soli/rascal.git(tag v1.1.6)
head: git clone git://github.com/soli/rascal.git
Uploaded by soli at 2014-01-13T18:45:30Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Executables rascal
Downloads 2433 total (8 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Successful builds reported [all 1 reports]

Readme for rascal-1.1.6

[back to package description]
                              __ 
.----.---.-.-----.----.---.-.|  |
|   _|  _  |__ --|  __|  _  ||  |
|__| |___._|_____|____|___._||__|
                                 

Build Status

rascal is a command-line client for reddit.

It should work on any platform where Haskell runs (Linux, Mac OSX and Windows through MinGW), and aims at making available the whole reddit API (we're not there yet…).

It sports colors, that should soon become configurable, and might not work under Windows (based on ANSI escape sequences, through ansi-terminal).

By default it will open /r/haskell sorted by "new", but you can provide another subreddit as argument on the command line

$ rascal python

It is also possible to define the default subreddit and the default sort option in an INI-style configuration file named .rascalrc in your HOME directory. For instance, it might contain the following (case-sensitive!):

subreddit: programming
linkSort = controversial
commentSort: new
pageComments = True

Here is what rascal looks like when started, and when a self link (marked with a '♦') is chosen (N was pressed in this case). Non-self links and links detected in posts will be opened in your default browser.

screenshot

Comments are shown threaded, with the order defined in the configuration file (defaulting to new), and one page at a time if pageComments is true (default). Comments, like posts, are formatted to avoid cutting words when possible.

threads

Notes

In case you wonder, my iTerm2 is using the dark solarized color scheme. The ASCII title was generated with figlet -f chunky. And the name comes from my own pronunciation of /r/haskell.

Planned Features

  • Configuration for colors
  • OAuth2 login to reddit (subscribed/saved/etc.)
  • more tests

Disclaimer

Please note that rascal is my first Haskell project. As such, it is as much a fun experiment for me to discover the ecosystem and the idioms, than a really useful project. TL;DR: YMMV.