diff --git a/404.html b/404.html new file mode 100644 index 0000000..11769de --- /dev/null +++ b/404.html @@ -0,0 +1,52 @@ + + + + + + 404 • tilde.club + + + + +
+~~~  _  _      ___     _  _   ~~~
+~~~ | || |    / _ \   | || |  ~~~
+~~~ | || |_  | | | |  | || |_ ~~~
+~~~ |__   _| | | | |  |__   _|~~~
+~~~    | |   | |_| |     | |  ~~~
+~~~    |_|    \___/      |_|  ~~~
+    
+ +

file not found

+

+ Looks like this tilde is empty.
+ return home • + random tilde +

+ + + + +
+ +
+ + +
+ + Tilde Club Badge + +
+ + diff --git a/bling.png b/bling.png new file mode 100644 index 0000000..e19cf59 Binary files /dev/null and b/bling.png differ diff --git a/help.html b/help.html new file mode 100644 index 0000000..82eda71 --- /dev/null +++ b/help.html @@ -0,0 +1,47 @@ + + + + Sopel Help + + + + +

Sopel Help

+

ADMIN

+

ADMINCHANNEL

+

ANNOUNCE

+

CALC

+

CHOOSE

+

CLOCK

+

CORETASKS

+

COUNTDOWN

+

CURRENCY

+

DICE

+

EMOTICONS

+

HELP

+

INVITE

+

IPLOOKUP

+

ISUP

+

LMGTFY

+

PING

+

PRONOUNS

+

RAND

+

REDDIT

+

RELOAD

+

SAFETY

+
+

SEEN

+

TELL

+

TLD

+

TRANSLATE

+

UNICODE_INFO

+

UNITS

+

UPTIME

+

URL

+

VERSION

+

WIKIPEDIA

+

WIKTIONARY

+

XKCD

+ + + \ No newline at end of file diff --git a/index.cgi.bak b/index.cgi.bak new file mode 100755 index 0000000..56aca2c --- /dev/null +++ b/index.cgi.bak @@ -0,0 +1,17 @@ +#!/usr/bin/python +import random +words = ["World", "zoomer", "eater", "subwoofer", "yeeter", "zanger", "zooper", "zoonick", "zooshi", "auioshir"] +colors = ["black", "grey"] +print("Status: 200 OK") +print("Content-Type: text/html; charset=UTF-8") +print("Cache-Control: no-cache") +print("") +print(f""" + + + + +

Hello {random.choice(words)}!

+ + +""") diff --git a/index.html b/index.html new file mode 100644 index 0000000..2cdf2ea --- /dev/null +++ b/index.html @@ -0,0 +1,31 @@ + + + + + + + ~delgnam's webpage + + +

o/ Welcome to my tilde.club page :)

+
+ +
+ + + diff --git a/ircslang.html b/ircslang.html new file mode 100644 index 0000000..00f6812 --- /dev/null +++ b/ircslang.html @@ -0,0 +1,60 @@ + + + + + + + ~delgnam's IRC slang collection + + + Back Home + +

IRC slang collection (I have only learnt this much so far!)

+ +
+
+ +
+ + + + + \ No newline at end of file diff --git a/od_illusion.png b/od_illusion.png new file mode 100644 index 0000000..3a5c3ec Binary files /dev/null and b/od_illusion.png differ diff --git a/skull.png b/skull.png new file mode 100644 index 0000000..c356317 Binary files /dev/null and b/skull.png differ diff --git a/sshfs.html b/sshfs.html new file mode 100644 index 0000000..80706fc --- /dev/null +++ b/sshfs.html @@ -0,0 +1,25 @@ + + + + + + + SSHFS utility + + + Back Home + +

Using the sshfs utility

+
+ sshfs on github +

I installed it by doing

+ $ sudo apt install sshfs +

this installed version 3.7.3 . Then I mounted my $HOME on tilde.club using

+ $ mkdir -p /tmp/tcfs/ && sshfs delgnam@tilde.club:/home/delgnam/ /tmp/tcfs/ +

It'd be helpful if you set up ~/.ssh/config on your box :p

+

Syntax as given on sshfs' github page:

+ sshfs [user@]hostname:[directory] mountpoint +

Will write more once I explore the utility more

+
+ + \ No newline at end of file diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..3c3fb1a --- /dev/null +++ b/styles.css @@ -0,0 +1,53 @@ +body { + background-color: #272935; + cursor: url('skull.png') 16 16, pointer; +} +h1 { + color: #4A9442; + border: 2px solid #B479A1; + border-radius: 20px; + text-align: center; +} +h2 { + color: #4A9442; + border: 2px solid #B479A1; + border-radius: 20px; + text-align: center; +} +blockquote { + color: #BBDE6C; + border: 3px solid #52FA7C; + padding: 30px; + margin: 40px; +} +section { + background-color: transparent; + color: #F8F8F1; + border: 1px solid crimson; + padding: 10px; + align-content: center; +} +li { + color: burlywood; + text-align: left; + padding: 5px; + font-family: monospace; +} +a:link { + color: #B7BE6F; +} +a:visited { + color: #84F51A; + +} +a:hover { + color: #5B98BE; +} +a:active { + color: #FF7700; +} +#blogtext { + font-family: monospace; + font-size: large; + text-align: left; +} \ No newline at end of file