I am writing a very simple CLI tool to retrieve some feeds.
In case you want to review parts of it, updated version.
Example
cargo run -- -u https://colah.github.io/rss.xml
Outputs:
Title: Visualizing Representations: Deep Learning and Human Beings
URL: None
Related Links ["http://colah.github.io/posts/2015-01-Visualizing-Representations/"]
Last Updated: 2015-01-16 00:00:00 UTC
Summary: In a [previous post][1], we explored techniques for visualizing high-dimensional
data. Trying to visualize high dimensional data is, by itself, very interesting,
but my real goal is something else...
It is how far I could get with my current skills and time contraints.
The most challenging part for me is handling errors. This is currently done through a single enum
.
Things I am not concerned with at this stage are:
- High performance (although advice is still welcome)
- Using
async
(it's too early for me.)