Fix links
This commit is contained in:
parent
baad0c098a
commit
8079c27301
@ -9,14 +9,14 @@ menu = "main"
|
|||||||
|
|
||||||
About Me
|
About Me
|
||||||
=
|
=
|
||||||
I'm Valentin, an computer science student from Regensburg, Germany. Currently I'm studying at [OTH Regensburg](https://www.oth-regensburg.de/).
|
I'm Valentin, an computer science student from Regensburg, Germany. Currently I'm studying at [OTH Regensburg][1].
|
||||||
|
|
||||||
My interests are mainly in IT security and open source software but also practical cryptography and blockchain based technologies. I also like administrating Linux machines and planing network infrastructures.
|
My interests are mainly in IT security and open source software but also practical cryptography and blockchain based technologies. I also like administrating Linux machines and planing network infrastructures.
|
||||||
In my free time I like to play around with binary analysis and exploiting techniques by solving wargames.
|
In my free time I like to play around with binary analysis and exploiting techniques by solving wargames.
|
||||||
|
|
||||||
I'm coding since ~2010.
|
I'm coding since ~2010.
|
||||||
|
|
||||||
Currently working at [EBSnet](http://ebsnet.de/).
|
Currently working at [EBSnet][2].
|
||||||
|
|
||||||
Skills
|
Skills
|
||||||
=
|
=
|
||||||
@ -31,13 +31,25 @@ Skills
|
|||||||
|
|
||||||
System/Tools
|
System/Tools
|
||||||
=
|
=
|
||||||
* OS: [Arch Linux](https://archlinux.org)
|
* OS: [Arch Linux][3]
|
||||||
* WM: [i3wm](https://i3wm.org/)
|
* WM: [i3wm][4]
|
||||||
* Editor: [Vim](http://www.vim.org)
|
* Editor: [Vim][5]
|
||||||
* Shell: [Zsh](https://www.zsh.org/) with [oh-my-zsh](https://github.com/robbyrussell/oh-my-zsh) and [antigen](http://antigen.sharats.me/) in [tmux](https://tmux.github.io/)
|
* Shell: [Zsh][6] with [oh-my-zsh][7] and [antigen][8] in [tmux][9]
|
||||||
|
|
||||||
Also refer to my [dotfiles](https://github.com/vbrandl/dotfiles)
|
Also refer to my [dotfiles][10]
|
||||||
|
|
||||||
GitHub
|
GitHub
|
||||||
=
|
=
|
||||||
Visit [my GitHub profile](https://github.com/vbrandl).
|
Visit [my GitHub profile][11].
|
||||||
|
|
||||||
|
[1]: https://www.oth-regensburg.de/
|
||||||
|
[2]: http://ebsnet.de/
|
||||||
|
[3]: https://archlinux.org
|
||||||
|
[4]: https://i3wm.org/
|
||||||
|
[5]: http://www.vim.org
|
||||||
|
[6]: https://www.zsh.org/
|
||||||
|
[7]: https://github.com/robbyrussell/oh-my-zsh
|
||||||
|
[8]: http://antigen.sharats.me/
|
||||||
|
[9]: https://tmux.github.io/
|
||||||
|
[10]: https://github.com/vbrandl/dotfiles
|
||||||
|
[11]: https://github.com/vbrandl
|
||||||
|
@ -17,23 +17,22 @@ I created this website to give an overview about my person and the projects I'm
|
|||||||
|
|
||||||
Setup
|
Setup
|
||||||
=
|
=
|
||||||
This website is generated by the static website generator [Hugo][1] using the awesome [After Dark theme][2]. I track the source files of the website in a [GitHub repository][3]. Everything is written using the [Vim][4] text editor. The web server is a [nginx server][5] running on my own dedicated server from [Kimsufi][6] and does not log the visitors IP address (I **do** write access logs but I will never log IP addresses).
|
This website is generated by the static website generator [Hugo][1] using the awesome [After Dark theme][2]. I track the source files of the website in a [GitHub repository][3]. The web server is a [nginx server][5] running on my own dedicated server from [Kimsufi][6] and does not log the visitors IP address (I **do** write access logs but I will never log IP addresses).
|
||||||
|
|
||||||
I chose a static site generator over a CMS like WordPress because plain markdown files are easier to manage e.g. using git in contrast to WordPress posts being stored somewhere deep in a database. Also have a look at the [WordPress release notes][7]. Hugo generates static HTML files which are served through nginx, so there are no security risks.
|
I chose a static site generator over a CMS like WordPress because plain markdown files are easier to manage e.g. using git in contrast to WordPress posts being stored somewhere deep in a database. Also have a look at the [WordPress release notes][7]. Hugo generates static HTML files which are served through nginx, so there are no security risks.
|
||||||
|
|
||||||
The web server forces you to use a TLS encrypted connection using HTTP/2, therefore I used [Let's Encrypt][8] to get a free certificate (you might want to check out my awesome [SSL rating][9]).
|
The web server forces you to use a TLS encrypted connection using HTTP/2, therefore I used [Let's Encrypt][8] to get a free certificate (you might want to check out my awesome [SSL rating][9]).
|
||||||
|
|
||||||
All posts are written using [Vim][10] with some plugins. My Vim configuration can be seen in my [dotfile repository][11].
|
All posts are written using [Vim][4] with some plugins. My Vim configuration can be seen in my [dotfile repository][10].
|
||||||
|
|
||||||
|
|
||||||
[1]: https://gohugo.io/
|
[1]: https://gohugo.io/
|
||||||
[2]: https://github.com/comfusion/after-dark
|
[2]: https://github.com/comfusion/after-dark
|
||||||
[3]: https://github.com/vbrandl/vbrandl.net
|
[3]: https://github.com/vbrandl/vbrandl.net
|
||||||
[4]: http://vim.org
|
[4]: http://www.vim.org
|
||||||
[5]: https://nginx.org/
|
[5]: https://nginx.org/
|
||||||
[6]: https://www.kimsufi.com/
|
[6]: https://www.kimsufi.com/
|
||||||
[7]: https://wordpress.org/news/category/releases/
|
[7]: https://wordpress.org/news/category/releases/
|
||||||
[8]: https://letsencrypt.org/
|
[8]: https://letsencrypt.org/
|
||||||
[9]: https://www.ssllabs.com/ssltest/analyze.html?d=www.vbrandl.net
|
[9]: https://www.ssllabs.com/ssltest/analyze.html?d=www.vbrandl.net
|
||||||
[10]: http://www.vim.org/
|
[10]: https://github.com/vbrandl/dotfiles/tree/master/editors/vim/
|
||||||
[11]: https://github.com/vbrandl/dotfiles/tree/master/editors/vim/
|
|
||||||
|
Loading…
Reference in New Issue
Block a user