From 57b2544ff0c1a501a04876eb5ca8e143439685e7 Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Tue, 15 Aug 2023 23:33:10 +0200 Subject: Add the ‘About Me’ page MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/ame/index.html | 105 +++++++++++++++++++++++++++++++++++++++++++++++++++++ src/style.css | 18 ++++++--- 2 files changed, 117 insertions(+), 6 deletions(-) create mode 100644 src/ame/index.html diff --git a/src/ame/index.html b/src/ame/index.html new file mode 100644 index 0000000..fbb04db --- /dev/null +++ b/src/ame/index.html @@ -0,0 +1,105 @@ + + + + m4_include(head.html) + + +
+
+

About Me

+ m4_include(nav.html) +
+ +
+
+

One obvious advantage [of lisp syntax] is that there + hardly *is* any syntax. You can learn enough Lisp + syntax to write useful programs in about ten minutes.

+
+
+ Mark J. Dominus +
+
+
+ +
+

+ If you are a prospective employer, you can view + my CV + here. +

+ +

Who Am I

+ +

+ I’m Thomas. A self-taught software developer from Brazil and + the Netherlands who grew up in the Middle East. I started to + code at the age of 9, writing batch scripts 1 on + my schools Windows 7 machines to toggle folder visibility with a + password. That became necessary because the + genius IT guys at our school decided we + should all save our work onto a + shared NAS where everyone has + read+write access to everyone elses work. How could that + ever go wrong. +

+ + + +

+ These days my interests lie mostly + in CLI development. I take a great joy + in writing simple yet highly effective tools to solve problems + not only in the easiest way, but also in the most extensible way + possible. I think my batch file-renaming + utility mmv does a great job at + that. +

+ +

+ That being said, I also have a great interest in operating + systems, shells, and really anything that could be considered + remotely low-level. I’m not totally afraid of front-end + development, although I did write this site in plain + HTML and CSS + because modern HTML frameworks are the + worst excuses for software I have ever seen. +

+ +

+ As for my religious- and political beliefs, let’s make those + clear: +

+

+
+ +
+ + + + diff --git a/src/style.css b/src/style.css index 8277d0e..07c8d8c 100644 --- a/src/style.css +++ b/src/style.css @@ -219,12 +219,18 @@ dl { pointer-events: none; } - abbr.cpu::before { content: 'Central Processing Unit'; } - abbr.ec::before { content: 'Embedded Controller'; } - abbr.gnu::before { content: 'GNU’s Not UNIX'; } - abbr.html::before { content: 'Hypertext Markup Language'; } - abbr.led::before { content: 'Light-Emitting Diode'; } - abbr.rgb::before { content: 'Red Green Blue'; } + abbr.cli::before { content: 'Command-Line Interface'; } + abbr.cpu::before { content: 'Central Processing Unit'; } + abbr.css::before { content: 'Cascading Stylesheets'; } + abbr.cv::before { content: 'Curriculum Vitæ'; } + abbr.ec::before { content: 'Embedded Controller'; } + abbr.gnu::before { content: 'GNU’s Not UNIX'; } + abbr.html::before { content: 'Hypertext Markup Language'; } + abbr.it::before { content: 'Information Technology'; } + abbr.led::before { content: 'Light-Emitting Diode'; } + abbr.nas::before { content: 'Network Attached Storage'; } + abbr.rgb::before { content: 'Red Green Blue'; } + abbr.xml::before { content: 'Extensible Markup Language'; } } @media (max-width: 40em) { -- cgit v1.2.3