From 61e864fdc93eb806aac2ac387a496fd977f0660b Mon Sep 17 00:00:00 2001 From: Vri Date: Sun, 10 Apr 2022 13:08:30 +0200 Subject: [PATCH] update 2 --- NOTES.md | 4 ++ content/_index.md | 14 ++++ content/portfolio/_index.html | 1 + content/singlepage/blogroll/_index.md | 13 ++++ content/singlepage/datenschutz/_index.md | 51 ++++++++++++++ content/singlepage/gpg/_index.md | 21 ++++++ content/singlepage/kenntnisse/index.md | 22 ++++++ .../singlepage/projectsold/_draft/_index.md | 5 ++ .../projectsold/_draft/cozy.town.md | 15 +++++ .../singlepage/projectsold/_draft/cursors.md | 20 ++++++ .../projectsold/_draft/gitea-theme-2018.md | 16 +++++ .../projectsold/_draft/gitea-theme.md | 23 +++++++ .../singlepage/projectsold/_draft/mmm-dark.md | 15 +++++ .../_draft/mumble-theme-supidark.md | 15 +++++ .../projectsold/_draft/my-website.md | 19 ++++++ .../singlepage/projectsold/_draft/natenom.md | 38 +++++++++++ .../projectsold/_draft/omega-for-mumble.md | 20 ++++++ .../projectsold/_draft/simpleblog.md | 16 +++++ content/singlepage/projekte/_index.md | 67 +++++++++++++++++++ content/singlepage/über/_index.md | 25 +++++++ 20 files changed, 420 insertions(+) create mode 100644 NOTES.md create mode 100644 content/_index.md create mode 100644 content/portfolio/_index.html create mode 100644 content/singlepage/blogroll/_index.md create mode 100644 content/singlepage/datenschutz/_index.md create mode 100644 content/singlepage/gpg/_index.md create mode 100644 content/singlepage/kenntnisse/index.md create mode 100644 content/singlepage/projectsold/_draft/_index.md create mode 100644 content/singlepage/projectsold/_draft/cozy.town.md create mode 100644 content/singlepage/projectsold/_draft/cursors.md create mode 100644 content/singlepage/projectsold/_draft/gitea-theme-2018.md create mode 100644 content/singlepage/projectsold/_draft/gitea-theme.md create mode 100644 content/singlepage/projectsold/_draft/mmm-dark.md create mode 100644 content/singlepage/projectsold/_draft/mumble-theme-supidark.md create mode 100644 content/singlepage/projectsold/_draft/my-website.md create mode 100644 content/singlepage/projectsold/_draft/natenom.md create mode 100644 content/singlepage/projectsold/_draft/omega-for-mumble.md create mode 100644 content/singlepage/projectsold/_draft/simpleblog.md create mode 100644 content/singlepage/projekte/_index.md create mode 100644 content/singlepage/über/_index.md diff --git a/NOTES.md b/NOTES.md new file mode 100644 index 0000000..7a21947 --- /dev/null +++ b/NOTES.md @@ -0,0 +1,4 @@ + * magick convert image.img -strip -interlace Plane -quality 85% image.img + * magick convert *.jpg -strip -interlace Plane -quality 85% -resize 720x9999 *_720w.jpg + * magick convert *.png -strip -resize 720x *_720x.png + * pngcrush input.png output.png diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..b2c232e --- /dev/null +++ b/content/_index.md @@ -0,0 +1,14 @@ +--- +title: "Über Vri" +--- + +# Vris Atelier {#intro-heading} + +**Grafik.** +Vektorgrafiken setzen und Rastergrafiken pixeln. + +**Gestaltung.** +Webseiten entwerfen, umsetzen und optimieren. + +**Infrastruktur.** +Server und Dienste aufsetzen, absichern und betreiben. diff --git a/content/portfolio/_index.html b/content/portfolio/_index.html new file mode 100644 index 0000000..345e6ae --- /dev/null +++ b/content/portfolio/_index.html @@ -0,0 +1 @@ +Test diff --git a/content/singlepage/blogroll/_index.md b/content/singlepage/blogroll/_index.md new file mode 100644 index 0000000..8934b3a --- /dev/null +++ b/content/singlepage/blogroll/_index.md @@ -0,0 +1,13 @@ +--- +title: "Blogroll" +date: 2021-03-02T20:31:00+02:00 +type: singlepage +--- + +Blogs, die ich mag, regelmäßig lese und entsprechend empfehlen kann. In alphabetischer Reihenfolge. + +- [Beyond The Automobile](https://beyondtheautomobile.com/) *en; mobility* +- [Bicycle Dutch](https://bicycledutch.wordpress.com/) *en; mobility* +- [Kuketz IT-Security Blog](https://www.kuketz-blog.de/) *de; tech, privacy* +- [Low Tech Magazine](https://solar.lowtechmagazine.com/) *en; environment, tech* +- [Natenoms Blog](https://blog.natenom.com/) *de; log, mobility, tech, …* diff --git a/content/singlepage/datenschutz/_index.md b/content/singlepage/datenschutz/_index.md new file mode 100644 index 0000000..9499466 --- /dev/null +++ b/content/singlepage/datenschutz/_index.md @@ -0,0 +1,51 @@ +--- +date: 2021-05-15T11:45:00+02:00 +title: "Privacy Policy" +type: singlepage +--- + +This privacy policy applies to [vrifox.cc](//vrifox.cc). + +# What data do I store and process? + + - ip address ([anonymized](#anonymized-ips)) + - time of request + - requested url + - accessed file + +This data is collected by nginx in log files. The data will not be given to any third party and deleted after three (3) days automatically. + +## Anonymized IPs + +Taken from [Ascraues Privacy Policy](https://ascraeus.org/page/privacy/) and modified: + +``` + map $remote_addr $anon_remote_addr { + ~(?P\d+\.\d+)\. $ip.0.0; + ~(?P[^:]+:[^:]+): $ip::; + default 0.0.0.0; + } + + log_format privacy '$anon_remote_addr [$time_local] ' + '"$request" $status $bytes_sent '; + + access_log /var/log/nginx/access.log privacy; +``` + +## No User Agent and Referrer + +At least for now I don't need it for debugging purposes. This may change in the future. + +I used a custom [log_format](#anonymized-ips) to achieve this. + +## No Cookies + +Cookies will not be set on these sites. I configured [nginx](https://nginx.org) to drop the header „Set-Cookie“ `proxy_hide_header Set-Cookie;`. + +## No Tracking and Analytics + +I don't track you, I don't collect data for analytics, I have no use for it. And I don't want to be tracked or analyzed either. + +# Credits + +This privacy policy was inspired by [Natenoms Datenschutz[-erklärung]](https://blog.natenom.com/datenschutz/). diff --git a/content/singlepage/gpg/_index.md b/content/singlepage/gpg/_index.md new file mode 100644 index 0000000..b71d595 --- /dev/null +++ b/content/singlepage/gpg/_index.md @@ -0,0 +1,21 @@ +--- +date: 2020-11-09T18:52:58+02:00 +title: "GPG" +type: singlepage + +aliases: + - /pgp/ +--- + +Verwende gerne meinen [öffentlichen GPG-Schlüssel](/gpg.pub) um mir verschlüsselte E-Mails zu schicken. + +## E-Mail-Adresse + +[vrifox@vrifox.cc](mailto:vrifox@vrifox.cc) + +## Fingerprint + +``` +413C 73F0 C5BD 6318 826A +42D9 D400 98E5 B60B 2197 +``` diff --git a/content/singlepage/kenntnisse/index.md b/content/singlepage/kenntnisse/index.md new file mode 100644 index 0000000..5f4f0e5 --- /dev/null +++ b/content/singlepage/kenntnisse/index.md @@ -0,0 +1,22 @@ +--- +title: Kenntnisse +--- + +## Grafik +- Inkscape + +## Webgestaltung/-entwicklung +- HTML +- CSS +- hugo + +## Serverbetrieb +- Debian +- Arch (Zuhause) +- Matrix Synapse +- nginx +- tt-rss +- Gitea + +## Netzwerk +- Freifunk diff --git a/content/singlepage/projectsold/_draft/_index.md b/content/singlepage/projectsold/_draft/_index.md new file mode 100644 index 0000000..d99b114 --- /dev/null +++ b/content/singlepage/projectsold/_draft/_index.md @@ -0,0 +1,5 @@ +--- +title: "projects" +heading: "projects" +subheading: "" +--- diff --git a/content/singlepage/projectsold/_draft/cozy.town.md b/content/singlepage/projectsold/_draft/cozy.town.md new file mode 100644 index 0000000..0f9bd55 --- /dev/null +++ b/content/singlepage/projectsold/_draft/cozy.town.md @@ -0,0 +1,15 @@ +--- +title: "cozy.town" +date: 2021-01-06T12:00:00+02:00 +activetime: "2021" +categories: +tags: + +draft: false +type: "project" +status: "in progress" +description: "Where I am hosting some services. For now mostly alone." +--- +To make my hosted services more independent from myself I created [cozy.town](https://cozy.town). + +The source code can be found on [code.cozy.town](https://code.cozy.town/cozy.town/). diff --git a/content/singlepage/projectsold/_draft/cursors.md b/content/singlepage/projectsold/_draft/cursors.md new file mode 100644 index 0000000..22c3cd3 --- /dev/null +++ b/content/singlepage/projectsold/_draft/cursors.md @@ -0,0 +1,20 @@ +--- +title: "cursors" +date: 2013-07-06T12:00:00+02:00 +activetime: "2013" +categories: +tags: + - graphics + - cursor + +draft: false +type: "project" +status: "archived" +description: "„cursors“ is an OSX-inspired cursor-set." +--- + +„cursors“ is an OSX-inspired cursor-set. + +[How they look](/upload/2020-09-23%20cursors%202013-0706.png) + +The source code can be found on [code.cozy.town](https://code.cozy.town/vrifox/cursors). diff --git a/content/singlepage/projectsold/_draft/gitea-theme-2018.md b/content/singlepage/projectsold/_draft/gitea-theme-2018.md new file mode 100644 index 0000000..bfd7cb7 --- /dev/null +++ b/content/singlepage/projectsold/_draft/gitea-theme-2018.md @@ -0,0 +1,16 @@ +--- +title: "gitea theme 2018" +date: 2019-06-09T12:00:00+02:00 +activetime: "2018 - 2019" +featured_image: "/upload/2020/01/gitea-theme_720x.png" +categories: +tags: + - git + - theme + +draft: true +type: "project" +status: "archived" +description: "My old gitea theme." +--- +My old gitea theme. diff --git a/content/singlepage/projectsold/_draft/gitea-theme.md b/content/singlepage/projectsold/_draft/gitea-theme.md new file mode 100644 index 0000000..8b08617 --- /dev/null +++ b/content/singlepage/projectsold/_draft/gitea-theme.md @@ -0,0 +1,23 @@ +--- +title: "gitea theme" +date: 2020-09-30T12:00:00+02:00 +activetime: "2020 - now" +categories: +tags: + - git + - theme + +draft: false +type: "project" +status: "in progress" +description: "Gitea theme(s) I've created." +--- +My current gitea theme. Work in progress. + +[A screenshot of git.vrifox.cc from september 29th 2020](/upload/2020-09-29%20git.vrifox.cc%202020-09.jpg) + +The source code can be found on [code.cozy.town](https://code.cozy.town/vrifox/gitea-theme). + +# 2018 + +I've created a gitea theme before in 2018. It's still available on my git if you're interested: [gitea theme 2018](https://code.cozy.town/vrifox/gitea-theme/src/branch/main/_legacy/2019-06-09%20gitea-theme-by-vrifox). diff --git a/content/singlepage/projectsold/_draft/mmm-dark.md b/content/singlepage/projectsold/_draft/mmm-dark.md new file mode 100644 index 0000000..6692f5b --- /dev/null +++ b/content/singlepage/projectsold/_draft/mmm-dark.md @@ -0,0 +1,15 @@ +--- +title: "mmm dark" +date: 2017-01-01T12:00:00+02:00 +activetime: "2017" +featured_image: "/upload/2020/01/mmm-dark-mumble-theme_720x.png" +categories: +tags: + - theme + - mumble + +draft: true +type: "project" +status: "archived" +description: "" +--- diff --git a/content/singlepage/projectsold/_draft/mumble-theme-supidark.md b/content/singlepage/projectsold/_draft/mumble-theme-supidark.md new file mode 100644 index 0000000..cb9ea1b --- /dev/null +++ b/content/singlepage/projectsold/_draft/mumble-theme-supidark.md @@ -0,0 +1,15 @@ +--- +title: "Mumble Theme Supidark" +date: 2019-10-18T12:00:00+02:00 +activetime: "2018 - 2019" +featured_image: +categories: +tags: + - theme + - mumble + +draft: true +type: "project" +status: "active" +description: "" +--- diff --git a/content/singlepage/projectsold/_draft/my-website.md b/content/singlepage/projectsold/_draft/my-website.md new file mode 100644 index 0000000..e93a561 --- /dev/null +++ b/content/singlepage/projectsold/_draft/my-website.md @@ -0,0 +1,19 @@ +--- +title: "my website" +date: 2020-10-01T00:00:00+02:00 +activetime: "2008 - now" +categories: +tags: + - website + +draft: false +type: "project" +status: "in progress" +link: +description: "My website – the thing you're looking at this very moment." +--- +My website; currently made with [hugo](https://gohugo.io/). + +[How this website looked in september 2020](/upload/2020-09-23%20vrifox.cc%202020-09.jpg) + +The source code can be found on [code.cozy.town](https://code.cozy.town/vrifox/vrifox.cc). diff --git a/content/singlepage/projectsold/_draft/natenom.md b/content/singlepage/projectsold/_draft/natenom.md new file mode 100644 index 0000000..d82a6af --- /dev/null +++ b/content/singlepage/projectsold/_draft/natenom.md @@ -0,0 +1,38 @@ +--- +title: "natenom" +date: 2020-08-20T12:00:00+02:00 +activetime: "2015 - now" +description: +categories: +tags: + - website + - blog + - graphics + - logo + +draft: false +type: "project" +status: "in progress" +link: +description: "I do serveral stuff for and with Natenom." +--- + +# logo and graphics + +In 2015 I created a [new logo](https://blog.natenom.com/2015/05/neues-logo-fuer-natenom/) for Natenom. + +And since than I do some random [graphics](https://blog.natenom.com/pixelart_icons/). + +# blog + +Also since 2015 I'm responsible for the design of [Natenoms blog](https://blog.natenom.com). I fix bugs related to wordpress themes and also changed the general design to a dark scheme. + +Other than that I also check the spelling and understandability. + +# global header + +On every page is a »global header« where you can reach the most important links – I created and maintain it. + +# source + +The source code can be found on [code.cozy.town](https://code.cozy.town/vrifox/natenom-websites) diff --git a/content/singlepage/projectsold/_draft/omega-for-mumble.md b/content/singlepage/projectsold/_draft/omega-for-mumble.md new file mode 100644 index 0000000..773e88e --- /dev/null +++ b/content/singlepage/projectsold/_draft/omega-for-mumble.md @@ -0,0 +1,20 @@ +--- +title: "omega for mumble" +date: 2016-05-24T12:00:00+02:00 +activetime: "2014 - 2016" +categories: +tags: + - theme + - mumble + +draft: false +type: "project" +status: "archived" +description: "A simple & beautified theme for mumble." +--- + +„omega-for-mumble“ is a simple & beautified skin / theme designed for the open-source and high quality voice-chat software mumble. + +[A screenshot of omega-for-mumble](/upload/2020-09-23%20omega-for-mumble%20theme.jpg) + +The source code can be found on [code.cozy.town](https://code.cozy.town/vrifox/omega-for-mumble). diff --git a/content/singlepage/projectsold/_draft/simpleblog.md b/content/singlepage/projectsold/_draft/simpleblog.md new file mode 100644 index 0000000..4110c91 --- /dev/null +++ b/content/singlepage/projectsold/_draft/simpleblog.md @@ -0,0 +1,16 @@ +--- +title: "simpleblog" +date: 2015-09-29T12:00:00+02:00 +activetime: "2015" +featured_image: "/upload/2020/09/simpleblog.png" +description: +categories: +tags: + +draft: true +type: "project" +status: "archived" +link: +description: "A never finished idea." +--- +A never finished idea. diff --git a/content/singlepage/projekte/_index.md b/content/singlepage/projekte/_index.md new file mode 100644 index 0000000..f001827 --- /dev/null +++ b/content/singlepage/projekte/_index.md @@ -0,0 +1,67 @@ +--- +title: "Projekte" +translationKey: "projects" +date: 2021-03-07T12:13:56+02:00 +type: singlepage +--- + +Einige der Projekte, die ich über die letzten Jahre begonnen habe. + +## Meine Seite +Jahrelang **(circa seit 2008)** habe ich ausschließlich HTML und CSS für die Erstellung meiner Webseiten genutzt, da ich es als Betrug meiner Selbst ansah etwas anderes zu verwenden. Doch **2020** habe ich realisiert, dass ich sogar noch einiges lernen und mehr erreichen kann, wenn ich einen sogenannten Static Site Generator verwende. Also habe ich meine Webseite mithilfe von [Hugo](https://gohugo.io) neu geschrieben. + +Im **März 2021** habe ich meine Seite abermals überarbeitet, um sie minimalistischer und letztlich kompatibel zu [Gemini](https://gemini.circumlunar.space/) machen. + +Aktuell **(März 2021)** denke ich darüber nach, meine Seite nochmal neu zu schreiben aber diesmal mit einem eigenen Static Site Generator. Das wird aber noch eine ganze Weile dauern, da ich erstmal Python lernen muss. :) + +[Wie diese Webseite im September 2020 aussah](/upload/2020-09-23%20vrifox.cc%202020-09.jpg). + +[Der Quellcode dieser Seite liegt auf code.cozy.town](https://code.cozy.town/vrifox/vrifox.cc). + +**Verwendete Programme:** [Hugo](https://gohugo.io/) + +## gitea theme +I use dark themes daily and gitea has one, but the contrast is pretty low, which makes reading texts very hard. So I started to create my own dark theme in **late september 2020**. + +The last time I modified it was on the last day of 2020, because I read so many interesting and inspiring articles about minimalism in tech. One of my next projects will be to find a suitable alternative and then – well – use it! :) + +I've created a gitea theme before, back in **2018**. It's [still available on code.cozy.town](https://code.cozy.town/vrifox/gitea-theme/src/branch/main/_legacy/2019-06-09%20gitea-theme-by-vrifox) if you're interested. + +[A screenshot of git.vrifox.cc from 29 september 2020](/upload/2020-09-29%20git.vrifox.cc%202020-09.jpg) + +[The source code can be found on code.cozy.town](https://code.cozy.town/vrifox/gitea-theme). + +**Tools used:** SCSS + +## Dinge für Natenom +In **2015** I created a [new logo](https://blog.natenom.com/2015/05/neues-logo-fuer-natenom/) for Natenom. And since than I do some random [graphics](https://blog.natenom.com/pixelart_icons/). + +Also since **2015** I'm responsible for the design of [Natenoms blog](https://blog.natenom.com). I fix bugs related to wordpress themes and also changed the general design to a dark scheme. Other than that I also check the spelling and understandability. + +On every page is a so called *„global top bar“* where you can reach the most important links – I created and maintain it. + +In **2020** I helped natenom with his [new static website](https://www.natenom.com/). + +[The source code can be found on code.cozy.town](https://code.cozy.town/vrifox/natenom-websites). + +**Tools used:** HTML, Inkscape, SCSS + +## omega-for-mumble +*„omega-for-mumble“ is a simple & beautified skin / theme designed for the open-source and high quality voice-chat software mumble.* + +I have created it in **2015**. It was neither my first nor last mumble theme to be honest. + +[A screenshot of omega-for-mumble](/upload/2020-09-23%20omega-for-mumble%20theme.jpg). + +[The source code can be found on code.cozy.town](https://code.cozy.town/vrifox/omega-for-mumble). + +**Tools used:** SCSS and some QT tools. + +## cursors +„cursors“ is an OSX inspired cursor set I've created in **2013**. + +[How the cursors actually look like](/upload/2020-09-23%20cursors%202013-0706.png). + +[The source can be found on code.cozy.town](https://code.cozy.town/vrifox/cursors). + +**Tools used:** I don't remember actually diff --git a/content/singlepage/über/_index.md b/content/singlepage/über/_index.md new file mode 100644 index 0000000..faa16ce --- /dev/null +++ b/content/singlepage/über/_index.md @@ -0,0 +1,25 @@ +--- +title: "Über Vri" +--- + +Hola, ich bin Vri 🙂 + +Ich liebe es **Vektorgrafiken** zu entwerfen, **Pixelgrafiken** bis ins letzte Detail auszuklügeln und **Webseiten** zu erschaffen und zu optimieren. +Außerdem habe ich schon seit ich mich erinnern kann eine Faszination für **Bewegtbild**, speziell handgemachte **Animationen**, die ich schon viel zu lange vernachlässigt habe. + +Zusammen mit ein paar Freunden administriere ich [Cozy Town](//cozy.town) und lerne so Tag für Tag ein wenig mehr. + +## Kontakt + +**Pronomen:** sie/ihr (dey/demm) + +| | | +| ------------: | -------------------------------------------------------------------- | +| **Matrix** | [@vri:cozy.town](//matrix.to/#/@vri:cozy.town) | +| **XMPP** | [vri@cozy.town](xmpp:vri@cozy.town) | +| **E-Mail** | [vrifox@vrifox.cc](mailto:vrifox@vrifox.cc) · [gpg](/gpg) | +| **Fedi** | @vrifox@soc.zom.bi | + +--- + +
Mit 🌈 und hugo erstellt.