Skip to content

Instantly share code, notes, and snippets.

#!/usr/bin/env ruby
# A few helpful tips about the Rules file:
#
# * The string given to #compile and #route are matching patterns for
# identifiers--not for paths. Therefore, you can’t match on extension.
#
# * The order of rules is important: for each item, only the first matching
# rule is applied.
#
@plessl
plessl / PGBIO-Application.txt
Created September 16, 2011 14:58
Application Form PGBIO
Application form for Project Group "Bioinformatics Custom Computers"
====================================================================
In order to make a decision on the admission to the project group, we kindly ask you to fill out the following questionnaire on your previous knowledge and motivation. We are well aware of the fact that most of you will not have previous knowledge in all areas. This is perfectly fine, as you will learn what is needed during the course of the project group. Using this questionnaire we want to make sure that we can start with a team that has complementary expertise to cover all relevant areas of the project.
1. What is the title of your Bachelor's thesis and who was your advisor?
2. What lectures have you completed in the area of ESS (embedded systems and system software) at UPB?
3. What seminars have you attended?
@plessl
plessl / gist:1004414
Created June 2, 2011 13:24
Publishing a website generated by nanoc to Github
require 'nanoc3/tasks'
desc "Publish site to Github"
task :publish do
src = 'output/'
dst = 'username.github.com/'
puts '==== Syncing working directory...'
sh("rsync -arv --delete --exclude '.git' #{src} #{dst}")