1
0
mirror of https://github.com/byReqz/nils.lol.git synced 2024-11-22 02:01:16 +00:00
nils.lol/index.html
2021-02-17 09:04:53 +01:00

99 lines
4.0 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/>
git:
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="https://git.nils.lol">git.nils.lol</a><br/>
github:
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="https://github.com/byreqz">github.com/byreqz</a><br/>
twitter:
&nbsp;&nbsp;&nbsp;&nbsp;<a href="https://twitter.com/byreqz">twitter.com/byreqz</a><br/>
matrix:
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="https://matrix.to/#/@byreqz:matrix.org">matrix.to/#/@byreqz:matrix.org</a><br/>
steam:
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="https://steamcommunity.com/id/byreqz">steamcommunity.com/id/byreqz</a><br/>
keybase:
&nbsp;&nbsp;&nbsp;&nbsp;<a href="https://keybase.io/byreqz">keybase.io/byreqz</a><br/>
discord:
&nbsp;&nbsp;&nbsp;&nbsp;nils#9800<br/>
mail:
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;nils&#128231;nils.lol<br/>
portfolio:
&nbsp;&nbsp;<a href="https://byreqz.de">byreqz.de</a><br/>
services:
&nbsp;&nbsp;&nbsp;<a href="https://dash.byreqz.de">dash.byreqz.de</a><br/>
$:
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;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&#128231;byreqz.de</a>&nbsp;-&nbsp;<a href="https://keys.openpgp.org/search?q=nils%40byreqz.de">0x396A62D7D436749E</a><br/>
<a href="./keys/nils@nils.lol.asc">nils&#128231;nils.lol</a>&nbsp;&nbsp;-&nbsp;<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 "git: \e[1;35mhttps://git.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/#/@byreqz:matrix.org\n\e[0m"
printf "keybase \e[1;35mhttps://keybase.io/byreqz\n\e[0m"
printf "discord: \e[1;35mnils#9800\n\e[0m"
printf "mail: \e[1;35mnils[mail]nils.lol\n\e[0m"
printf "portfolio: \e[1;35mhttps://byreqz.de\n\e[0m"
printf "services: \e[1;35mhttps://dash.byreqz.de\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