mirror of
https://github.com/byReqz/nils.lol.git
synced 2024-11-22 02:01:16 +00:00
70 lines
3.0 KiB
Bash
70 lines
3.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="icon" href="favicon.ico" type="image/x-icon" />
|
|
</head>
|
|
<body>
|
|
<p id="test">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:
|
|
<a href="https://git.nils.lol">https://git.nils.lol</a><br/>
|
|
github:
|
|
<a href="https://github.com/byreqz">https://github.com/byreqz</a><br/>
|
|
twitter:
|
|
<a href="https://twitter.com/byreqz">https://twitter.com/byreqz</a><br/>
|
|
matrix:
|
|
<a href="https://matrix.to/#/@byreqz:matrix.org">https://matrix.to/#/@byreqz:matrix.org</a><br/>
|
|
steam:
|
|
<a href="https://steamcommunity.com/id/byreqz">https://steamcommunity.com/id/byreqz</a><br/>
|
|
keybase:
|
|
<a href="https://keybase.io/byreqz">https://keybase.io/byreqz</a><br/>
|
|
discord:
|
|
nils#9800<br/>
|
|
mail:
|
|
nils //@// nils.lol<br/>
|
|
portfolio:
|
|
<a href="https://byreqz.de">https://byreqz.de</a><br/>
|
|
$:
|
|
sh <(curl -s https://nils.lol)<br/>
|
|
<br/><br/>
|
|
services hosted by me: <br/>
|
|
<a href="https://dash.byreqz.de">https://dash.byreqz.de</a><br/>
|
|
this site was blatantly "inspired" by: <br/>
|
|
<a href="https://hackerc.at">https://hackerc.at</a><br/>
|
|
and <br>
|
|
<a href="https://hashbang.sh">https://hashbang.sh</a><br/>
|
|
and <br>
|
|
<a href="https://github.com/susam/spcss">https://github.com/susam/spcss</a><br/>
|
|
</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 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 //@// 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"
|
|
exit 0
|