Sha256: 8f6f5656aaad6bd9bcc12e2c92efeaf8a71bd5ce02dc4a34af7cc93e094d69da

Contents?: true

Size: 1.3 KB

Versions: 3

Compression:

Stored size: 1.3 KB

Contents

---
layout: master
title: Open-Source Projects
---

<h2>Open-Source</h2>

<p>I have some tiny open-source projects hosted on <a href='http://github.com/larrycai' rel='me' target='_blank'>GitHub</a>, and listed below</p>

<div id='github-projects' class='big'>
  <div class="repo">  <h3><a href="http://github.com/larrycai/doxia-module-markdown">doxia-module-markdown</a></h3>  <span class="desc">markdown plugin for maven site</span></div>
  <div class="repo">  <h3><a href="http://github.com/larrycai/astyleclipse">astyleclipse</a></h3>  <span class="desc">astyle c++ format plugin for eclipse 3.1 (doesn't works now)</span></div>
  <div class="repo">  <h3><a href="http://github.com/larrycai/redmine-plugin">redmine-plugin (forked)</a></h3>  <span class="desc">redmine plugin inside jenkins to connect with redmine</span></div>
</div>

<script type="text/javascript" charset="utf-8">
  $.githubUser('larrycai', function(data) {
    $('#github-projects').html('');
    
    var repos = data.user.repositories;
    repos.sort(function(a,b) {
      return b.watchers - a.watchers;
    });
    
    $(repos).each(function() {
      $('#github-projects').append("\
<div class='repo'>\
  <h3><a href='" + this.url + "'>" + this.name + "</a></h3>\
  <span class='desc'>"+this.description+"</span>\
</div>");
    });
  });
</script>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
mkblog-0.0.3 templates/open-source.html
mkblog-0.0.2 templates/open-source.html
mkblog-0.0.1 templates/open-source.html