+
+ - :s → akward
+ - :) → smile
+ - :D → happy
+ - XD → laughing
+ - ^^ → happy eyes
+ - o/ → hi
+ - \o → hi with right hand
+ - c[_] → cup of coffee
+ - \o/ → Yess, I/we did it
+ - D: → sad
+ - xox → hug and kiss
+ - ;) → wink
+ - :o → surprised
+ - :O → surprised
+ - ;_; → cry
+ - T_T → cry
+ - T-T → cry
+ - B) → smiley face with sunglasses
+ - BD → showing off swag with sunglasses (cool)
+ - ~= → approximately equal to
+ - != → not equal to
+ - :/ → a bit under the weather, annoyed, sad etc..
+ - __/\__ → folded hands
+ - >:( → angry
+ - c:< → happy
+ - >:D → extremely happy
+ - //\/()\/\\ → spider
+ - ~_~ → smiley showing genuinely hurt
+ - :B → rabbit dork
+ - 8) → sunglasses face, but kind of cartoon-ish
+
+
+
+
+
+
+
\ 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