diff options
Diffstat (limited to 'data/publications.tsx')
-rw-r--r-- | data/publications.tsx | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/data/publications.tsx b/data/publications.tsx new file mode 100644 index 00000000..099841d8 --- /dev/null +++ b/data/publications.tsx @@ -0,0 +1,28 @@ +type Publications = { + name: string, + url: string, +} + +const Publications : Array<Publication> = [ + { + name: "Buffers, splits and tabs in Vim", + url: "https://medium.com/@msapka/buffers-splits-and-tabs-in-vim-5bb3b6dc1c19" + + }, + { + name: "A month with a disgusting ThinkPad", + url: "https://medium.com/@msapka/a-month-with-a-disgusting-thinkpad-936e7c675a74" + + }, + { + name: "Managing dotfiles with GNU Stow", + url: "https://medium.com/@msapka/managing-dotfiles-with-gnu-stow-72b4e3bb9434" + + }, + { + name: "Adding dynamic DNS to my home server", + url: "https://medium.com/@msapka/adding-dynamic-dns-to-my-home-server-d05bf65358cc" + } +] + +export default Publications |