add tags to all posts, and generate per-tag feeds
This commit is contained in:
parent
90b897dbbc
commit
267e0f21d8
@ -31,3 +31,6 @@ img_widths:
|
|||||||
- 2000
|
- 2000
|
||||||
- 2500
|
- 2500
|
||||||
- 3000
|
- 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="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 }}">
|
<link rel="stylesheet" href="{{ "/assets/main.css" | relative_url }}">
|
||||||
{%- feed_meta -%}
|
{%- feed_meta -%}
|
||||||
{%- if jekyll.environment == 'production' and site.google_analytics -%}
|
|
||||||
{%- include google-analytics.html -%}
|
|
||||||
{%- endif -%}
|
|
||||||
|
|
||||||
<script src="{{ "/assets/main.js" | relative_url }}"></script>
|
<script src="{{ "/assets/main.js" | relative_url }}"></script>
|
||||||
</head>
|
</head>
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
title: "Erlang, tcp sockets, and active true"
|
title: "Erlang, tcp sockets, and active true"
|
||||||
description: >-
|
description: >-
|
||||||
Using `{active:once}` isn't always the best way to handle connections.
|
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,
|
If you don't know erlang then [you're missing out][0]. If you do know erlang,
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
title: Go+
|
title: Go+
|
||||||
description: >-
|
description: >-
|
||||||
A simple proof-of-concept script for doing go dependency management.
|
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
|
Compared to other languages go has some strange behavior regarding its project
|
||||||
|
@ -3,6 +3,7 @@ title: Generations
|
|||||||
description: >-
|
description: >-
|
||||||
A simple file distribution strategy for very large scale, high-availability
|
A simple file distribution strategy for very large scale, high-availability
|
||||||
file-services.
|
file-services.
|
||||||
|
tags: tech
|
||||||
---
|
---
|
||||||
|
|
||||||
## The problem
|
## The problem
|
||||||
|
@ -3,6 +3,7 @@ title: Namecoin, A Replacement For SSL
|
|||||||
description: >-
|
description: >-
|
||||||
If we use the namecoin chain as a DNS service we get security almost for
|
If we use the namecoin chain as a DNS service we get security almost for
|
||||||
free, along with lots of other benefits.
|
free, along with lots of other benefits.
|
||||||
|
tags: tech crypto
|
||||||
---
|
---
|
||||||
|
|
||||||
At [cryptic.io][cryptic] we are creating a client-side, in-browser encryption
|
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
|
Tackling the problem of semi-realistic looking terrain generation in
|
||||||
clojure.
|
clojure.
|
||||||
updated: 2018-09-06
|
updated: 2018-09-06
|
||||||
|
tags: tech art
|
||||||
---
|
---
|
||||||
|
|
||||||
![terrain][terrain]
|
![terrain][terrain]
|
||||||
|
@ -3,6 +3,7 @@ title: Erlang Pitfalls
|
|||||||
description: >-
|
description: >-
|
||||||
Common pitfalls that people may run into when designing and writing
|
Common pitfalls that people may run into when designing and writing
|
||||||
large-scale erlang applications.
|
large-scale erlang applications.
|
||||||
|
tags: tech
|
||||||
---
|
---
|
||||||
|
|
||||||
I've been involved with a large-ish scale erlang project at Grooveshark since
|
I've been involved with a large-ish scale erlang project at Grooveshark since
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
title: Rabbit Hole
|
title: Rabbit Hole
|
||||||
description: >-
|
description: >-
|
||||||
Complex systems sometimes require complex debugging.
|
Complex systems sometimes require complex debugging.
|
||||||
|
tags: tech
|
||||||
---
|
---
|
||||||
|
|
||||||
We've begun rolling out [SkyDNS][skydns] at my job, which has been pretty neat.
|
We've begun rolling out [SkyDNS][skydns] at my job, which has been pretty neat.
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
title: Happy Trees
|
title: Happy Trees
|
||||||
description: >-
|
description: >-
|
||||||
Visualizing a forest of happy trees.
|
Visualizing a forest of happy trees.
|
||||||
|
tags: tech art
|
||||||
---
|
---
|
||||||
|
|
||||||
Source code related to this post is available [here](https://github.com/mediocregopher/happy-tree).
|
Source code related to this post is available [here](https://github.com/mediocregopher/happy-tree).
|
||||||
|
@ -3,6 +3,7 @@ title: Rethinking Identity
|
|||||||
description: >-
|
description: >-
|
||||||
A more useful way of thinking about identity on the internet, and using that
|
A more useful way of thinking about identity on the internet, and using that
|
||||||
to build a service which makes our online life better.
|
to build a service which makes our online life better.
|
||||||
|
tags: tech
|
||||||
---
|
---
|
||||||
|
|
||||||
In my view, the major social media platforms (Facebook, Twitter, Instagram,
|
In my view, the major social media platforms (Facebook, Twitter, Instagram,
|
||||||
|
@ -6,6 +6,7 @@ description: >-
|
|||||||
series: viz
|
series: viz
|
||||||
git_repo: https://github.com/mediocregopher/viz.git
|
git_repo: https://github.com/mediocregopher/viz.git
|
||||||
git_commit: v1
|
git_commit: v1
|
||||||
|
tags: tech art
|
||||||
---
|
---
|
||||||
|
|
||||||
First I want to appologize if you've seen this already, I originally had this up
|
First I want to appologize if you've seen this already, I originally had this up
|
||||||
|
@ -6,6 +6,7 @@ description: >-
|
|||||||
series: viz
|
series: viz
|
||||||
git_repo: https://github.com/mediocregopher/viz.git
|
git_repo: https://github.com/mediocregopher/viz.git
|
||||||
git_commit: v2
|
git_commit: v2
|
||||||
|
tags: tech art
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
|
@ -4,6 +4,7 @@ title: >-
|
|||||||
description: >-
|
description: >-
|
||||||
Discussing the nature of program structure, the problems presented by
|
Discussing the nature of program structure, the problems presented by
|
||||||
complex structures, and a pattern that helps in solving those problems.
|
complex structures, and a pattern that helps in solving those problems.
|
||||||
|
tags: tech
|
||||||
---
|
---
|
||||||
|
|
||||||
## Part 0: Introduction
|
## Part 0: Introduction
|
||||||
|
@ -3,6 +3,7 @@ title: >-
|
|||||||
Trading in the Rain
|
Trading in the Rain
|
||||||
description: >-
|
description: >-
|
||||||
All those... gains... will be lost like... tears...
|
All those... gains... will be lost like... tears...
|
||||||
|
tags: tech art crypto
|
||||||
---
|
---
|
||||||
|
|
||||||
<!-- MIDI.js -->
|
<!-- MIDI.js -->
|
||||||
|
@ -4,6 +4,7 @@ title: >-
|
|||||||
description: >-
|
description: >-
|
||||||
All the pixels.
|
All the pixels.
|
||||||
series: viz
|
series: viz
|
||||||
|
tags: tech art
|
||||||
---
|
---
|
||||||
|
|
||||||
<canvas id="canvas" style="padding-bottom: 2rem;"></canvas>
|
<canvas id="canvas" style="padding-bottom: 2rem;"></canvas>
|
||||||
|
@ -3,6 +3,7 @@ title: >-
|
|||||||
Component-Oriented Programming
|
Component-Oriented Programming
|
||||||
description: >-
|
description: >-
|
||||||
A concise description of.
|
A concise description of.
|
||||||
|
tags: tech
|
||||||
---
|
---
|
||||||
|
|
||||||
[A previous post in this
|
[A previous post in this
|
||||||
|
@ -3,6 +3,7 @@ title: >-
|
|||||||
Ginger
|
Ginger
|
||||||
description: >-
|
description: >-
|
||||||
Yes, it does exist.
|
Yes, it does exist.
|
||||||
|
tags: tech
|
||||||
---
|
---
|
||||||
|
|
||||||
This post is about a programming language that's been bouncing around in my head
|
This post is about a programming language that's been bouncing around in my head
|
||||||
|
@ -3,6 +3,7 @@ title: >-
|
|||||||
The Web
|
The Web
|
||||||
description: >-
|
description: >-
|
||||||
What is it good for?
|
What is it good for?
|
||||||
|
tags: tech
|
||||||
---
|
---
|
||||||
|
|
||||||
With the recent crisis in the US's democratic process, there's been much abuzz
|
With the recent crisis in the US's democratic process, there's been much abuzz
|
||||||
|
@ -3,6 +3,7 @@ title: >-
|
|||||||
Goodbye, Github Pages
|
Goodbye, Github Pages
|
||||||
description: >-
|
description: >-
|
||||||
This blog is no longer sponsored by Microsoft!
|
This blog is no longer sponsored by Microsoft!
|
||||||
|
tags: tech
|
||||||
---
|
---
|
||||||
|
|
||||||
Slowly but surely I'm working on moving my digital life back to being
|
Slowly but surely I'm working on moving my digital life back to being
|
||||||
|
@ -3,6 +3,7 @@ title: >-
|
|||||||
Building Mobile Nebula
|
Building Mobile Nebula
|
||||||
description: >-
|
description: >-
|
||||||
Getting my hands dirty with Android development.
|
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
|
This post is going to be cheating a bit. I want to start working on adding DNS
|
||||||
|
Loading…
Reference in New Issue
Block a user