summaryrefslogtreecommitdiffstats
path: root/index.html
diff options
context:
space:
mode:
authorSadeep Madurange <sadeep@asciimx.com>2025-10-24 15:05:39 +0800
committerSadeep Madurange <sadeep@asciimx.com>2025-10-24 22:59:58 +0800
commit374582322b930635c0b12472d122034b9dc09e54 (patch)
treeaaf26f25f05b665845e0dd1d1c951c491173f8da /index.html
parent7c9757f4c7ac6b6eb7b64aabce1da55ea77d3036 (diff)
downloadwww-374582322b930635c0b12472d122034b9dc09e54.tar.gz
Experiment with Ed.HEADmaster
Diffstat (limited to 'index.html')
-rw-r--r--index.html45
1 files changed, 45 insertions, 0 deletions
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..2c8d7af
--- /dev/null
+++ b/index.html
@@ -0,0 +1,45 @@
+---
+layout: default
+title: ASCIIMX - DEV
+---
+
+<div class="introduction">
+ <p>
+ <img src="/assets/images/collage.jpeg" alt="image">
+ </p>
+
+ <h1>hi.</h1>
+ <p>
+ My name is Sadeep. I’m a computer programmer and a tinkerer with
+ a passion for microcontrollers, C, and software that embodies the
+ Unix philosophy. I enjoy history and literature too. I find them to
+ be an effective compass for navigating life. I have a BSc. (Hons)
+ in Mathematics from Nanyang Technological University, Singapore.
+ </p>
+
+ <p>
+ Git: <a href="https://git.asciimx.com" class="external"
+ target="_blank" rel="noopener noreferrer">git.asciimx.com</a>
+ <br>
+ Email: <a href="mailto:sadeep@asciimx.com">sadeep@asciimx.com</a>
+ (<a href="/asciimx.asc" target="_blank">PGP key</a>)
+ </p>
+
+</div>
+
+<hr>
+
+<h1>Latest Posts</h1>
+
+<ul>
+ {% assign docs = site.blog | concat: site.projects %}
+ {% assign latest = docs | sort: 'date' | reverse %}
+ {% for item in docs %}
+ <li>
+ <h2><a href="{{ item.url }}">{{ item.title }}</a></h2>
+ {{ item.excerpt }}
+ </li>
+ {% endfor %}
+</ul>
+
+</div>