diff options
author | Vincent Ambo <tazjin@google.com> | 2020-02-08T13·47+0000 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2020-02-08T13·47+0000 |
commit | 8e9fb739582b5ed871522826ea145f4a9dac2777 (patch) | |
tree | eb6b58fc4f68f2943b30a218040cdf019b26a776 /web/blog/posts.nix | |
parent | cc2c130352eddb78c8b690320f0a765bb77b5bf6 (diff) |
refactor(web/blog): Use timestamps for dates instead of strings r/486
This lets me easily create an ordered list of entries if the homepage is designed to list both blog posts and other content.
Diffstat (limited to 'web/blog/posts.nix')
-rw-r--r-- | web/blog/posts.nix | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/web/blog/posts.nix b/web/blog/posts.nix index e6fb821f959f..164ffa142d5b 100644 --- a/web/blog/posts.nix +++ b/web/blog/posts.nix @@ -3,35 +3,35 @@ { key = "reversing-watchguard-vpn"; title = "Reverse-engineering WatchGuard Mobile VPN"; - date = "2017-02-11"; + date = 1486830338; content = ./posts/reversing-watchguard-vpn.md; oldKey = "1486830338"; } { key = "make-object-t-again"; title = "Make Object <T> Again!"; - date = "2016-10-18"; + date = 1476807384; content = ./posts/make-object-t-again.md; oldKey = "1476807384"; } { key = "the-smu-problem"; title = "The SMU-problem of messaging apps"; - date = "2015-12-17"; + date = 1450354078; content =./posts/the-smu-problem.md; oldKey = "1450354078"; } { key = "sick-in-sweden"; title = "Being sick in Sweden"; - date = "2015-02-15"; + date = 1423995834; content = ./posts/sick-in-sweden.md; oldKey = "1423995834"; } { key = "nsa-zettabytes"; title = "The NSA's 5 zettabytes of data"; - date = "2013-07-31"; + date = 1375310627; content = ./posts/nsa-zettabytes.md; oldKey = "1375310627"; } |