aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2020-03-25 06:06:44 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2020-03-25 06:06:44 +0100
commitd3534969bd96f6931c50fb5e6c39569257ff4883 (patch)
treed5d9ded65be06047999a62642e17950ef82f4a72
parentc2cc12278b4bea016c6f73537d99a9b48158898c (diff)
downloadmitjafelicijan.com-d3534969bd96f6931c50fb5e6c39569257ff4883.tar.gz
Cleaned up some content
-rw-r--r--Makefile2
-rw-r--r--content/2015-03-07-curriculum-vitae.md2
-rw-r--r--content/2017-03-07-golang-profiling-simplified.md2
-rw-r--r--content/2017-04-17-what-i-ve-learned-developing-ad-server.md2
-rw-r--r--content/2017-04-21-profiling-python-web-applications-with-visual-tools.md2
-rw-r--r--content/2017-08-11-simple-iot-application.md2
-rw-r--r--content/2018-01-16-using-digitalocean-spaces-object-storage-with-fuse.md2
-rw-r--r--content/2019-01-03-encoding-binary-data-into-dna-sequence.md2
-rw-r--r--content/2019-10-14-simplifying-and-reducing-clutter.md2
-rw-r--r--content/2019-10-19-using-sentiment-analysis-for-click-bait-detection-in-rss-feeds.md2
-rw-r--r--firebase.json27
-rw-r--r--templates/partials/navigation.twig2
12 files changed, 12 insertions, 37 deletions
diff --git a/Makefile b/Makefile
index 642ae7a..7f415c3 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
1dev: 1dev:
2 browser-sync ./public/ -w --no-notify --no-open --extensions=.html 2 browser-sync start --server ./public --watch --no-open --no-notify
3 3
4clean: 4clean:
5 rm -rf public/* 5 rm -rf public/*
diff --git a/content/2015-03-07-curriculum-vitae.md b/content/2015-03-07-curriculum-vitae.md
index 0409c3a..b215b03 100644
--- a/content/2015-03-07-curriculum-vitae.md
+++ b/content/2015-03-07-curriculum-vitae.md
@@ -1,5 +1,5 @@
1~ title: Curriculum Vitae 1~ title: Curriculum Vitae
2~ slug: /curriculum-vitae 2~ slug: /curriculum-vitae.html
3~ date: 2018-01-16 3~ date: 2018-01-16
4~ template: page 4~ template: page
5~ hide: true 5~ hide: true
diff --git a/content/2017-03-07-golang-profiling-simplified.md b/content/2017-03-07-golang-profiling-simplified.md
index 938fd21..d5a9541 100644
--- a/content/2017-03-07-golang-profiling-simplified.md
+++ b/content/2017-03-07-golang-profiling-simplified.md
@@ -1,6 +1,6 @@
1~ title: Golang profiling simplified 1~ title: Golang profiling simplified
2~ description: Golang profiling demystified 2~ description: Golang profiling demystified
3~ slug: /golang-profiling-simplified 3~ slug: /golang-profiling-simplified.html
4~ date: 2017-03-07 4~ date: 2017-03-07
5~ template: post 5~ template: post
6~ hide: false 6~ hide: false
diff --git a/content/2017-04-17-what-i-ve-learned-developing-ad-server.md b/content/2017-04-17-what-i-ve-learned-developing-ad-server.md
index e8e7a29..d5f06b3 100644
--- a/content/2017-04-17-what-i-ve-learned-developing-ad-server.md
+++ b/content/2017-04-17-what-i-ve-learned-developing-ad-server.md
@@ -1,6 +1,6 @@
1~ title: What I've learned developing ad server 1~ title: What I've learned developing ad server
2~ description: Lessons I learned developing contextual ad server 2~ description: Lessons I learned developing contextual ad server
3~ slug: /what-i-ve-learned-developing-ad-server 3~ slug: /what-i-ve-learned-developing-ad-server.html
4~ date: 2017-04-17 4~ date: 2017-04-17
5~ template: post 5~ template: post
6~ hide: false 6~ hide: false
diff --git a/content/2017-04-21-profiling-python-web-applications-with-visual-tools.md b/content/2017-04-21-profiling-python-web-applications-with-visual-tools.md
index 73b48c6..98a1971 100644
--- a/content/2017-04-21-profiling-python-web-applications-with-visual-tools.md
+++ b/content/2017-04-21-profiling-python-web-applications-with-visual-tools.md
@@ -1,6 +1,6 @@
1~ title: Profiling Python web applications with visual tools 1~ title: Profiling Python web applications with visual tools
2~ description: Missing link when debugging and profiling python web application 2~ description: Missing link when debugging and profiling python web application
3~ slug: /profiling-python-web-applications-with-visual-tools 3~ slug: /profiling-python-web-applications-with-visual-tools.html
4~ date: 2017-04-21 4~ date: 2017-04-21
5~ template: post 5~ template: post
6~ hide: false 6~ hide: false
diff --git a/content/2017-08-11-simple-iot-application.md b/content/2017-08-11-simple-iot-application.md
index ae9e362..1b99eb1 100644
--- a/content/2017-08-11-simple-iot-application.md
+++ b/content/2017-08-11-simple-iot-application.md
@@ -1,6 +1,6 @@
1~ title: Simple IOT application supported by real-time monitoring and data history 1~ title: Simple IOT application supported by real-time monitoring and data history
2~ description: Develop simple IOT application with Arduino MKR1000 and Python 2~ description: Develop simple IOT application with Arduino MKR1000 and Python
3~ slug: /simple-iot-application 3~ slug: /simple-iot-application.html
4~ date: 2017-08-11 4~ date: 2017-08-11
5~ template: post 5~ template: post
6~ hide: false 6~ hide: false
diff --git a/content/2018-01-16-using-digitalocean-spaces-object-storage-with-fuse.md b/content/2018-01-16-using-digitalocean-spaces-object-storage-with-fuse.md
index 81194c6..93a167e 100644
--- a/content/2018-01-16-using-digitalocean-spaces-object-storage-with-fuse.md
+++ b/content/2018-01-16-using-digitalocean-spaces-object-storage-with-fuse.md
@@ -1,6 +1,6 @@
1~ title: Using DigitalOcean Spaces Object Storage with FUSE 1~ title: Using DigitalOcean Spaces Object Storage with FUSE
2~ description: Using DigitalOcean Spaces Object Storage with FUSE 2~ description: Using DigitalOcean Spaces Object Storage with FUSE
3~ slug: /using-digitalocean-spaces-object-storage-with-fuse 3~ slug: /using-digitalocean-spaces-object-storage-with-fuse.html
4~ date: 2018-01-16 4~ date: 2018-01-16
5~ template: post 5~ template: post
6~ hide: false 6~ hide: false
diff --git a/content/2019-01-03-encoding-binary-data-into-dna-sequence.md b/content/2019-01-03-encoding-binary-data-into-dna-sequence.md
index 9cd5ed7..335b868 100644
--- a/content/2019-01-03-encoding-binary-data-into-dna-sequence.md
+++ b/content/2019-01-03-encoding-binary-data-into-dna-sequence.md
@@ -1,6 +1,6 @@
1~ title: Encoding binary data into DNA sequence 1~ title: Encoding binary data into DNA sequence
2~ description: Imagine a world where you could go outside and take a leaf from a tree and put it through your ~ personal DNA sequencer and get data like music, videos or computer programs from it 2~ description: Imagine a world where you could go outside and take a leaf from a tree and put it through your ~ personal DNA sequencer and get data like music, videos or computer programs from it
3~ slug: /encoding-binary-data-into-dna-sequence 3~ slug: /encoding-binary-data-into-dna-sequence.html
4~ date: 2019-01-03 4~ date: 2019-01-03
5~ template: post 5~ template: post
6~ hide: false 6~ hide: false
diff --git a/content/2019-10-14-simplifying-and-reducing-clutter.md b/content/2019-10-14-simplifying-and-reducing-clutter.md
index 968b961..580839b 100644
--- a/content/2019-10-14-simplifying-and-reducing-clutter.md
+++ b/content/2019-10-14-simplifying-and-reducing-clutter.md
@@ -1,6 +1,6 @@
1~ title: Simplifying and reducing clutter in my life and work 1~ title: Simplifying and reducing clutter in my life and work
2~ description: Simplifying and reducing clutter in my life and work 2~ description: Simplifying and reducing clutter in my life and work
3~ slug: /simplifying-and-reducing-clutter 3~ slug: /simplifying-and-reducing-clutter.html
4~ date: 2019-10-14 4~ date: 2019-10-14
5~ template: post 5~ template: post
6~ hide: false 6~ hide: false
diff --git a/content/2019-10-19-using-sentiment-analysis-for-click-bait-detection-in-rss-feeds.md b/content/2019-10-19-using-sentiment-analysis-for-click-bait-detection-in-rss-feeds.md
index 58946d6..33e35cb 100644
--- a/content/2019-10-19-using-sentiment-analysis-for-click-bait-detection-in-rss-feeds.md
+++ b/content/2019-10-19-using-sentiment-analysis-for-click-bait-detection-in-rss-feeds.md
@@ -1,6 +1,6 @@
1~ title: Using sentiment analysis for click&#8209;bait detection in RSS feeds 1~ title: Using sentiment analysis for click&#8209;bait detection in RSS feeds
2~ description: Using Python with sentiment analysis to detect if titles in RSS feeds are click-bait 2~ description: Using Python with sentiment analysis to detect if titles in RSS feeds are click-bait
3~ slug: /using-sentiment-analysis-for-click-bait-detection-in-rss-feeds 3~ slug: /using-sentiment-analysis-for-click-bait-detection-in-rss-feeds.html
4~ date: 2019-10-19 4~ date: 2019-10-19
5~ template: post 5~ template: post
6~ hide: false 6~ hide: false
diff --git a/firebase.json b/firebase.json
index 47a26f2..33bfcd9 100644
--- a/firebase.json
+++ b/firebase.json
@@ -11,32 +11,7 @@
11 "redirects": [ 11 "redirects": [
12 { 12 {
13 "source": "/experiments/encoding-binary-data-into-dna-sequence.html", 13 "source": "/experiments/encoding-binary-data-into-dna-sequence.html",
14 "destination": "/encoding-binary-data-into-dna-sequence", 14 "destination": "/encoding-binary-data-into-dna-sequence.html",
15 "type": 301
16 },
17 {
18 "source": "/experiments/using-digitalocean-spaces-object-storage-with-fuse.html",
19 "destination": "/using-digitalocean-spaces-object-storage-with-fuse",
20 "type": 301
21 },
22 {
23 "source": "/experiments/simple-iot-application.html",
24 "destination": "/simple-iot-application",
25 "type": 301
26 },
27 {
28 "source": "/experiments/profiling-python-web-applications-with-visual-tools.html",
29 "destination": "/profiling-python-web-applications-with-visual-tools",
30 "type": 301
31 },
32 {
33 "source": "/notes/what-i-ve-learned-developing-ad-server.html",
34 "destination": "/what-i-ve-learned-developing-ad-server",
35 "type": 301
36 },
37 {
38 "source": "/notes/golang-profiling-simplified.html",
39 "destination": "/golang-profiling-simplified",
40 "type": 301 15 "type": 301
41 } 16 }
42 ] 17 ]
diff --git a/templates/partials/navigation.twig b/templates/partials/navigation.twig
index bb76d2b..cff6152 100644
--- a/templates/partials/navigation.twig
+++ b/templates/partials/navigation.twig
@@ -1,6 +1,6 @@
1<nav> 1<nav>
2 <a href="/">Mitja Felicijan</a> 2 <a href="/">Mitja Felicijan</a>
3 <a href="/curriculum-vitae">CV</a> 3 <a href="/curriculum-vitae.html">CV</a>
4 <a href="https://twitter.com/mitjafelicijan" target="_blank" rel="noopener nofollow">Twitter</a> 4 <a href="https://twitter.com/mitjafelicijan" target="_blank" rel="noopener nofollow">Twitter</a>
5 <a href="https://github.com/mitjafelicijan" target="_blank" rel="noopener nofollow">Github</a> 5 <a href="https://github.com/mitjafelicijan" target="_blank" rel="noopener nofollow">Github</a>
6</nav> 6</nav>