From 790d38fea89a0f49d3d417409b6170df3075208b Mon Sep 17 00:00:00 2001 From: konsthol Date: Thu, 19 Dec 2024 15:07:08 +0200 Subject: [PATCH] oops - thought I got that one. --- css/style.css | 177 ++++++++++++++++++++++++++++++-------------------- gophermap | 83 +++++++---------------- index.gmi | 50 +++++++------- index.html | 80 ++++++++--------------- 4 files changed, 178 insertions(+), 212 deletions(-) diff --git a/css/style.css b/css/style.css index 8f43bce..fc64a0d 100644 --- a/css/style.css +++ b/css/style.css @@ -1,4 +1,5 @@ @import url("colors.css"); + @font-face { font-family: 'Comic Mono'; src: url('/fonts/ComicMono.ttf') format('truetype'), @@ -6,125 +7,157 @@ url("/fonts/ComicMono.ttf") format("truetype"); font-weight: 400; font-style: normal; } + body { - font-family: "Comic Mono", monospace; - font-size: 1.1em; - background-color: var(--background); - color: var(--foreground); - word-wrap: break-word; /* maybe only to p since the donate page was the culprit */ + font-family: "Comic Mono", monospace; + font-size: 1.1em; + background-color: var(--background); + color: var(--foreground); + word-wrap: break-word; /* maybe only to p since the donate page was the culprit */ } + p { - text-align: start; /* text-align: justify; */ - overflow: auto; - /* text-justify: inter-word; */ - line-height: 1.4em; + text-align: start; /* text-align: justify; */ + overflow: auto; + /* text-justify: inter-word; */ + line-height: 1.4em; } + em { - font-family: "Comic Mono", monospace; + font-family: "Comic Mono", monospace; } + h1,h2,h3 { - font-size: 1.1em; + font-size: 1.1em; } + h1 { - color: var(--color4); - text-align: center; + color: var(--color4); + text-align: center; } + h2 { - color: var(--color6); + color: var(--color6); } + h3 { - color: var(--color5); + color: var(--color5); } + h1:before { - content: "# "; + content: "# "; } + h2:before { - content: "## "; + content: "## "; } + h3:before { - content: "### "; + content: "### "; } + section { - width: 50%; - margin: 5em auto 0% auto; + width: 50%; + margin: 5em auto 0% auto; } + blockquote { - text-align: center; - margin:0 auto; - width:auto; - display:table + text-align: center; + margin:0 auto; + width:auto; + display:table } + pre { - white-space: pre-wrap; /* css-3 */ - white-space: -moz-pre-wrap; /* Mozilla, since 1999 */ - white-space: -pre-wrap; /* Opera 4-6 */ - white-space: -o-pre-wrap; /* Opera 7 */ - word-wrap: break-word; /* Internet Explorer 5.5+ */ + white-space: pre-wrap; /* css-3 */ + white-space: -moz-pre-wrap; /* Mozilla, since 1999 */ + white-space: -pre-wrap; /* Opera 4-6 */ + white-space: -o-pre-wrap; /* Opera 7 */ + word-wrap: break-word; /* Internet Explorer 5.5+ */ } + code, pre { - font-family: "Comic Mono", monospace; - font-size: 1.0em; - color: var(--color1); - text-align: center + font-family: "Comic Mono", monospace; + font-size: 1.0em; + color: var(--color1); + text-align: center } + a { - font-size: .8em - display: inline-block; - text-align: left; - text-justify: none; - color: var(--color10); - text-decoration: none; + font-size: .8em + display: inline-block; + text-align: left; + text-justify: none; + color: var(--color10); + text-decoration: none; } + section a:before { - content: "=> 🌍 "; + content: "=> 🌍 "; } + section a.gem:before { - content: "=> πŸ’Ž "; + content: "=> πŸ’Ž "; } + footer a:before { - content: ""; + content: ""; } + a:hover { - transition: background-color 0.1s, color 1.1s; - background-color: var(--color9); - color: var(--background); + transition: background-color 0.1s, color 1.1s; + background-color: var(--color9); + color: var(--background); } + span#url { - display: inline-block; - width: 27em; + display: inline-block; + width: 27em; } + span#name { - color: var(--color9); - font-style: italic; + color: var(--color9); + font-style: italic; } + button#mybtn { -color: var(--color15); -background-color: var(--color0); -font-family: "Comic Mono", monospace; -font-size: 1em; -border: 2px solid var(--color3); + color: var(--color15); + background-color: var(--color0); + font-family: "Comic Mono", monospace; + font-size: 1em; + border: 2px solid var(--color3); } + button#mybtn:hover { - transition: background-color 0.1s, color 1.1s; - background-color: var(--color9); - color: var(--background); - font-family: "Comic Mono", monospace; - font-size: 1em; + transition: background-color 0.1s, color 1.1s; + background-color: var(--color9); + color: var(--background); + font-family: "Comic Mono", monospace; + font-size: 1em; } + footer a#gemyo img { - image-rendering: optimizeSpeed; - image-rendering: -moz-crisp-edges; - image-rendering: -o-crisp-edges; - image-rendering: -webkit-optimize-contrast; - image-rendering: optimize-contrast; - image-rendering: crisp-edges; - image-rendering: pixelated; - width: 170px; - display: block; - margin: 3em auto 0em auto; + image-rendering: optimizeSpeed; + image-rendering: -moz-crisp-edges; + image-rendering: -o-crisp-edges; + image-rendering: -webkit-optimize-contrast; + image-rendering: optimize-contrast; + image-rendering: crisp-edges; + image-rendering: pixelated; + width: 170px; + display: block; + margin: 3em auto 0em auto; } + @media screen and (max-width: 1600px) { - section { - width: 80%; - } + section { + width: 80%; + } +} + +/* Adjust font size for small screens */ +@media (max-width: 1300px) { + pre code { + display: none; + } } diff --git a/gophermap b/gophermap index 630d877..4bfe0cb 100644 --- a/gophermap +++ b/gophermap @@ -1,22 +1,17 @@ i``` konsthol.eu 70 -i ________ konsthol.eu 70 -i( Gemini ) konsthol.eu 70 -i -------- konsthol.eu 70 -i o konsthol.eu 70 -i o konsthol.eu 70 -i .--. konsthol.eu 70 -i |o_o | konsthol.eu 70 -i |:_/ | konsthol.eu 70 -i // \ \ konsthol.eu 70 -i (| | ) konsthol.eu 70 -i /'\_ _/`\ konsthol.eu 70 -i \___)=(___/ konsthol.eu 70 -i konsthol.eu 70 -i``` konsthol.eu 70 i konsthol.eu 70 -i# My Gemini Capsule konsthol.eu 70 +iβ–ˆβ–ˆβ•— β–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ•—β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ•— β–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ•— β–ˆβ–ˆβ•— konsthol.eu 70 +iβ–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•”β•β–ˆβ–ˆβ•”β•β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•”β•β•β•β•β•β•šβ•β•β–ˆβ–ˆβ•”β•β•β•β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•”β•β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•”β•β•β•β•β•β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•‘ konsthol.eu 70 +iβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•”β• β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•”β–ˆβ–ˆβ•— β–ˆβ–ˆβ•‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•‘ konsthol.eu 70 +iβ–ˆβ–ˆβ•”β•β–ˆβ–ˆβ•— β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘β•šβ–ˆβ–ˆβ•—β–ˆβ–ˆβ•‘β•šβ•β•β•β•β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•”β•β•β• β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•‘ konsthol.eu 70 +iβ–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•—β•šβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•”β•β–ˆβ–ˆβ•‘ β•šβ–ˆβ–ˆβ–ˆβ–ˆβ•‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•‘β•šβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•”β•β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ•—β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β•šβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•”β• konsthol.eu 70 +iβ•šβ•β• β•šβ•β• β•šβ•β•β•β•β•β• β•šβ•β• β•šβ•β•β•β•β•šβ•β•β•β•β•β•β• β•šβ•β• β•šβ•β• β•šβ•β• β•šβ•β•β•β•β•β• β•šβ•β•β•β•β•β•β•β•šβ•β•β•šβ•β•β•β•β•β•β• β•šβ•β•β•β•β•β• konsthol.eu 70 +i konsthol.eu 70 +i``` konsthol.eu 70 i konsthol.eu 70 -iThis website follows a Gemini-first approach πŸš€ using Drew's script πŸ‘Œ konsthol.eu 70 +i# Konstantinos Cholidis konsthol.eu 70 +i konsthol.eu 70 +iThis website follows a Gemini-first approach πŸš€ konsthol.eu 70 i konsthol.eu 70 iEst. 5th of June 2021. konsthol.eu 70 i konsthol.eu 70 @@ -36,7 +31,16 @@ i* Code Tinkerer konsthol.eu 70 i* Tech Lover konsthol.eu 70 i* Command Liner konsthol.eu 70 i konsthol.eu 70 -i### Such Coolness konsthol.eu 70 +i## Where can you find me❓ konsthol.eu 70 +i konsthol.eu 70 +1Gemini πŸ’Ž gemini://konsthol.eu konsthol.eu 70 +hTelegram πŸ—¨ url:https://t.me/konsthol konsthol.eu 70 +1Email βœ‰οΈ gemini://konsthol.eu/mailto:konsthol@konsthol.eu konsthol.eu 70 +1Protonmail πŸ“§ gemini://konsthol.eu/mailto:konsthol@pm.me konsthol.eu 70 +hMy Git πŸ“¦ url:https://git.konsthol.eu/ konsthol.eu 70 +hWebcall πŸ“ž url:https://talk.konsthol.eu/user/14851851150 konsthol.eu 70 +i konsthol.eu 70 +i### Thesis konsthol.eu 70 i konsthol.eu 70 iMy Thesis can be found here konsthol.eu 70 i konsthol.eu 70 @@ -58,9 +62,8 @@ i konsthol.eu 70 125-08-2021 - The way to completion gemini://konsthol.eu/log/gemini_capsule_progress-25-08-2021.gmi konsthol.eu 70 i konsthol.eu 70 1Archive gemini://konsthol.eu/log_archive.gmi konsthol.eu 70 -i> Hello World! konsthol.eu 70 i konsthol.eu 70 -iWelcome to my Gemini capsule! konsthol.eu 70 +i> Self hosted services konsthol.eu 70 i konsthol.eu 70 i## Searx konsthol.eu 70 i konsthol.eu 70 @@ -68,16 +71,6 @@ iYou can use my searx instance for a more private experience on the web πŸ‘€ ko i konsthol.eu 70 hSearx πŸ” url:https://searx.konsthol.eu/ konsthol.eu 70 i konsthol.eu 70 -i## Where can you find me❓ konsthol.eu 70 -i konsthol.eu 70 -1Gemini πŸ’Ž gemini://konsthol.eu konsthol.eu 70 -hTelegram πŸ—¨ url:https://t.me/konsthol konsthol.eu 70 -1Email βœ‰οΈ gemini://konsthol.eu/mailto:konsthol@konsthol.eu konsthol.eu 70 -1Protonmail πŸ“§ gemini://konsthol.eu/mailto:konsthol@pm.me konsthol.eu 70 -hMatrix 😎 (Not hosting at the moment) url:https://matrix.to/#/@konsthol:konsthol.eu konsthol.eu 70 -hMy Git πŸ“¦ url:https://git.konsthol.eu/ konsthol.eu 70 -hWebcall πŸ“ž url:https://talk.konsthol.eu/user/14851851150 konsthol.eu 70 -i konsthol.eu 70 i## Jitsi Meet konsthol.eu 70 i konsthol.eu 70 iIf you wish to video chat with me let me know so I can make a room at my Jitsi instance konsthol.eu 70 @@ -99,46 +92,18 @@ i konsthol.eu 70 iif you have no ssh client available. konsthol.eu 70 iNote: access from the url is shared across all users through an immutable Guest user account. That means that there will be no user settings persistance. konsthol.eu 70 i konsthol.eu 70 -i## Etherpad πŸ“” konsthol.eu 70 -i konsthol.eu 70 -iWe can edit a document together at konsthol.eu 70 -i konsthol.eu 70 -hEtherpad (Not hosting at the moment) url:https://etherpad.konsthol.eu konsthol.eu 70 -i konsthol.eu 70 i## Owncast πŸ“Ί konsthol.eu 70 i konsthol.eu 70 iI could be livestreaming at konsthol.eu 70 i konsthol.eu 70 hOwncast url:https://tv.konsthol.eu konsthol.eu 70 i konsthol.eu 70 -i## Invidious πŸ“Ή konsthol.eu 70 +i## Piped πŸ“Ή konsthol.eu 70 i konsthol.eu 70 -iMy invidious instance which you can use resides at konsthol.eu 70 -i konsthol.eu 70 -hInvidious (Not hosting at the moment) url:https://invidious.konsthol.eu konsthol.eu 70 -i konsthol.eu 70 -iReplaced by Piped at konsthol.eu 70 +iMy Piped instance which you can use resides at konsthol.eu 70 i konsthol.eu 70 hPiped url:https://piped.konsthol.eu/ konsthol.eu 70 i konsthol.eu 70 -i## OpenSpeedTest 🏎 konsthol.eu 70 -i konsthol.eu 70 -iYou can use my OpenSpeedTest instance if you don't trust Ookla at konsthol.eu 70 -i konsthol.eu 70 -hOpenSpeedTest (Not hosting at the moment) url:https://speedtest.konsthol.eu konsthol.eu 70 -i konsthol.eu 70 -i## Gopher πŸ•³οΈ konsthol.eu 70 -i konsthol.eu 70 -iMy Gopher Hole which is a work in progress to get up and running will be at this url konsthol.eu 70 -i konsthol.eu 70 -hGopher 🦫 (Not hosting at the moment) url:gopher://konsthol.eu konsthol.eu 70 -i konsthol.eu 70 -i## Tor konsthol.eu 70 -i konsthol.eu 70 -iThis website is also available as a tor hidden service konsthol.eu 70 -i konsthol.eu 70 -hOnion Address πŸ§… (Not hosting at the moment) url:http://jxkqtcekjwmoebh2sl2cmle5mh5ypivxz37j2l4y6iyaixf34pfscuid.onion konsthol.eu 70 -i konsthol.eu 70 i## Croc 🐊 konsthol.eu 70 i konsthol.eu 70 iI have my own croc relay which you can use to send and receive files using this amazing tool by running konsthol.eu 70 diff --git a/index.gmi b/index.gmi index 93143f5..a23fb2b 100644 --- a/index.gmi +++ b/index.gmi @@ -1,22 +1,17 @@ -``` - ________ -( Gemini ) - -------- - o - o - .--. - |o_o | - |:_/ | - // \ \ - (| | ) - /'\_ _/`\ - \___)=(___/ - ``` -# My Gemini Capsule +β–ˆβ–ˆβ•— β–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ•—β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ•— β–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ•— β–ˆβ–ˆβ•— +β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•”β•β–ˆβ–ˆβ•”β•β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•”β•β•β•β•β•β•šβ•β•β–ˆβ–ˆβ•”β•β•β•β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•”β•β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•”β•β•β•β•β•β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•‘ +β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•”β• β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•”β–ˆβ–ˆβ•— β–ˆβ–ˆβ•‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•‘ +β–ˆβ–ˆβ•”β•β–ˆβ–ˆβ•— β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘β•šβ–ˆβ–ˆβ•—β–ˆβ–ˆβ•‘β•šβ•β•β•β•β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•”β•β•β• β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•‘ +β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•—β•šβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•”β•β–ˆβ–ˆβ•‘ β•šβ–ˆβ–ˆβ–ˆβ–ˆβ•‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•‘β•šβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•”β•β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ•—β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β•šβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•”β• +β•šβ•β• β•šβ•β• β•šβ•β•β•β•β•β• β•šβ•β• β•šβ•β•β•β•β•šβ•β•β•β•β•β•β• β•šβ•β• β•šβ•β• β•šβ•β• β•šβ•β•β•β•β•β• β•šβ•β•β•β•β•β•β•β•šβ•β•β•šβ•β•β•β•β•β•β• β•šβ•β•β•β•β•β• + +``` -This website follows a Gemini-first approach πŸš€ using Drew's script πŸ‘Œ +# Konstantinos Cholidis + +This website follows a Gemini-first approach πŸš€ Est. 5th of June 2021. @@ -36,7 +31,16 @@ Est. 5th of June 2021. * Tech Lover * Command Liner -### Such Coolness +## Where can you find me❓ + +=> gemini://konsthol.eu Gemini πŸ’Ž +=> https://t.me/konsthol Telegram πŸ—¨ +=> mailto:konsthol@konsthol.eu Email βœ‰οΈ +=> mailto:konsthol@pm.me Protonmail πŸ“§ +=> https://git.konsthol.eu/ My Git πŸ“¦ +=> https://talk.konsthol.eu/user/14851851150 Webcall πŸ“ž + +### Thesis My Thesis can be found here @@ -58,9 +62,8 @@ My Thesis can be found here => /log/gemini_capsule_progress-25-08-2021.gmi 25-08-2021 - The way to completion => log_archive.gmi Archive -> Hello World! -Welcome to my Gemini capsule! +> Self hosted services ## Searx @@ -68,15 +71,6 @@ You can use my searx instance for a more private experience on the web πŸ‘€ => https://searx.konsthol.eu/ Searx πŸ” -## Where can you find me❓ - -=> gemini://konsthol.eu Gemini πŸ’Ž -=> https://t.me/konsthol Telegram πŸ—¨ -=> mailto:konsthol@konsthol.eu Email βœ‰οΈ -=> mailto:konsthol@pm.me Protonmail πŸ“§ -=> https://git.konsthol.eu/ My Git πŸ“¦ -=> https://talk.konsthol.eu/user/14851851150 Webcall πŸ“ž - ## Jitsi Meet If you wish to video chat with me let me know so I can make a room at my Jitsi instance diff --git a/index.html b/index.html index 24577a9..2535dc7 100644 --- a/index.html +++ b/index.html @@ -30,22 +30,16 @@
-
 ________
-( Gemini )
- --------
-   o
-    o
-        .--.
-       |o_o |
-       |:_/ |
-      //   \ \
-     (|     | )
-    /'\_   _/`\
-    \___)=(___/
-
-

My Gemini Capsule

-

This website follows a Gemini-first approach πŸš€ using Drew’s script -πŸ‘Œ

+

+β–ˆβ–ˆβ•—  β–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ•—   β–ˆβ–ˆβ•—β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ•—  β–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ•—        β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ•—   β–ˆβ–ˆβ•—
+β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•”β•β–ˆβ–ˆβ•”β•β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ–ˆβ–ˆβ•—  β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•”β•β•β•β•β•β•šβ•β•β–ˆβ–ˆβ•”β•β•β•β–ˆβ–ˆβ•‘  β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•”β•β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ•‘        β–ˆβ–ˆβ•”β•β•β•β•β•β–ˆβ–ˆβ•‘   β–ˆβ–ˆβ•‘
+β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•”β• β–ˆβ–ˆβ•‘   β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•”β–ˆβ–ˆβ•— β–ˆβ–ˆβ•‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—   β–ˆβ–ˆβ•‘   β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘   β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘        β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—  β–ˆβ–ˆβ•‘   β–ˆβ–ˆβ•‘
+β–ˆβ–ˆβ•”β•β–ˆβ–ˆβ•— β–ˆβ–ˆβ•‘   β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘β•šβ–ˆβ–ˆβ•—β–ˆβ–ˆβ•‘β•šβ•β•β•β•β–ˆβ–ˆβ•‘   β–ˆβ–ˆβ•‘   β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘   β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘        β–ˆβ–ˆβ•”β•β•β•  β–ˆβ–ˆβ•‘   β–ˆβ–ˆβ•‘
+β–ˆβ–ˆβ•‘  β–ˆβ–ˆβ•—β•šβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•”β•β–ˆβ–ˆβ•‘ β•šβ–ˆβ–ˆβ–ˆβ–ˆβ•‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•‘   β–ˆβ–ˆβ•‘   β–ˆβ–ˆβ•‘  β–ˆβ–ˆβ•‘β•šβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•”β•β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ•—β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β•šβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•”β•
+β•šβ•β•  β•šβ•β• β•šβ•β•β•β•β•β• β•šβ•β•  β•šβ•β•β•β•β•šβ•β•β•β•β•β•β•   β•šβ•β•   β•šβ•β•  β•šβ•β• β•šβ•β•β•β•β•β• β•šβ•β•β•β•β•β•β•β•šβ•β•β•šβ•β•β•β•β•β•β• β•šβ•β•β•β•β•β• 
+                                                                                         
+

Konstantinos Cholidis

+

This website follows a Gemini-first approach πŸš€

Est. 5th of June 2021.

A few words about me

-

Such Coolness

+

Where can you find me❓

+

Gemini πŸ’Ž
Telegram πŸ—¨
Email βœ‰οΈ
Protonmail πŸ“§
My Git πŸ“¦
Webcall +πŸ“ž

+

Thesis

My Thesis can be found here

SecDep

@@ -84,21 +86,14 @@ href="/log/what_the_fuck_google-28-08-2021.html">28-08-2021 - Tracking sucks in general but especially when it gets too invasive
25-08-2021 - The way to completion

-

Archive
> Hello World!

-

Welcome to my Gemini capsule!

+

Archive

+
+

Self hosted services

+

Searx

You can use my searx instance for a more private experience on the web πŸ‘€

Searx πŸ”

-

Where can you find me❓

-

Gemini πŸ’Ž
Telegram πŸ—¨
Email βœ‰οΈ
Protonmail πŸ“§
Matrix 😎 (Not hosting -at the moment)
My Git -πŸ“¦
Webcall -πŸ“ž

Jitsi Meet

If you wish to video chat with me let me know so I can make a room at my Jitsi instance

@@ -111,33 +106,12 @@ my Jitsi instance

if you have no ssh client available. Note: access from the url is shared across all users through an immutable Guest user account. That means that there will be no user settings persistance.

-

Etherpad πŸ“”

-

We can edit a document together at

-

Etherpad (Not hosting at the -moment)

Owncast πŸ“Ί

I could be livestreaming at

Owncast

-

Invidious πŸ“Ή

-

My invidious instance which you can use resides at

-

Invidious (Not hosting at the -moment)

-

Replaced by Piped at

+

Piped πŸ“Ή

+

My Piped instance which you can use resides at

Piped

-

OpenSpeedTest 🏎

-

You can use my OpenSpeedTest instance if you don’t trust Ookla at

-

OpenSpeedTest (Not hosting at -the moment)

-

Gopher πŸ•³οΈ

-

My Gopher Hole which is a work in progress to get up and running will -be at this url

-

Gopher 🦫 (Not hosting at the -moment)

-

Tor

-

This website is also available as a tor hidden service

-

Onion -Address πŸ§… (Not hosting at the moment)

Croc 🐊

I have my own croc relay which you can use to send and receive files using this amazing tool by running

@@ -164,8 +138,8 @@ callFrame.src=user_string;

I accept donations for any reason

Donate

Daily Unique Visitors

-Thursday 28/11/24 12:36:17 -2 +Thursday 19/12/24 15:06:23 +9

Also on the web πŸ•ΈοΈ

http website