From efef6e37e000d83d2323cdfa1ee7424e4274444b Mon Sep 17 00:00:00 2001 From: venomade Date: Thu, 27 Feb 2025 17:13:30 +0000 Subject: Initial Commit --- 404.html | 29 +++++++++ articles.html | 27 ++++++++ credits.html | 36 +++++++++++ css/style.css | 154 +++++++++++++++++++++++++++++++++++++++++++++ index.html | 77 +++++++++++++++++++++++ nsfaq.html | 129 +++++++++++++++++++++++++++++++++++++ projects.html | 27 ++++++++ res/bkg.jpg | Bin 0 -> 296112 bytes res/bkg_min.jpg | Bin 0 -> 73904 bytes res/favicon.ico | Bin 0 -> 22218 bytes res/site_eww.png | Bin 0 -> 101779 bytes res/site_lynx.png | Bin 0 -> 22006 bytes res/venomade_pfp.jpg | Bin 0 -> 56596 bytes res/venomade_pfp_small.jpg | Bin 0 -> 14581 bytes startpage.html | 57 +++++++++++++++++ 15 files changed, 536 insertions(+) create mode 100644 404.html create mode 100644 articles.html create mode 100644 credits.html create mode 100644 css/style.css create mode 100644 index.html create mode 100644 nsfaq.html create mode 100644 projects.html create mode 100644 res/bkg.jpg create mode 100644 res/bkg_min.jpg create mode 100644 res/favicon.ico create mode 100644 res/site_eww.png create mode 100644 res/site_lynx.png create mode 100644 res/venomade_pfp.jpg create mode 100644 res/venomade_pfp_small.jpg create mode 100644 startpage.html diff --git a/404.html b/404.html new file mode 100644 index 0000000..799e0a4 --- /dev/null +++ b/404.html @@ -0,0 +1,29 @@ + + + + venomade.com - 404 + + + + +
+ +
+ +
+ <- Return Home +
+ +
+ +

+ + 404! Looks like you took a wrong turn! + + +

+ +
+ +
+ diff --git a/articles.html b/articles.html new file mode 100644 index 0000000..9a29a68 --- /dev/null +++ b/articles.html @@ -0,0 +1,27 @@ + + + + venomade.com - articles + + + + +
+ +
+ +
+ <- Return Home +
+ +
+ +

+ Nothing yet, come back soon! + +

+ +
+ +
+ diff --git a/credits.html b/credits.html new file mode 100644 index 0000000..cfcdd04 --- /dev/null +++ b/credits.html @@ -0,0 +1,36 @@ + + + + venomade.com - credits + + + + +
+ +
+ +
+ <- Return Home +
+ +
+ +

+ Credits + +

+ This site would not have been possible for me to make from scratch as I have very little clue about HTML and CSS + and even less of a clue about design. Here are the people/websites that I have stolen sourced from: +

+ +
+ +
+ +
+ diff --git a/css/style.css b/css/style.css new file mode 100644 index 0000000..c27bbda --- /dev/null +++ b/css/style.css @@ -0,0 +1,154 @@ +/* CSS Forked from "https://openbsd.org/openbsd.css" */ + +:link { + color: #23238E; +} + +:visited { + color: #23238E; +} + +@keyframes moveBackground { + from { + background-position: 0 0; + } + to { + background-position: 446px 586px; + } +} + +body { + background-color: #FFFFFF; + background-image:url('../res/bkg.jpg'); + color: #111111; + margin: 15px auto; + padding: 0 10px; + + background-repeat: repeat; + animation: moveBackground 20s linear infinite; +} + +code { + white-space: nowrap; +} + +@media (min-width: 800px) { + body { + max-width: 85%; + } +} + +tt { + white-space: pre; +} + +/* sidebar layout */ + +body { + height: 100%; + max-width: 100%; + position: absolute; + bottom: 0; + left: 0; + right: 0; + top: 0; + display: table; + padding: 0; + margin: 0; +} + +nav, +article, +figure, +aside { + display: table-cell; + padding: 4px; +} + +nav, +figure { + border-right: 1px solid; + background-color: #dfe5fb; + border-color: #040361; +} + +nav header { + margin: 0; + font-size: 15pt; + font-weight: bolder; + white-space: nowrap; +} + +nav ul { + margin-top: 0; + margin-bottom: 1em; + padding-left: 0; +} + +nav li { + list-style-type: none; + list-style-position: inside; + margin-left: 0.5em; +} + +#callout { + color: #E00000; + font-weight: bold; + text-align: center; +} + +.not-openbsd #callout { + color: #0000A0; + font-weight: normal; +} + +main, +footer { + display: table-row; +} + +nav { + vertical-align: top; +} + +figure, +aside { + vertical-align: bottom; +} + +/* Eggramen */ +.box { + margin-bottom: 4px; +} + +.box, .footer-box { + border: 1px solid #040361; +} + +/*Inner content div for boxes. Padding goes here so sidebar headers etc can keep their no-margin look.*/ +.inner { + background: #ffffff; + padding: 10px 25px; +} + +.inner img { + max-width: 100%; /*Prevent image overflow.*/ + height: auto; +} + +.box, .title-pic img { + overflow: hidden; /*Force inner divs to conform to rounded corners.*/ +} + + +.inline-image { + float: left; + margin-right: 25px; /* Space between image and text */ +} + +blockquote { + border-left: #4d4385 3px solid; + background: #d8d4ec; + padding: 0.1px 0.75rem; + margin: 0 1.5rem; + } diff --git a/index.html b/index.html new file mode 100644 index 0000000..9a47136 --- /dev/null +++ b/index.html @@ -0,0 +1,77 @@ + + + + venomade.com - home + + + + +
+ + +
+
+ + + [terry davis petting a cat] + + +

+ + Welcome to venomade.com! + + +

+ I am Venomade, a Student and Junior Software Engineer currently working with C and Common Lisp. + You can read more about me in my NSFAQ. + +

+ I'm always working on some personal project, however none of them are currently fit for public release. + When that changes you'll be able to find them here. + +

+ For anything else, just use the sidebar and have a good rest of your day! + +

+
+ +
+ + diff --git a/nsfaq.html b/nsfaq.html new file mode 100644 index 0000000..3bf8c6c --- /dev/null +++ b/nsfaq.html @@ -0,0 +1,129 @@ + + + + venomade.com - nsfaq + + + + +
+ +
+ +
+ <- Return Home +
+ +
+ +

+ + Why Venomade? + +

+ “Venomade” comes from a song I quite like. + I picked it because it rolls of the tongue easily enough, it’s not + entirely unique but it’s still memorable, and most importantly it’s .com domain was available. +
+ +

+ + NSFAQ? + +

+ NSFAQ stands for Not So Frequently Asked Questions +
+ +

+ + Which programming languages do you use? + +

+ I started programming in Javascipt and Python at school, + I then discovered Go in 2018 and it quickly became my favourite programming language. + Learning Go inspired me to work with C, in order to program more efficiently in C, + I studied Haskell, which flowed nicely into programming Rust. +
+ Nowadays however, I prefer to stick with C because it is where I feel most comfortable, + though I have been enjoying LISP as of late. +
+ +

+ + What Music do you listen to? + +

+ I listen to quite a wide range of genres so instead, here are some artists I particularly like: +
    +
  • Tatsuro Yamashita
  • +
  • Night Tapes
  • +
  • Greydon Square
  • +
  • Буерак
  • +
  • Источник
  • +
  • Terno Rei
  • +
  • Macroblank
  • +
  • A.L.I.S.O.N
  • +
  • Dakota
  • +
+ I have purchased albums from all the above artists and keep lossless digital copies in my collection. I do not stream music. +
+ +

+ + What setup do you use? + +

+ Hardware: +
    +
  • Lenovo T440P (The last good laptop) +
      +
    • i7-4712mq
    • +
    • 16GB Ram
    • +
    • 1080p Screen
    • +
    • T540 Trackpad
    • +
    • 3 SSDs, 1 M.2 and 2 SATA
    • +
    • Coreboot
    • +
    +
  • +
  • Feker Alice 80 Keyboard
  • +
  • Deft Pro Trackball Mouse
  • +
+ Software: +
    +
  • Debian 12
  • +
  • XFCE
  • +
  • Emacs
  • +
  • Strawberry
  • +
+
+ +

+ + Can I copy your configs? + +

+ Dotfiles coming soon, promise. +
+ + +

+ + Why does your website look so old/ugly? + +

+ I wrote it in Emacs. +

+ It does however have some benefits over modern websites. It uses no JavaScript, + respects your default font choice, loads superfast (even on dial-up) + and can display fully almost anywhere! +

+ eww browser +
+ lynx browser +

+ +
+ +
+ +
diff --git a/projects.html b/projects.html new file mode 100644 index 0000000..3fe7698 --- /dev/null +++ b/projects.html @@ -0,0 +1,27 @@ + + + + venomade.com - projects + + + + +
+ +
+ +
+ <- Return Home +
+ +
+ +

+ Nothing yet, come back soon! + +

+ +
+ +
+ diff --git a/res/bkg.jpg b/res/bkg.jpg new file mode 100644 index 0000000..f13803e Binary files /dev/null and b/res/bkg.jpg differ diff --git a/res/bkg_min.jpg b/res/bkg_min.jpg new file mode 100644 index 0000000..1874a8b Binary files /dev/null and b/res/bkg_min.jpg differ diff --git a/res/favicon.ico b/res/favicon.ico new file mode 100644 index 0000000..5887366 Binary files /dev/null and b/res/favicon.ico differ diff --git a/res/site_eww.png b/res/site_eww.png new file mode 100644 index 0000000..00f6da5 Binary files /dev/null and b/res/site_eww.png differ diff --git a/res/site_lynx.png b/res/site_lynx.png new file mode 100644 index 0000000..046265d Binary files /dev/null and b/res/site_lynx.png differ diff --git a/res/venomade_pfp.jpg b/res/venomade_pfp.jpg new file mode 100644 index 0000000..eb2e6e7 Binary files /dev/null and b/res/venomade_pfp.jpg differ diff --git a/res/venomade_pfp_small.jpg b/res/venomade_pfp_small.jpg new file mode 100644 index 0000000..bc320d3 Binary files /dev/null and b/res/venomade_pfp_small.jpg differ diff --git a/startpage.html b/startpage.html new file mode 100644 index 0000000..4966f09 --- /dev/null +++ b/startpage.html @@ -0,0 +1,57 @@ + + + + startpage + + + + +
+ + + +
+ + + -- cgit 1.4.1-2-gfad0