---
title: Stats
permalink: /stats/index.html
description: Some basic stats about my activity on this site.
updated: "now"
---
Stats
I share the music I listen to, concerts I attend, shows and movies I watch, books I read, posts I write, and links I enjoy on this site. I have some basic counts of each below.
I've listened to {{ stats.listen_count }} {{ stats.listen_count | pluralize: "track" }} by {{ stats.artist_count }} {{ stats.artist_count | pluralize: "artist" }} across {{ stats.genre_count }} {{ stats.genre_count | pluralize: "genre" }}.
I've been to {{ stats.concert_count }} {{ stats.concert_count | pluralize: "concert" }} at {{ stats.venue_count }} {{ stats.venue_count | pluralize: "venue" }}.
I've watched {{ stats.episode_count }} {{ stats.episode_count | pluralize: "episode" }} of {{ stats.show_count }} {{ stats.show_count | pluralize: "show" }}{% if stats.episode_count != "1" %} (some more than once){% endif %}.
I've watched {{ stats.movie_count }} {{ stats.movie_count | pluralize: "movie" }}{% if stats.movie_count != "1" %} (some more than once){% endif %}.
I've read {{ stats.book_count }} {{ stats.book_count | pluralize: "book" }}. I've read {{ books.daysRead }} {{ books.daysRead | pluralize: "day" }} in a row and counting.
I've written {{ stats.post_count }} {{ stats.post_count | pluralize: "post" }}.
I've shared {{ stats.link_count }} {{ stats.link_count | pluralize: "link" }}.
{% for year_stats in stats.yearly_breakdown %}
{{ year_stats.year }}
{% if year_stats.listen_count %}
- Listened to {{ year_stats.listen_count }} {{ year_stats.listen_count | pluralize: "track" }} by {{ year_stats.artist_count }} {{ year_stats.artist_count | pluralize: "artist" }} across {{ year_stats.genre_count }} {{ year_stats.genre_count | pluralize: "genre" }}.
{% endif %}
{% if year_stats.concert_count %}
- Attended {{ year_stats.concert_count }} {{ year_stats.concert_count | pluralize: "concert" }} at {{ year_stats.venue_count }} {{ year_stats.venue_count | pluralize: "venue" }}.
{% endif %}
{% if year_stats.episode_count %}
- Watched {{ year_stats.episode_count }} {{ year_stats.episode_count | pluralize: "episode" }} of {{ year_stats.show_count }} {{ year_stats.show_count | pluralize: "show" }}{% if year_stats.episode_count != "1" %} (some more than once){% endif %}.
{% endif %}
{% if year_stats.movie_count %}- Watched {{ year_stats.movie_count }} {{ year_stats.movie_count | pluralize: "movie" }}{% if year_stats.movie_count != "1" %} (some more than once){% endif %}.
{% endif %}
{% if year_stats.book_count %}
- Read {{ year_stats.book_count }} {{ year_stats.book_count | pluralize: "book" }}.
{% endif %}
{% if year_stats.post_count %}
- Wrote {{ year_stats.post_count }} {{ year_stats.post_count | pluralize: "post" }}.
{% endif %}
{% if year_stats.link_count %}
- Shared {{ year_stats.link_count }} {{ year_stats.link_count | pluralize: "link" }}.
{% endif %}
{% endfor %}