summaryrefslogtreecommitdiff
path: root/data/publications.tsx
diff options
context:
space:
mode:
authorMichał Sapka <michal@sapka.me>2023-01-02 22:12:38 +0100
committerMichał Sapka <michal@sapka.me>2023-01-02 22:12:38 +0100
commit679e6588d1ef6709f9e579f8ab2fa1b3ad2ac9d8 (patch)
treefe99580d72ae2f8a2b6dd4f97e8009fe616591c0 /data/publications.tsx
parent8b1cecc8f08e8145173c94f6236cf843073a37f4 (diff)
feat: remove old
Diffstat (limited to 'data/publications.tsx')
-rw-r--r--data/publications.tsx38
1 files changed, 0 insertions, 38 deletions
diff --git a/data/publications.tsx b/data/publications.tsx
deleted file mode 100644
index fff0edd..0000000
--- a/data/publications.tsx
+++ /dev/null
@@ -1,38 +0,0 @@
-type Publication = {
- title: string,
- url: string,
- summary: string,
- publishedAt: string,
-}
-
-const Publications : Array<Publication> = [
- {
- title: "Buffers, splits and tabs in Vim",
- url: "https://medium.com/@msapka/buffers-splits-and-tabs-in-vim-5bb3b6dc1c19",
- summary: "",
- publishedAt: "Aug 18, 2022"
-
- },
- {
- title: "A month with a disgusting ThinkPad",
- url: "https://medium.com/@msapka/a-month-with-a-disgusting-thinkpad-936e7c675a74",
- summary: "",
- publishedAt: "Aug 8, 2022",
-
- },
- {
- title: "Managing dotfiles with GNU Stow",
- url: "https://medium.com/@msapka/managing-dotfiles-with-gnu-stow-72b4e3bb9434",
- summary: "",
- publishedAt: "Aug 5, 2022",
-
- },
- {
- title: "Adding dynamic DNS to my home server",
- url: "https://medium.com/@msapka/adding-dynamic-dns-to-my-home-server-d05bf65358cc",
- summary: "",
- publishedAt: "Aug 4, 2022",
- }
-]
-
-export default Publications