[Initial record Dino Morelli **20140323222250 Ignore-this: 6ecd1ac8cf3743c37a894d0db07e5b63 ] addfile ./build.sh hunk ./build.sh 1 +#! /bin/bash + +projmd /home/dino/mywork.conf index.md.template | pandoc -s --template=index.htmltemplate -o /var/www/d/index.html addfile ./index.htmltemplate hunk ./index.htmltemplate 1 + + + + + + +$for(author-meta)$ + +$endfor$ +$if(date-meta)$ + +$endif$ + $if(title-prefix)$$title-prefix$ - $endif$$pagetitle$ + +$if(quotes)$ + +$endif$ +$if(highlighting-css)$ + +$endif$ +$for(css)$ + +$endfor$ +$if(math)$ + $math$ +$endif$ +$for(header-includes)$ + $header-includes$ +$endfor$ + + +$for(include-before)$ +$include-before$ +$endfor$ +$if(title)$ +
+

$title$

+$for(author)$ +

$author$

+$endfor$ +$if(date)$ +

$date$

+$endif$ +
+$endif$ +$if(toc)$ +
+$toc$ +
+$endif$ +$body$ +$for(include-after)$ +$include-after$ +$endfor$ + + addfile ./index.md.template hunk ./index.md.template 1 +% Dino Morelli + +programmer, Linux and open-source enthusiast + +Raleigh, NC USA + +email [dino@ui3.info](mailto:dino@ui3.info) +If you are emailing me or otherwise sending data, I encourage you to encrypt with my public key: [501AE8C5-dino-pub.asc](http://ui3.info/d/501AE8C5-dino-pub.asc) + +Fingerprint for this key: BE3C 1A81 1CBF 3A3A C3A6 518A 9F0F 9E57 501A E8C5 + +[Please take a look at my resume](http://ui3.info/d/cv-MorelliD.txt) + + +## My projects + +A selection of some of my work. + +${projmd_projects} + +If you'd like, [browse everything](http://ui3.info/darcs/) we've got in source control on our server. + + +## Participating + +These projects are maintained using very powerful distributed version control software called [darcs](http://darcs.net/). It's available for the major platforms. + +Each of these source links above is also the URL for cloning the source code with darcs. Like this: + +> $$ darcs get http://ui3.info/darcs/epub-tools + + +If something I've done has been useful and you feel compelled, donations welcome +Bitcoin: 12Zn3wxN5jwTJdjEPYQWHxvqnintvwdFbw + +--- + +This page was automatically generated by the projmd software listed above and the resulting [Markdown](http://daringfireball.net/projects/markdown/) was converted with [pandoc](http://johnmacfarlane.net/pandoc/). + +$projmd_date addfile ./mkhomepages.sh hunk ./mkhomepages.sh 1 +#! /bin/bash + +projPath='/var/www/d/proj' + +for mdPath in $(find /var/lib/darcs -name 'README.md') +do + projName=$(basename $(dirname $mdPath)) + htmlPath="${projPath}/${projName}.html" + + echo "$mdPath -> $htmlPath" + + pandoc -s -o $htmlPath $mdPath + chmod 644 $htmlPath +done