Initial commit
This commit is contained in:
commit
4b8942d7b6
5
codersquack.nl/.well-known/matrix/client
Normal file
5
codersquack.nl/.well-known/matrix/client
Normal file
@ -0,0 +1,5 @@
|
||||
{
|
||||
"m.homeserver": {
|
||||
"base_url": "https://matrix.codersquack.nl"
|
||||
}
|
||||
}
|
3
codersquack.nl/.well-known/matrix/server
Normal file
3
codersquack.nl/.well-known/matrix/server
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"m.server": "matrix.codersquack.nl:443"
|
||||
}
|
BIN
codersquack.nl/e.png
Normal file
BIN
codersquack.nl/e.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.8 KiB |
60
codersquack.nl/index.html
Normal file
60
codersquack.nl/index.html
Normal file
@ -0,0 +1,60 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<meta property="og:title" content="Codersquacc">
|
||||
<meta property="og:description" content="My name is e_ and welcome to my website1!1!1!!">
|
||||
<meta property="og:image" content="https://codersquack.nl/e.png"/>
|
||||
<meta property="og:image:type" content="image/png" />
|
||||
<meta property="og:image:width" content="110" />
|
||||
<meta property="og:image:height" content="110" />
|
||||
<title>Codersquack</title>
|
||||
<link rel="stylesheet" type="text/css" href="/style.css" />
|
||||
<link rel="icon" type="image/png" href="/e.png">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<center><h1>Hello world!</h1></center>
|
||||
<span style="color: green">
|
||||
Goodbye duckcloud, hello RPi!<br>
|
||||
<a href="https://duckcloud.pcprojects.tk">Duckcloud</a> has served me pretty well however I remembered I have an unused Raspberry Pi..<br>
|
||||
Duckcloud is still a pretty great service though!!
|
||||
</span><br><br>
|
||||
|
||||
This is the third time i have redone my page.<br>Hopefully it is better.<br><br>
|
||||
|
||||
My name is e_ (although i do sometimes go by coderlol or coder() ) and i live in the Netherlands.<br>
|
||||
I like to code, especially in python. HOWEVER i really want to also become good at C.<br><br>
|
||||
<h3>Projects</h3>
|
||||
I have more projects than this, but those are either discontinued or old enough to be irrelevant.<br>
|
||||
Though i might make another website thingy about these projects that aren't listed here.
|
||||
<h4><a href="jsam.codersquack.nl">JSArt Modded</a></h4>
|
||||
This is basically a clone of a clone. You might have heard of "daydun random", well my friend Ponali made a clone of it called "JSArt".<br>
|
||||
Now i wanted to make some adjustments to it so I made "JSArt Modded". I don't maintain it anymore, Ponali and Mike do so I guess he is the guy to go to if you want a feature to be added.<br>
|
||||
I consider this project finished in my eyes though.
|
||||
<br>
|
||||
there are more projects i swear
|
||||
<h3>Friends' Websites</h3>
|
||||
<ul>
|
||||
<li><a href="https://nicejs.codersquack.nl">Nicejsisverycool's website</a></li>
|
||||
<li><a href="https://auby.duckdns.org">Paperluigis' website</a></li>
|
||||
<li><a href="https://eelel.great-site.net/">Mari's website (previously known as eelel)</a></li>
|
||||
<li><a href="https://slinx92.github.io/">Slinx92's website</a></li>
|
||||
<li><a href="https://portfolio.milanlakatos.repl.co/">Mike223's website</a></li>
|
||||
<li><a href="https://theredbluecube3.github.io/">TheRedBlueCube's website</a></li>
|
||||
<li><a href="https://gdplayer.neocities.org/">GDPlayer's website</a></li>
|
||||
<li><a href="https://spacepizza.neocities.org/">SpacePizza's website</a></li>
|
||||
<li><a href="stuff.ponali.repl.co">Ponali's website</a></li>
|
||||
</ul>
|
||||
<h3>Contacts</h3>
|
||||
My twitter account: <a href="https://twitter.com/e_teh_void">@e_teh_void</a><br>
|
||||
My replit username: <a href="https://replit.com/@Fox551">@Fox551</a><br>
|
||||
My github account: <a href="https://github.com/BadPythonCoder">BadPythonCoder</a><br>
|
||||
My shitty youtube channel: <a href="https://www.youtube.com/channel/UCMTk6cxXE7etTtk_JdVL7PA">The e</a><br>
|
||||
My discord username: <a href="https://discord.com/users/548811963577401365">codersquack</a>
|
||||
|
||||
<br><br><br>
|
||||
</body>
|
||||
</html>
|
29
codersquack.nl/style.css
Normal file
29
codersquack.nl/style.css
Normal file
@ -0,0 +1,29 @@
|
||||
html, body {
|
||||
background-color: #11aa99;
|
||||
color: #fff;
|
||||
font-size: 30px;
|
||||
font-family: Calibri;
|
||||
-webkit-text-stroke: 0.6px black;
|
||||
}
|
||||
|
||||
h1 {
|
||||
-webkit-text-stroke: 2px black;
|
||||
}
|
||||
|
||||
#cityscape {
|
||||
/* position: absolute; sus */
|
||||
bottom: 0;
|
||||
width: 99%;
|
||||
height: 150px;
|
||||
display: inline-block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
background-image: url(/city.png);
|
||||
background-repeat: repeat-x;
|
||||
background-size: auto 100%;
|
||||
}
|
||||
|
||||
#credits {
|
||||
-webkit-text-stroke: 0px;
|
||||
font-size: 15px;
|
||||
}
|
1
jsam.codersquack.nl
Submodule
1
jsam.codersquack.nl
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit 6e65dffe2e9f77a892af1024b76b04867508a6ea
|
1
modbox.codersquack.nl
Submodule
1
modbox.codersquack.nl
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit d63a63bb45de7c26912cf6f3b046289c53715859
|
Loading…
x
Reference in New Issue
Block a user