summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authoraxtloss <axtlos@disroot.org>2024-08-20 01:20:30 +0200
committeraxtloss <axtlos@disroot.org>2024-08-20 01:20:30 +0200
commite235aa6cf4914cbff6c72f19e0fcf6888da349f7 (patch)
tree0d488cadc02706aa2c7652b42e4f21342125c5f7 /static
parent479414a93ae03a4463c16d54b39cd155b1e04683 (diff)
downloadwebsite-e235aa6cf4914cbff6c72f19e0fcf6888da349f7.tar.gz
website-e235aa6cf4914cbff6c72f19e0fcf6888da349f7.tar.bz2
yayyy new website!!
Diffstat (limited to 'static')
-rw-r--r--static/bvg.pngbin0 -> 6984 bytes
-rwxr-xr-xstatic/deobfuscate.sh17
-rw-r--r--static/favicon.gifbin0 -> 1822809 bytes
-rw-r--r--static/huh.jpgbin0 -> 23872 bytes
-rw-r--r--static/me.pngbin0 -> 108139 bytes
-rw-r--r--static/not-very-brave.html42
-rw-r--r--static/robots.txt3
-rw-r--r--static/rose.gifbin0 -> 644180 bytes
-rw-r--r--static/rose.pngbin0 -> 10403 bytes
-rw-r--r--static/wilted-flower.gifbin0 -> 479385 bytes
10 files changed, 62 insertions, 0 deletions
diff --git a/static/bvg.png b/static/bvg.png
new file mode 100644
index 0000000..b10c869
--- /dev/null
+++ b/static/bvg.png
Binary files differ
diff --git a/static/deobfuscate.sh b/static/deobfuscate.sh
new file mode 100755
index 0000000..40ce970
--- /dev/null
+++ b/static/deobfuscate.sh
@@ -0,0 +1,17 @@
+#!/bin/sh
+
+value="$1"
+offset=$((16#${value:0:2}))
+n=2
+final=""
+
+
+while [ $n -lt ${#value} ]; do
+ num=${value:n:3}
+ charAscii=$((16#$num - $offset))
+ final="$final$(printf \\u$(printf "%03x" $charAscii))"
+ n=$((n + 3))
+done
+
+echo "$final"
+
diff --git a/static/favicon.gif b/static/favicon.gif
new file mode 100644
index 0000000..b2ca4e4
--- /dev/null
+++ b/static/favicon.gif
Binary files differ
diff --git a/static/huh.jpg b/static/huh.jpg
new file mode 100644
index 0000000..8d09392
--- /dev/null
+++ b/static/huh.jpg
Binary files differ
diff --git a/static/me.png b/static/me.png
new file mode 100644
index 0000000..72c0f8c
--- /dev/null
+++ b/static/me.png
Binary files differ
diff --git a/static/not-very-brave.html b/static/not-very-brave.html
new file mode 100644
index 0000000..c2487aa
--- /dev/null
+++ b/static/not-very-brave.html
@@ -0,0 +1,42 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <meta charset="utf-8"/>
+ <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
+ <link rel="stylesheet" href="./style.css" type="text/css" media="all"/>
+ <title>You have been blocked for using brave"</title>
+</head>
+<body>
+ <table class="head">
+ <tr>
+ <td class="head-ltitle">Not</td>
+ <td class="head-vol">very</td>
+ <td class="head-rtitle">Brave</td>
+ </tr>
+ </table>
+ <h1>You have been blocked from accessing xenia.blahaj.land due to your choice of browser.</h2>
+ <p>
+ I generally believe in the right for people to choose the software they see best suited for them. However I do not tolerate if software developers build a product based on fake claims, run by a hateful person, exploiting website developers through cryptocurrency.
+ <br/>
+ What I defined here, is what brave is, a browser that claims to be good for privacy (spoiler: it is not) and even has some nice features like an adblocker built in. Except that adblocker is used to simply replace ads with custom ads from brave and reward website developers with some random cryptocurrency.
+ <br/>
+ As I do not have the time to research and write a long article about this, please read <a href="https://www.kevinmuldoon.com/do-not-use-brave-browser/">this great article</a> about the shortcomings of brave.
+ <br/>
+ In addition to the reasons listed in the article mentioned above, the founder of brave, <a href="https://en.wikipedia.org/wiki/Brendan_Eich">Brendan Eich</a>, the inventor of javascript (already horrible enough), is also the co-founder of Mozilla, the non profit Foundation behind Firefox, a browser that respects the users freedom more (it still has some shortcomings, but thats a different topic), in 2014 he became the CEO of Mozilla, but then resigned after being pushed out of Mozilla due to his views against same-sex marriage.
+ <br/>
+ I believe that lgbt rights are human rights. And will not stand any person saying anything against this. This includes people supporting Brendan Eich by using the Brave browser.
+ </p>
+ <h1>What now?</h1>
+ <p>
+ If you were not aware of the sketchiness of brave and Eich's horrendous views on human rights and do not agree with it, then its simple, switch to a different browser! Since you apparently already care about privacy, I suggest firefox! It is the browser I use on the daily and it has never let me down!
+ <br/>
+ If you however you already knew, or approve of it, then it also is simple, stay away from me. I do not want to interact with you and wish you the day you deserve (a horrible one that is).
+ <table class="foot">
+ <tr>
+ <td class="foot-date">CC BY-SA 4.0</td>
+ <td class="foot-home">Brave sucks</td>
+ <td class="foot-os">lmao</td>
+ </tr>
+ </table>
+</body>
+</html>
diff --git a/static/robots.txt b/static/robots.txt
new file mode 100644
index 0000000..e9e57dc
--- /dev/null
+++ b/static/robots.txt
@@ -0,0 +1,3 @@
+# https://www.robotstxt.org/robotstxt.html
+User-agent: *
+Disallow:
diff --git a/static/rose.gif b/static/rose.gif
new file mode 100644
index 0000000..b4e9ceb
--- /dev/null
+++ b/static/rose.gif
Binary files differ
diff --git a/static/rose.png b/static/rose.png
new file mode 100644
index 0000000..dcb46f9
--- /dev/null
+++ b/static/rose.png
Binary files differ
diff --git a/static/wilted-flower.gif b/static/wilted-flower.gif
new file mode 100644
index 0000000..d0c5eba
--- /dev/null
+++ b/static/wilted-flower.gif
Binary files differ