Skip to content

Latest commit

 

History

History
46 lines (37 loc) · 1.41 KB

x3-about.md

File metadata and controls

46 lines (37 loc) · 1.41 KB
layout title permalink
page
About
/about/
<style> div#images { position: relative; height: 480px; } img#cycleImage1, img#cycleImage2 { opacity:1; transition: opacity 1s; position: absolute; } img#cycleImage1.fade, img#cycleImage2.fade { opacity:0; } </style>

This is the home of Nick Ager, software developer. I care passionately about usability and maintainability of the software I create. My interests span mobile development and embedded systems through to how we will be able to take advantage of future mega-core processors. I'm fascinated with how disparate programming languages effect our thought processes when solving problems and how the choice of language effects the efficiency/succinct nature of the expression of the solution.

I'm available for consultancy and contract development work.


To read about Nick Ager sailor, have a look at http://kikasailing.blogspot.com

<script> (function () { var div = document.getElementById('images'); var imgs = div.getElementsByTagName('img'), index = 0; imgs[0].class = 'fade'; setInterval(function () { imgs[index].className = ''; index = (index + 1) % imgs.length; imgs[index].className = 'fade'; }, 4000); }()); </script>