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
@@ -63,7 +57,15 @@
- Tech Lover
- Command Liner
-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