aboutsummaryrefslogtreecommitdiff
path: root/pages
diff options
context:
space:
mode:
authorAdrian Kummerlaender2016-02-10 22:03:14 +0100
committerAdrian Kummerlaender2016-02-10 22:03:14 +0100
commitb392e4a1203b2f9645fce90c66beb30d92eb8e17 (patch)
treedaf22e041291e1a925438a143f5204ec337551d5 /pages
parent2466442409b99db6f1c622abd8c3da54f654dab9 (diff)
downloadblog_content-b392e4a1203b2f9645fce90c66beb30d92eb8e17.tar
blog_content-b392e4a1203b2f9645fce90c66beb30d92eb8e17.tar.gz
blog_content-b392e4a1203b2f9645fce90c66beb30d92eb8e17.tar.bz2
blog_content-b392e4a1203b2f9645fce90c66beb30d92eb8e17.tar.lz
blog_content-b392e4a1203b2f9645fce90c66beb30d92eb8e17.tar.xz
blog_content-b392e4a1203b2f9645fce90c66beb30d92eb8e17.tar.zst
blog_content-b392e4a1203b2f9645fce90c66beb30d92eb8e17.zip
Change static ressource links to `https`
…otherwise various browsers correctly complain about unencrypted ressources if the website is accessed via `https`.
Diffstat (limited to 'pages')
-rw-r--r--pages/contact.md5
-rw-r--r--pages/projects/meta_term.md2
-rw-r--r--pages/projects/simple_parser.md2
3 files changed, 4 insertions, 5 deletions
diff --git a/pages/contact.md b/pages/contact.md
index 88c1050..75661a7 100644
--- a/pages/contact.md
+++ b/pages/contact.md
@@ -1,11 +1,10 @@
# Contact
**eMail:** adrian[at]kummerlaender[dot]eu
-**Public Key:** [key.kummerlaender.eu](http://key.kummerlaender.eu)
+**Public Key:** [key.kummerlaender.eu](https://key.kummerlaender.eu)
**Jabber:** adrian[underscore]kummerlaender[at]jabber[dot]ccc[dot]de
**Github:** [KnairdA](https://github.com/KnairdA)
-**GitLab:** [KnairdA](https://gitlab.com/u/KnairdA)
-**cgit:** [code.kummerlaender.eu](http://code.kummerlaender.eu)
+**cgit:** [code.kummerlaender.eu](https://code.kummerlaender.eu)
Further information about myself may be found on the [about page](/page/about).
diff --git a/pages/projects/meta_term.md b/pages/projects/meta_term.md
index 2ecae00..644bb5c 100644
--- a/pages/projects/meta_term.md
+++ b/pages/projects/meta_term.md
@@ -22,7 +22,7 @@ Furthermore _MetaTerm_'s command mode exposes a JavaScript prompt through `:exec
## Screenshot
-![MetaTerm in action](http://static.kummerlaender.eu/media/metaterm_1.png)
+![MetaTerm in action](https://static.kummerlaender.eu/media/metaterm_1.png)
[Github]: https://github.com/KnairdA/MetaTerm/
[cgit]: http://code.kummerlaender.eu/MetaTerm/
diff --git a/pages/projects/simple_parser.md b/pages/projects/simple_parser.md
index 7129d56..0f3f320 100644
--- a/pages/projects/simple_parser.md
+++ b/pages/projects/simple_parser.md
@@ -17,7 +17,7 @@ This application marks the first steps in C++ I took a couple of years back and
The ability to export the internal binary expression tree resulting from the parsed term as [Graphviz] `dot` is useful for both visualization and debugging purposes. In the following image you can see the depiction of the tree resulting from the arbitrarily chosen term `2.5*(2+3-(3/2+1*(21+11+(5*2))))`:
-![Visualization of the parsed tree using Graphviz](http://static.kummerlaender.eu/media/parser_tree.png)
+![Visualization of the parsed tree using Graphviz](https://static.kummerlaender.eu/media/parser_tree.png)
[Graphviz]: http://www.graphviz.org/
[Github]: https://github.com/KnairdA/SimpleParser/