2014-01-23 23:08:42 -05:00
|
|
|
<?php
|
|
|
|
include_once("../common.php");
|
|
|
|
include("../header_top.php");
|
|
|
|
?>
|
2011-02-24 14:25:26 -05:00
|
|
|
<title>Projects - aclindsay.com</title>
|
|
|
|
<?php include("../header_bottom.php"); ?>
|
|
|
|
|
|
|
|
<div id="content">
|
|
|
|
<div id="main">
|
|
|
|
<h2>Projects</h2>
|
|
|
|
|
2011-04-17 13:40:49 -04:00
|
|
|
<h3>Personal</h3>
|
2012-12-12 23:22:31 -05:00
|
|
|
<p>Most self-respecting geeks I know tend to leave personal projects in their wake in varying stages of completion. Here is a woefully incomplete and out-of-date listing of mine:</p>
|
2017-09-27 20:28:20 -04:00
|
|
|
<p><a href="https://github.com/aclindsa/moneygo" />MoneyGo</a>, a personal finance management web application featuring double-entry accounting and importing transactions via OFX with the help of <a href="https://github.com/aclindsa/ofxgo">ofxgo</a>. </p>
|
2012-12-12 23:22:31 -05:00
|
|
|
<p><a href="http://aedrix.org">Aedrix</a>, a simple OS kernel which runs on ARM (inclusing the Raspberry Pi) and x86.</p>
|
2014-01-24 22:44:19 -05:00
|
|
|
<p>An <a href="<?php echo get_protocol(); ?>blog.aclindsay.com/2011/06/the-sorry-state-of-open-source-dropbox-clones/">open-source Dropbox clone</a> written in python, <a href="https://github.com/aclindsa/asink">Asink</a>.</p>
|
2017-09-27 20:28:20 -04:00
|
|
|
<p>My <a href="https://github.com/aclindsa">github page</a> has several other projects I have worked on over time.</p>
|
|
|
|
|
|
|
|
<h3>Thesis Research</h3>
|
|
|
|
<p>For my thesis research, I worked on <a href="http://chronoslinux.org">ChronOS Linux</a>, a real-time addition to the Linux kernel, as well as associated libraries. The ChronOS kernel is built on top of the <code>PREEMPT_RT</code> patch for the Linux kernel, and allows for writing advanced real-time schedulers which can be be inserted into the running kernel as kernel modules.</p>
|
|
|
|
|
2011-02-24 14:25:26 -05:00
|
|
|
</div>
|
|
|
|
<div id="sidebar">
|
|
|
|
<span>Other Projects I Like:</span>
|
|
|
|
<ul>
|
|
|
|
<li><a href="http://kernel.org">Linux Kernel</a></li>
|
|
|
|
<li><a href="http://archlinux.org">Arch Linux</a></li>
|
2012-12-12 23:22:31 -05:00
|
|
|
<li><a href="http://golang.org/">Go Programming Language</a></li>
|
|
|
|
<li><a href="http://plan9.bell-labs.com/plan9/">Plan 9 from Bell Labs</a></li>
|
|
|
|
<li><a href="http://dwm.suckless.org/">dwm Window Manager</a></li>
|
2011-02-24 14:25:26 -05:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php include("../footer.php"); ?>
|