diff options
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 45 |
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> |
