add tags to all posts, and generate per-tag feeds

pull/9/head
Brian Picciano 3 years ago
parent 90b897dbbc
commit 267e0f21d8
  1. 3
      src/_config.yml
  2. 12
      src/_includes/google-analytics.html
  3. 3
      src/_includes/head.html
  4. 1
      src/_posts/2013-04-09-erlang-tcp-socket-pull-pattern.md
  5. 1
      src/_posts/2013-07-11-goplus.md
  6. 1
      src/_posts/2013-10-08-generations.md
  7. 1
      src/_posts/2013-10-25-namecoind-ssl.md
  8. 1
      src/_posts/2014-01-11-diamond-square.md
  9. 1
      src/_posts/2014-10-29-erlang-pitfalls.md
  10. 1
      src/_posts/2015-03-11-rabbit-hole.md
  11. 1
      src/_posts/2015-11-21-happy-trees.md
  12. 1
      src/_posts/2018-10-25-rethinking-identity.md
  13. 1
      src/_posts/2018-11-12-viz-1.md
  14. 1
      src/_posts/2018-11-12-viz-2.md
  15. 1
      src/_posts/2019-08-02-program-structure-and-composability.md
  16. 1
      src/_posts/2020-04-26-trading-in-the-rain.md
  17. 1
      src/_posts/2020-07-07-viz-3.md
  18. 1
      src/_posts/2020-11-16-component-oriented-programming.md
  19. 1
      src/_posts/2021-01-09-ginger.md
  20. 1
      src/_posts/2021-01-14-the-web.md
  21. 1
      src/_posts/2021-01-23-goodbye-github-pages.md
  22. 1
      src/_posts/2021-01-30-building-mobile-nebula.md

@ -31,3 +31,6 @@ img_widths:
- 2000
- 2500
- 3000
feed:
tags: true

@ -1,12 +0,0 @@
<script>
if(!(window.doNotTrack === "1" || navigator.doNotTrack === "1" || navigator.doNotTrack === "yes" || navigator.msDoNotTrack === "1")) {
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', '{{ site.google_analytics }}', 'auto');
ga('send', 'pageview');
}
</script>

@ -10,9 +10,6 @@
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<link rel="stylesheet" href="{{ "/assets/main.css" | relative_url }}">
{%- feed_meta -%}
{%- if jekyll.environment == 'production' and site.google_analytics -%}
{%- include google-analytics.html -%}
{%- endif -%}
<script src="{{ "/assets/main.js" | relative_url }}"></script>
</head>

@ -2,6 +2,7 @@
title: "Erlang, tcp sockets, and active true"
description: >-
Using `{active:once}` isn't always the best way to handle connections.
tags: tech
---
If you don't know erlang then [you're missing out][0]. If you do know erlang,

@ -2,6 +2,7 @@
title: Go+
description: >-
A simple proof-of-concept script for doing go dependency management.
tags: tech
---
Compared to other languages go has some strange behavior regarding its project

@ -3,6 +3,7 @@ title: Generations
description: >-
A simple file distribution strategy for very large scale, high-availability
file-services.
tags: tech
---
## The problem

@ -3,6 +3,7 @@ title: Namecoin, A Replacement For SSL
description: >-
If we use the namecoin chain as a DNS service we get security almost for
free, along with lots of other benefits.
tags: tech crypto
---
At [cryptic.io][cryptic] we are creating a client-side, in-browser encryption

@ -4,6 +4,7 @@ description: >-
Tackling the problem of semi-realistic looking terrain generation in
clojure.
updated: 2018-09-06
tags: tech art
---
![terrain][terrain]

@ -3,6 +3,7 @@ title: Erlang Pitfalls
description: >-
Common pitfalls that people may run into when designing and writing
large-scale erlang applications.
tags: tech
---
I've been involved with a large-ish scale erlang project at Grooveshark since

@ -2,6 +2,7 @@
title: Rabbit Hole
description: >-
Complex systems sometimes require complex debugging.
tags: tech
---
We've begun rolling out [SkyDNS][skydns] at my job, which has been pretty neat.

@ -2,6 +2,7 @@
title: Happy Trees
description: >-
Visualizing a forest of happy trees.
tags: tech art
---
Source code related to this post is available [here](https://github.com/mediocregopher/happy-tree).

@ -3,6 +3,7 @@ title: Rethinking Identity
description: >-
A more useful way of thinking about identity on the internet, and using that
to build a service which makes our online life better.
tags: tech
---
In my view, the major social media platforms (Facebook, Twitter, Instagram,

@ -6,6 +6,7 @@ description: >-
series: viz
git_repo: https://github.com/mediocregopher/viz.git
git_commit: v1
tags: tech art
---
First I want to appologize if you've seen this already, I originally had this up

@ -6,6 +6,7 @@ description: >-
series: viz
git_repo: https://github.com/mediocregopher/viz.git
git_commit: v2
tags: tech art
---

@ -4,6 +4,7 @@ title: >-
description: >-
Discussing the nature of program structure, the problems presented by
complex structures, and a pattern that helps in solving those problems.
tags: tech
---
## Part 0: Introduction

@ -3,6 +3,7 @@ title: >-
Trading in the Rain
description: >-
All those... gains... will be lost like... tears...
tags: tech art crypto
---
<!-- MIDI.js -->

@ -4,6 +4,7 @@ title: >-
description: >-
All the pixels.
series: viz
tags: tech art
---
<canvas id="canvas" style="padding-bottom: 2rem;"></canvas>

@ -3,6 +3,7 @@ title: >-
Component-Oriented Programming
description: >-
A concise description of.
tags: tech
---
[A previous post in this

@ -3,6 +3,7 @@ title: >-
Ginger
description: >-
Yes, it does exist.
tags: tech
---
This post is about a programming language that's been bouncing around in my head

@ -3,6 +3,7 @@ title: >-
The Web
description: >-
What is it good for?
tags: tech
---
With the recent crisis in the US's democratic process, there's been much abuzz

@ -3,6 +3,7 @@ title: >-
Goodbye, Github Pages
description: >-
This blog is no longer sponsored by Microsoft!
tags: tech
---
Slowly but surely I'm working on moving my digital life back to being

@ -3,6 +3,7 @@ title: >-
Building Mobile Nebula
description: >-
Getting my hands dirty with Android development.
tags: tech
---
This post is going to be cheating a bit. I want to start working on adding DNS

Loading…
Cancel
Save