Skip to content

Instantly share code, notes, and snippets.

---
# Configures the system for deploying My School Day
- name: Ensure backend directory exists
file: path=/apps/backend state=directory owner=app group=apps mode=0770
- name: Ensure shared directory exists
file: path=/apps/shared state=directory owner=app group=apps mode=0770
- name: Ensure shared sub directories exist
@antoinelyset
antoinelyset / gist:6596651
Last active December 23, 2015 06:49 — forked from brixen/gist:6596556

Notable papers for performance evaluation:

  • Wake Up and Smell the Coffee: Evaluation Methodology for the 21st Century link
  • Statistically Rigorous Java Performance Evaluation link
  • A unifying approach to performance analysis in the Java environment link
  • Dynamic Metrics for Java link

Caveats: This list is not exhaustive nor are the papers necessarily correct.

Notes: These all discuss Java as it was the only programming language to exist for a long time before lesser languages like SELF, Smalltalk, C, Ruby, etc. were discovered.

exec { 'bundle install':
command => '/usr/local/rvm/bin/rvm 1.9.3@rocci-server do bundle install',
cwd => '/home/occi/rocci-server',
logoutput => true,
}