mirror of
https://github.com/byReqz/nils.lol.git
synced 2024-11-21 17:53:15 +00:00
87 lines
3.4 KiB
Bash
87 lines
3.4 KiB
Bash
#!/bin/sh
|
|
<<\EOF
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta name="viewport" content="initial-scale = 1, maximum-scale=1, user-scalable = 0"/>
|
|
<meta name="apple-mobile-web-app-capable" content="yes"/>
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black"/>
|
|
<meta name="HandheldFriendly" content="true"/>
|
|
<meta name="MobileOptimized" content="320"/>
|
|
<title>nils.lol</title>
|
|
<link rel="stylesheet" href="./sp.css">
|
|
<link rel="stylesheet" href="./hack.css">
|
|
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
|
|
</head>
|
|
<body>
|
|
<p id="darkreader">you should probably disable dark reader</p>
|
|
<h1>Hi</h1>
|
|
<p>im a Sysadmin and spare-time Developer. Sometimes I even actually develop things.</p>
|
|
<div>
|
|
<br/>
|
|
github:
|
|
<a href="https://github.com/byreqz">github.com/byreqz</a><br/>
|
|
twitter:
|
|
<a href="https://twitter.com/byreqz">twitter.com/byreqz</a><br/>
|
|
matrix:
|
|
<a href="https://matrix.to/#/@nsxu:nils.lol">matrix.to/#/@nxsu:nils.lol</a><br/>
|
|
steam:
|
|
<a href="https://steamcommunity.com/id/byreqz">steamcommunity.com/id/byreqz</a><br/>
|
|
discord:
|
|
toyota_yaris<br/>
|
|
mail:
|
|
nils📧nils.lol<br/>
|
|
$:
|
|
sh <(curl -s https://nils.lol)<br/>
|
|
<br/><br/>
|
|
<div id="floater">
|
|
<div id="keys">
|
|
my keys: <br/>
|
|
<a href="./keys/nils@byreqz.de.asc">nils📧byreqz.de</a> - <a href="https://keys.openpgp.org/search?q=nils%40byreqz.de">0x396A62D7D436749E</a><br/>
|
|
<a href="./keys/nils@nils.lol.asc">nils📧nils.lol</a> - <a href="https://keys.openpgp.org/search?q=nils%40nils.lol">0x49F924B3CEE307B2</a><br/>
|
|
</div>
|
|
<div id="so">
|
|
this site was blatantly "inspired" by: <br/>
|
|
<a href="https://hackerc.at">hackerc.at</a><br/>
|
|
and <br>
|
|
<a href="https://hashbang.sh">hashbang.sh</a><br/>
|
|
and <br>
|
|
<a href="https://github.com/susam/spcss">spcss</a><br/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
<!--
|
|
EOF
|
|
#!/bin/sh
|
|
printf "\e[35mHi, it seems like you found me"'!'"\n\e[0m"
|
|
printf "\e[1;33;mI'm \e[4;5mNils\n\e[0m"
|
|
printf "\e[4;1;34mYou can also find me here:\n\e[0m"
|
|
printf "web: \e[1;35mhttps://nils.lol\n\e[0m"
|
|
printf "github: \e[1;35mhttps://github.com/byreqz\n\e[0m"
|
|
printf "twitter: \e[1;35mhttps://twitter.com/byreqz\n\e[0m"
|
|
printf "matrix: \e[1;35mhttps://matrix.to/#/@nxsu:nils.lol\n\e[0m"
|
|
printf "discord: \e[1;35mtoyota_yaris\n\e[0m"
|
|
printf "mail: \e[1;35mnils[mail]nils.lol\n\e[0m"
|
|
printf " \e[0;36m.\n\e[0m"
|
|
printf " \e[0;36m/ \ \n\e[0m"
|
|
printf " \e[0;36m/ \ \n\e[0m"
|
|
printf " \e[0;36m/^. \ I use arch btw \n\e[0m"
|
|
printf " \e[0;36m/ .-. \ \n\e[0m"
|
|
printf " \e[0;36m/ ( ) _\ \n\e[0m"
|
|
printf " \e[0;36m/ _.~ ~._^\ \n\e[0m"
|
|
printf " \e[0;36m/.^ ^.\ \n\e[0m"
|
|
if [ -n "$(gpg --version | grep Cipher)" ];then
|
|
echo "do you want to import my gpg keys? (Y/n)"
|
|
read yn
|
|
if [ "$yn" = y ] || [ "$yn" = yes ] || [ -z "$yn" ];then
|
|
gpg --recv-keys 0x396A62D7D436749E
|
|
gpg --recv-keys 0x49F924B3CEE307B2
|
|
echo "keys have been imported"
|
|
else
|
|
echo "keys not imported"
|
|
fi
|
|
fi
|
|
exit 0
|