blob: b764957501b94c0931511bcf1925b8400b4db181 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
type Publication = {
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
|