oops - thought I got that one.
This commit is contained in:
177
css/style.css
177
css/style.css
@@ -1,4 +1,5 @@
|
|||||||
@import url("colors.css");
|
@import url("colors.css");
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'Comic Mono';
|
font-family: 'Comic Mono';
|
||||||
src: url('/fonts/ComicMono.ttf') format('truetype'),
|
src: url('/fonts/ComicMono.ttf') format('truetype'),
|
||||||
@@ -6,125 +7,157 @@ url("/fonts/ComicMono.ttf") format("truetype");
|
|||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: "Comic Mono", monospace;
|
font-family: "Comic Mono", monospace;
|
||||||
font-size: 1.1em;
|
font-size: 1.1em;
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
word-wrap: break-word; /* maybe only to p since the donate page was the culprit */
|
word-wrap: break-word; /* maybe only to p since the donate page was the culprit */
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
text-align: start; /* text-align: justify; */
|
text-align: start; /* text-align: justify; */
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
/* text-justify: inter-word; */
|
/* text-justify: inter-word; */
|
||||||
line-height: 1.4em;
|
line-height: 1.4em;
|
||||||
}
|
}
|
||||||
|
|
||||||
em {
|
em {
|
||||||
font-family: "Comic Mono", monospace;
|
font-family: "Comic Mono", monospace;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1,h2,h3 {
|
h1,h2,h3 {
|
||||||
font-size: 1.1em;
|
font-size: 1.1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
color: var(--color4);
|
color: var(--color4);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
color: var(--color6);
|
color: var(--color6);
|
||||||
}
|
}
|
||||||
|
|
||||||
h3 {
|
h3 {
|
||||||
color: var(--color5);
|
color: var(--color5);
|
||||||
}
|
}
|
||||||
|
|
||||||
h1:before {
|
h1:before {
|
||||||
content: "# ";
|
content: "# ";
|
||||||
}
|
}
|
||||||
|
|
||||||
h2:before {
|
h2:before {
|
||||||
content: "## ";
|
content: "## ";
|
||||||
}
|
}
|
||||||
|
|
||||||
h3:before {
|
h3:before {
|
||||||
content: "### ";
|
content: "### ";
|
||||||
}
|
}
|
||||||
|
|
||||||
section {
|
section {
|
||||||
width: 50%;
|
width: 50%;
|
||||||
margin: 5em auto 0% auto;
|
margin: 5em auto 0% auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
blockquote {
|
blockquote {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
margin:0 auto;
|
margin:0 auto;
|
||||||
width:auto;
|
width:auto;
|
||||||
display:table
|
display:table
|
||||||
}
|
}
|
||||||
|
|
||||||
pre {
|
pre {
|
||||||
white-space: pre-wrap; /* css-3 */
|
white-space: pre-wrap; /* css-3 */
|
||||||
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
|
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
|
||||||
white-space: -pre-wrap; /* Opera 4-6 */
|
white-space: -pre-wrap; /* Opera 4-6 */
|
||||||
white-space: -o-pre-wrap; /* Opera 7 */
|
white-space: -o-pre-wrap; /* Opera 7 */
|
||||||
word-wrap: break-word; /* Internet Explorer 5.5+ */
|
word-wrap: break-word; /* Internet Explorer 5.5+ */
|
||||||
}
|
}
|
||||||
|
|
||||||
code, pre {
|
code, pre {
|
||||||
font-family: "Comic Mono", monospace;
|
font-family: "Comic Mono", monospace;
|
||||||
font-size: 1.0em;
|
font-size: 1.0em;
|
||||||
color: var(--color1);
|
color: var(--color1);
|
||||||
text-align: center
|
text-align: center
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
font-size: .8em
|
font-size: .8em
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
text-justify: none;
|
text-justify: none;
|
||||||
color: var(--color10);
|
color: var(--color10);
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
section a:before {
|
section a:before {
|
||||||
content: "=> 🌍 ";
|
content: "=> 🌍 ";
|
||||||
}
|
}
|
||||||
|
|
||||||
section a.gem:before {
|
section a.gem:before {
|
||||||
content: "=> 💎 ";
|
content: "=> 💎 ";
|
||||||
}
|
}
|
||||||
|
|
||||||
footer a:before {
|
footer a:before {
|
||||||
content: "";
|
content: "";
|
||||||
}
|
}
|
||||||
|
|
||||||
a:hover {
|
a:hover {
|
||||||
transition: background-color 0.1s, color 1.1s;
|
transition: background-color 0.1s, color 1.1s;
|
||||||
background-color: var(--color9);
|
background-color: var(--color9);
|
||||||
color: var(--background);
|
color: var(--background);
|
||||||
}
|
}
|
||||||
|
|
||||||
span#url {
|
span#url {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 27em;
|
width: 27em;
|
||||||
}
|
}
|
||||||
|
|
||||||
span#name {
|
span#name {
|
||||||
color: var(--color9);
|
color: var(--color9);
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
button#mybtn {
|
button#mybtn {
|
||||||
color: var(--color15);
|
color: var(--color15);
|
||||||
background-color: var(--color0);
|
background-color: var(--color0);
|
||||||
font-family: "Comic Mono", monospace;
|
font-family: "Comic Mono", monospace;
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
border: 2px solid var(--color3);
|
border: 2px solid var(--color3);
|
||||||
}
|
}
|
||||||
|
|
||||||
button#mybtn:hover {
|
button#mybtn:hover {
|
||||||
transition: background-color 0.1s, color 1.1s;
|
transition: background-color 0.1s, color 1.1s;
|
||||||
background-color: var(--color9);
|
background-color: var(--color9);
|
||||||
color: var(--background);
|
color: var(--background);
|
||||||
font-family: "Comic Mono", monospace;
|
font-family: "Comic Mono", monospace;
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
footer a#gemyo img {
|
footer a#gemyo img {
|
||||||
image-rendering: optimizeSpeed;
|
image-rendering: optimizeSpeed;
|
||||||
image-rendering: -moz-crisp-edges;
|
image-rendering: -moz-crisp-edges;
|
||||||
image-rendering: -o-crisp-edges;
|
image-rendering: -o-crisp-edges;
|
||||||
image-rendering: -webkit-optimize-contrast;
|
image-rendering: -webkit-optimize-contrast;
|
||||||
image-rendering: optimize-contrast;
|
image-rendering: optimize-contrast;
|
||||||
image-rendering: crisp-edges;
|
image-rendering: crisp-edges;
|
||||||
image-rendering: pixelated;
|
image-rendering: pixelated;
|
||||||
width: 170px;
|
width: 170px;
|
||||||
display: block;
|
display: block;
|
||||||
margin: 3em auto 0em auto;
|
margin: 3em auto 0em auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 1600px) {
|
@media screen and (max-width: 1600px) {
|
||||||
section {
|
section {
|
||||||
width: 80%;
|
width: 80%;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Adjust font size for small screens */
|
||||||
|
@media (max-width: 1300px) {
|
||||||
|
pre code {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
83
gophermap
83
gophermap
@@ -1,22 +1,17 @@
|
|||||||
i``` konsthol.eu 70
|
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 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
|
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
|
i konsthol.eu 70
|
||||||
iEst. 5th of June 2021. konsthol.eu 70
|
iEst. 5th of June 2021. konsthol.eu 70
|
||||||
i konsthol.eu 70
|
i konsthol.eu 70
|
||||||
@@ -36,7 +31,16 @@ i* Code Tinkerer konsthol.eu 70
|
|||||||
i* Tech Lover konsthol.eu 70
|
i* Tech Lover konsthol.eu 70
|
||||||
i* Command Liner konsthol.eu 70
|
i* Command Liner konsthol.eu 70
|
||||||
i 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
|
i konsthol.eu 70
|
||||||
iMy Thesis can be found here konsthol.eu 70
|
iMy Thesis can be found here konsthol.eu 70
|
||||||
i 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
|
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
|
i konsthol.eu 70
|
||||||
1Archive gemini://konsthol.eu/log_archive.gmi konsthol.eu 70
|
1Archive gemini://konsthol.eu/log_archive.gmi konsthol.eu 70
|
||||||
i> Hello World! konsthol.eu 70
|
|
||||||
i 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 konsthol.eu 70
|
||||||
i## Searx konsthol.eu 70
|
i## Searx konsthol.eu 70
|
||||||
i 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
|
i konsthol.eu 70
|
||||||
hSearx 🔍 url:https://searx.konsthol.eu/ konsthol.eu 70
|
hSearx 🔍 url:https://searx.konsthol.eu/ konsthol.eu 70
|
||||||
i 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## Jitsi Meet konsthol.eu 70
|
||||||
i 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
|
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
|
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
|
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 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## Owncast 📺 konsthol.eu 70
|
||||||
i konsthol.eu 70
|
i konsthol.eu 70
|
||||||
iI could be livestreaming at konsthol.eu 70
|
iI could be livestreaming at konsthol.eu 70
|
||||||
i konsthol.eu 70
|
i konsthol.eu 70
|
||||||
hOwncast url:https://tv.konsthol.eu konsthol.eu 70
|
hOwncast url:https://tv.konsthol.eu konsthol.eu 70
|
||||||
i konsthol.eu 70
|
i konsthol.eu 70
|
||||||
i## Invidious 📹 konsthol.eu 70
|
i## Piped 📹 konsthol.eu 70
|
||||||
i konsthol.eu 70
|
i konsthol.eu 70
|
||||||
iMy invidious instance which you can use resides at konsthol.eu 70
|
iMy Piped 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
|
|
||||||
i konsthol.eu 70
|
i konsthol.eu 70
|
||||||
hPiped url:https://piped.konsthol.eu/ konsthol.eu 70
|
hPiped url:https://piped.konsthol.eu/ konsthol.eu 70
|
||||||
i 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## Croc 🐊 konsthol.eu 70
|
||||||
i 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
|
iI have my own croc relay which you can use to send and receive files using this amazing tool by running konsthol.eu 70
|
||||||
|
|||||||
46
index.gmi
46
index.gmi
@@ -1,22 +1,17 @@
|
|||||||
```
|
```
|
||||||
________
|
|
||||||
( Gemini )
|
██╗ ██╗ ██████╗ ███╗ ██╗███████╗████████╗██╗ ██╗ ██████╗ ██╗ ███████╗██╗ ██╗
|
||||||
--------
|
██║ ██╔╝██╔═══██╗████╗ ██║██╔════╝╚══██╔══╝██║ ██║██╔═══██╗██║ ██╔════╝██║ ██║
|
||||||
o
|
█████╔╝ ██║ ██║██╔██╗ ██║███████╗ ██║ ███████║██║ ██║██║ █████╗ ██║ ██║
|
||||||
o
|
██╔═██╗ ██║ ██║██║╚██╗██║╚════██║ ██║ ██╔══██║██║ ██║██║ ██╔══╝ ██║ ██║
|
||||||
.--.
|
██║ ██╗╚██████╔╝██║ ╚████║███████║ ██║ ██║ ██║╚██████╔╝███████╗██╗███████╗╚██████╔╝
|
||||||
|o_o |
|
╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═══╝╚══════╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚══════╝╚═╝╚══════╝ ╚═════╝
|
||||||
|:_/ |
|
|
||||||
// \ \
|
|
||||||
(| | )
|
|
||||||
/'\_ _/`\
|
|
||||||
\___)=(___/
|
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
# My Gemini Capsule
|
# Konstantinos Cholidis
|
||||||
|
|
||||||
This website follows a Gemini-first approach 🚀 using Drew's script 👌
|
This website follows a Gemini-first approach 🚀
|
||||||
|
|
||||||
Est. 5th of June 2021.
|
Est. 5th of June 2021.
|
||||||
|
|
||||||
@@ -36,7 +31,16 @@ Est. 5th of June 2021.
|
|||||||
* Tech Lover
|
* Tech Lover
|
||||||
* Command Liner
|
* 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
|
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/gemini_capsule_progress-25-08-2021.gmi 25-08-2021 - The way to completion
|
||||||
|
|
||||||
=> log_archive.gmi Archive
|
=> log_archive.gmi Archive
|
||||||
> Hello World!
|
|
||||||
|
|
||||||
Welcome to my Gemini capsule!
|
> Self hosted services
|
||||||
|
|
||||||
## Searx
|
## Searx
|
||||||
|
|
||||||
@@ -68,15 +71,6 @@ You can use my searx instance for a more private experience on the web 👀
|
|||||||
|
|
||||||
=> https://searx.konsthol.eu/ Searx 🔍
|
=> 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
|
## Jitsi Meet
|
||||||
|
|
||||||
If you wish to video chat with me let me know so I can make a room at my Jitsi instance
|
If you wish to video chat with me let me know so I can make a room at my Jitsi instance
|
||||||
|
|||||||
80
index.html
80
index.html
@@ -30,22 +30,16 @@
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<section>
|
<section>
|
||||||
<pre><code> ________
|
<pre><code>
|
||||||
( Gemini )
|
██╗ ██╗ ██████╗ ███╗ ██╗███████╗████████╗██╗ ██╗ ██████╗ ██╗ ███████╗██╗ ██╗
|
||||||
--------
|
██║ ██╔╝██╔═══██╗████╗ ██║██╔════╝╚══██╔══╝██║ ██║██╔═══██╗██║ ██╔════╝██║ ██║
|
||||||
o
|
█████╔╝ ██║ ██║██╔██╗ ██║███████╗ ██║ ███████║██║ ██║██║ █████╗ ██║ ██║
|
||||||
o
|
██╔═██╗ ██║ ██║██║╚██╗██║╚════██║ ██║ ██╔══██║██║ ██║██║ ██╔══╝ ██║ ██║
|
||||||
.--.
|
██║ ██╗╚██████╔╝██║ ╚████║███████║ ██║ ██║ ██║╚██████╔╝███████╗██╗███████╗╚██████╔╝
|
||||||
|o_o |
|
╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═══╝╚══════╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚══════╝╚═╝╚══════╝ ╚═════╝
|
||||||
|:_/ |
|
</code></pre>
|
||||||
// \ \
|
<h1 id="konstantinos-cholidis">Konstantinos Cholidis</h1>
|
||||||
(| | )
|
<p>This website follows a Gemini-first approach 🚀</p>
|
||||||
/'\_ _/`\
|
|
||||||
\___)=(___/
|
|
||||||
</code></pre>
|
|
||||||
<h1 id="my-gemini-capsule">My Gemini Capsule</h1>
|
|
||||||
<p>This website follows a Gemini-first approach 🚀 using Drew’s script
|
|
||||||
👌</p>
|
|
||||||
<p>Est. 5th of June 2021.</p>
|
<p>Est. 5th of June 2021.</p>
|
||||||
<h2 id="a-few-words-about-me">A few words about me</h2>
|
<h2 id="a-few-words-about-me">A few words about me</h2>
|
||||||
<ul>
|
<ul>
|
||||||
@@ -63,7 +57,15 @@
|
|||||||
<li>Tech Lover</li>
|
<li>Tech Lover</li>
|
||||||
<li>Command Liner</li>
|
<li>Command Liner</li>
|
||||||
</ul>
|
</ul>
|
||||||
<h3 id="such-coolness">Such Coolness</h3>
|
<h2 id="where-can-you-find-me">Where can you find me❓</h2>
|
||||||
|
<p><a class="gem" href="gemini://konsthol.eu">Gemini 💎</a><br /> <a
|
||||||
|
href="https://t.me/konsthol">Telegram 🗨</a><br /> <a
|
||||||
|
href="mailto:konsthol@konsthol.eu">Email ✉️</a><br /> <a
|
||||||
|
href="mailto:konsthol@pm.me">Protonmail 📧</a><br /> <a
|
||||||
|
href="https://git.konsthol.eu/">My Git 📦</a><br /> <a
|
||||||
|
href="https://talk.konsthol.eu/user/14851851150">Webcall
|
||||||
|
📞</a><br /></p>
|
||||||
|
<h3 id="thesis">Thesis</h3>
|
||||||
<p>My Thesis can be found here</p>
|
<p>My Thesis can be found here</p>
|
||||||
<p><a
|
<p><a
|
||||||
href="https://hellanicus.lib.aegean.gr/handle/11610/26621">SecDep</a><br /></p>
|
href="https://hellanicus.lib.aegean.gr/handle/11610/26621">SecDep</a><br /></p>
|
||||||
@@ -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</a><br /> <a
|
sucks in general but especially when it gets too invasive</a><br /> <a
|
||||||
href="/log/gemini_capsule_progress-25-08-2021.html">25-08-2021 - The way
|
href="/log/gemini_capsule_progress-25-08-2021.html">25-08-2021 - The way
|
||||||
to completion</a><br /></p>
|
to completion</a><br /></p>
|
||||||
<p><a href="log_archive.html">Archive</a><br /> > Hello World!</p>
|
<p><a href="log_archive.html">Archive</a><br /></p>
|
||||||
<p>Welcome to my Gemini capsule!</p>
|
<blockquote>
|
||||||
|
<p>Self hosted services</p>
|
||||||
|
</blockquote>
|
||||||
<h2 id="searx">Searx</h2>
|
<h2 id="searx">Searx</h2>
|
||||||
<p>You can use my searx instance for a more private experience on the
|
<p>You can use my searx instance for a more private experience on the
|
||||||
web 👀</p>
|
web 👀</p>
|
||||||
<p><a href="https://searx.konsthol.eu/">Searx 🔍</a><br /></p>
|
<p><a href="https://searx.konsthol.eu/">Searx 🔍</a><br /></p>
|
||||||
<h2 id="where-can-you-find-me">Where can you find me❓</h2>
|
|
||||||
<p><a class="gem" href="gemini://konsthol.eu">Gemini 💎</a><br /> <a
|
|
||||||
href="https://t.me/konsthol">Telegram 🗨</a><br /> <a
|
|
||||||
href="mailto:konsthol@konsthol.eu">Email ✉️</a><br /> <a
|
|
||||||
href="mailto:konsthol@pm.me">Protonmail 📧</a><br /> <a
|
|
||||||
href="https://matrix.to/#/@konsthol:konsthol.eu">Matrix 😎 (Not hosting
|
|
||||||
at the moment)</a><br /> <a href="https://git.konsthol.eu/">My Git
|
|
||||||
📦</a><br /> <a href="https://talk.konsthol.eu/user/14851851150">Webcall
|
|
||||||
📞</a><br /></p>
|
|
||||||
<h2 id="jitsi-meet">Jitsi Meet</h2>
|
<h2 id="jitsi-meet">Jitsi Meet</h2>
|
||||||
<p>If you wish to video chat with me let me know so I can make a room at
|
<p>If you wish to video chat with me let me know so I can make a room at
|
||||||
my Jitsi instance</p>
|
my Jitsi instance</p>
|
||||||
@@ -111,33 +106,12 @@ my Jitsi instance</p>
|
|||||||
<p>if you have no ssh client available. Note: access from the url is
|
<p>if you have no ssh client available. Note: access from the url is
|
||||||
shared across all users through an immutable Guest user account. That
|
shared across all users through an immutable Guest user account. That
|
||||||
means that there will be no user settings persistance.</p>
|
means that there will be no user settings persistance.</p>
|
||||||
<h2 id="etherpad">Etherpad 📔</h2>
|
|
||||||
<p>We can edit a document together at</p>
|
|
||||||
<p><a href="https://etherpad.konsthol.eu">Etherpad (Not hosting at the
|
|
||||||
moment)</a><br /></p>
|
|
||||||
<h2 id="owncast">Owncast 📺</h2>
|
<h2 id="owncast">Owncast 📺</h2>
|
||||||
<p>I could be livestreaming at</p>
|
<p>I could be livestreaming at</p>
|
||||||
<p><a href="https://tv.konsthol.eu">Owncast</a><br /></p>
|
<p><a href="https://tv.konsthol.eu">Owncast</a><br /></p>
|
||||||
<h2 id="invidious">Invidious 📹</h2>
|
<h2 id="piped">Piped 📹</h2>
|
||||||
<p>My invidious instance which you can use resides at</p>
|
<p>My Piped instance which you can use resides at</p>
|
||||||
<p><a href="https://invidious.konsthol.eu">Invidious (Not hosting at the
|
|
||||||
moment)</a><br /></p>
|
|
||||||
<p>Replaced by Piped at</p>
|
|
||||||
<p><a href="https://piped.konsthol.eu/">Piped</a><br /></p>
|
<p><a href="https://piped.konsthol.eu/">Piped</a><br /></p>
|
||||||
<h2 id="openspeedtest">OpenSpeedTest 🏎</h2>
|
|
||||||
<p>You can use my OpenSpeedTest instance if you don’t trust Ookla at</p>
|
|
||||||
<p><a href="https://speedtest.konsthol.eu">OpenSpeedTest (Not hosting at
|
|
||||||
the moment)</a><br /></p>
|
|
||||||
<h2 id="gopher">Gopher 🕳️</h2>
|
|
||||||
<p>My Gopher Hole which is a work in progress to get up and running will
|
|
||||||
be at this url</p>
|
|
||||||
<p><a href="gopher://konsthol.eu">Gopher 🦫 (Not hosting at the
|
|
||||||
moment)</a><br /></p>
|
|
||||||
<h2 id="tor">Tor</h2>
|
|
||||||
<p>This website is also available as a tor hidden service</p>
|
|
||||||
<p><a
|
|
||||||
href="http://jxkqtcekjwmoebh2sl2cmle5mh5ypivxz37j2l4y6iyaixf34pfscuid.onion">Onion
|
|
||||||
Address 🧅 (Not hosting at the moment)</a><br /></p>
|
|
||||||
<h2 id="croc">Croc 🐊</h2>
|
<h2 id="croc">Croc 🐊</h2>
|
||||||
<p>I have my own croc relay which you can use to send and receive files
|
<p>I have my own croc relay which you can use to send and receive files
|
||||||
using this amazing tool by running</p>
|
using this amazing tool by running</p>
|
||||||
@@ -164,8 +138,8 @@ callFrame.src=user_string;
|
|||||||
<p>I accept donations for any reason</p>
|
<p>I accept donations for any reason</p>
|
||||||
<p><a href="donate.html">Donate</a><br /></p>
|
<p><a href="donate.html">Donate</a><br /></p>
|
||||||
<h2>Daily Unique Visitors</h2><p>
|
<h2>Daily Unique Visitors</h2><p>
|
||||||
Thursday 28/11/24 12:36:17
|
Thursday 19/12/24 15:06:23
|
||||||
2
|
9
|
||||||
</p>
|
</p>
|
||||||
<h2 id="also-on-the-web">Also on the web 🕸️</h2>
|
<h2 id="also-on-the-web">Also on the web 🕸️</h2>
|
||||||
<p><a href="https://konsthol.eu">http website</a><br /></p>
|
<p><a href="https://konsthol.eu">http website</a><br /></p>
|
||||||
|
|||||||
Reference in New Issue
Block a user