From e46250a56ba8deecdad487e7a47d6b41acc65f60 Mon Sep 17 00:00:00 2001 From: Fijxu Date: Wed, 2 Apr 2025 13:49:33 -0300 Subject: [PATCH] Xd --- assets/sass/main.scss | 30 ++++- assets/sass/touhou.scss | 8 ++ content/_index.md | 27 ++-- .../invidious-and-the-bot-problem/anubis.png | 3 + .../invidious-and-the-bot-problem/index.md | 122 ++++++++++++++++++ .../lemmy-comment.png | 3 + content/coolsites/index.md | 6 + content/email-server/index.md | 31 +++++ .../invidious-instance-information/index.md | 16 +++ .../invidious-dot.png | 3 + content/minecraft/2023-10-13_15.38.36.jpg | 3 + content/minecraft/index.md | 17 +++ content/minecraft/mc.png | 3 + content/touhou-scores/2025-03-12_01-45.png | 3 + content/touhou-scores/2025-03-12_02-19.png | 3 + content/touhou-scores/2025-03-14_00-29.png | 3 + content/touhou-scores/2025-03-15_01-58.png | 3 + content/touhou-scores/2025-03-17_01-16.png | 3 + content/touhou-scores/2025-03-17_01-39.png | 3 + content/touhou-scores/SICP.png | 3 + content/touhou-scores/alice.png | 3 + content/touhou-scores/bg.avif | Bin 0 -> 163904 bytes content/touhou-scores/bg.jpg | 3 + content/touhou-scores/bg.png | 3 + content/touhou-scores/index.md | 45 +++++++ layouts/_default/baseof.html | 6 +- layouts/_default/single.html | 10 +- layouts/partials/footer.html | 2 +- layouts/partials/navbar.html | 6 + layouts/shortcodes/table.html | 6 + push.sh | 4 + static/89uasdfggu9i.mp4 | Bin 0 -> 2894109 bytes static/fuck.png | 3 + ...ing_that_im_fucking_youtube_in_the_ass.png | 3 + static/invidious-graph.png | 3 + static/modern_software.png | 3 + static/nadeko.jpg | 3 + static/stupid.webm | 3 + 38 files changed, 377 insertions(+), 22 deletions(-) create mode 100644 assets/sass/touhou.scss create mode 100644 content/announcements/invidious-and-the-bot-problem/anubis.png create mode 100644 content/announcements/invidious-and-the-bot-problem/index.md create mode 100644 content/announcements/invidious-and-the-bot-problem/lemmy-comment.png create mode 100644 content/email-server/index.md create mode 100644 content/invidious-instance-information/invidious-dot.png create mode 100644 content/minecraft/2023-10-13_15.38.36.jpg create mode 100644 content/minecraft/index.md create mode 100644 content/minecraft/mc.png create mode 100644 content/touhou-scores/2025-03-12_01-45.png create mode 100644 content/touhou-scores/2025-03-12_02-19.png create mode 100644 content/touhou-scores/2025-03-14_00-29.png create mode 100644 content/touhou-scores/2025-03-15_01-58.png create mode 100644 content/touhou-scores/2025-03-17_01-16.png create mode 100644 content/touhou-scores/2025-03-17_01-39.png create mode 100644 content/touhou-scores/SICP.png create mode 100644 content/touhou-scores/alice.png create mode 100644 content/touhou-scores/bg.avif create mode 100644 content/touhou-scores/bg.jpg create mode 100644 content/touhou-scores/bg.png create mode 100644 content/touhou-scores/index.md create mode 100644 layouts/shortcodes/table.html create mode 100755 push.sh create mode 100644 static/89uasdfggu9i.mp4 create mode 100644 static/fuck.png create mode 100644 static/how_i_sleep_knowning_that_im_fucking_youtube_in_the_ass.png create mode 100644 static/invidious-graph.png create mode 100644 static/modern_software.png create mode 100644 static/nadeko.jpg create mode 100644 static/stupid.webm diff --git a/assets/sass/main.scss b/assets/sass/main.scss index 5886a56..9dc0e2a 100644 --- a/assets/sass/main.scss +++ b/assets/sass/main.scss @@ -35,11 +35,17 @@ $notice: #fabf70; $alert: #fa7070; html { - background-color: $bg; + // background-color: $bg; + background-color: transparent; + // background-image: linear-gradient( rgba(8, 8, 8, 0.8), rgba(8, 8, 8, 0.8) ), url(/touhou-scores/bg.avif), url(/touhou-scores/bg.jpg); + background-image: linear-gradient( rgba(8, 8, 8, 0.8), rgba(8, 8, 8, 0.8) ), url(/bg.jpg); + background-repeat: no-repeat; + background-attachment: fixed; + background-position: center; color: $text; margin-left: 1rem; margin-right: 1rem; - max-width: 900px; + max-width: 1100px; margin: 0 auto; } @@ -147,3 +153,23 @@ nav { width: 70%; } } + +.tohonavbar { + @keyframes ani { + 0% { + background-position: 0% 50%; + } + 50% { + background-position: 100% 50%; + } + 100% { + background-position: 0% 50%; + } + } + // background: linear-gradient(270deg, #b22ff9, #d751fc); + background: linear-gradient(250deg, #ff6f9d 0%, #c465d1 50%, #a400ff 100%); + background-clip: text; + background-size: 400% 400%; + color: transparent; + animation: ani 15s ease infinite; +} diff --git a/assets/sass/touhou.scss b/assets/sass/touhou.scss new file mode 100644 index 0000000..4d70c81 --- /dev/null +++ b/assets/sass/touhou.scss @@ -0,0 +1,8 @@ +html { + background-color: transparent; + // background-image: linear-gradient( rgba(8, 8, 8, 0.8), rgba(8, 8, 8, 0.8) ), url(/touhou-scores/bg.avif), url(/touhou-scores/bg.jpg); + background-image: linear-gradient( rgba(8, 8, 8, 0.8), rgba(8, 8, 8, 0.8) ), url(/touhou-scores/bg.jpg); + background-repeat: no-repeat; + background-attachment: fixed; + background-position: center; +} diff --git a/content/_index.md b/content/_index.md index ea330d5..9302d97 100644 --- a/content/_index.md +++ b/content/_index.md @@ -2,6 +2,11 @@ title: nadeko.net --- +
+ +2024-03-08: New public service has been added: @nadeko.net Email Server. More details at [@nadeko.net Email Server](/email-server) +
+ # nadeko.net Hi, I'm *Fijxu*, the owner and sole admin of nadeko.net. I am dedicated to hosting privacy-focused services (and various other services) to the internet. Those services are mainly hosted for myself, but it doesn't make sense for me to host privacy-focused services just for myself, so most of them are also open to the public. @@ -36,7 +41,7 @@ This page is on development, so some things may be missing. - [4get](https://4get.nadeko.net) (Self-hosted, Relayed) ([Tor](http://4get.nadekonw7plitnjuawu6ytjsl7jlglk2t6pyq6eftptmiv3dvqndwvyd.onion)) - [Rimgo](https://ri.nadeko.net) (Self-hosted, Relayed) ([Tor](http://ri.nadekonw7plitnjuawu6ytjsl7jlglk2t6pyq6eftptmiv3dvqndwvyd.onion)) - [Privatebin](https://pbin.nadeko.net) (Self-hosted, Relayed) ([Tor](http://pbin.nadekonw7plitnjuawu6ytjsl7jlglk2t6pyq6eftptmiv3dvqndwvyd.onion)) -- [Redlib](https://redlib.nadeko.net) (Self-hosted, Relayed) ([Tor](http://redlib.nadekobxalvyqrhvp3m2atfgdmzp5vcwdmu3wo4htecwjkodancfmgid.onion/)) +- [Redlib](https://redlib.nadeko.net) (Self-hosted, Relayed) ([Tor](http://redlib.nadekonw7plitnjuawu6ytjsl7jlglk2t6pyq6eftptmiv3dvqndwvyd.onion/)) - [Breezewiki](https://breezewiki.nadeko.net) (Self-hosted, Relayed) ([Tor](http://breezewiki.nadekonw7plitnjuawu6ytjsl7jlglk2t6pyq6eftptmiv3dvqndwvyd.onion/)) @@ -61,7 +66,8 @@ This page is on development, so some things may be missing. ### US (us.nadeko.net) @ 🇺🇸 -- [IRC Bouncer](https://znc.nadeko.net) +- [@nadeko.net Email Server](https://mail.nadeko.net) (Semi-private, more information at [@nadeko.net Email Server](/email-server)) +- [IRC Bouncer](https://znc.nadeko.net) (Public, but you will need to contact me at https://nadeko.net/contact/ to get an account) - [Twitch Russia Proxy for TTVLOLv1](https://twitch.nadeko.net) - [Temporary Media Uploader](https://ayaya.beauty) - [keygenmusic.tk Mirror](https://keygenmusic.nadeko.net) @@ -81,19 +87,9 @@ A list of services that I'm probably going to host for the public # Shitpost section (cancerous) + - - - - -
- -**Official nadeko.net©™ proxying streaming quality!** (If it doesn't work don't blame me :3c) -
- -:3 - -