Skip to content

Instantly share code, notes, and snippets.

View ShawnClake's full-sized avatar
💭
Coding

Shawn Clake ShawnClake

💭
Coding
  • Calian
  • Canada
View GitHub Profile
@ShawnClake
ShawnClake / openstack-heat-template-4i_2n_2v.yaml
Last active November 28, 2017 16:57
OpenStack Heat Template - 4i_2n_2v
heat_template_version: 2017-09-01
parameters:
key_name:
type: string
description: Name of a KeyPair
flavor_name:
type: string
description: Name of a Flavor
image_name:
@ShawnClake
ShawnClake / openstack-heat-template-4i_2n_1v.yaml
Last active November 29, 2017 18:56
OpenStack Heat Template - 4i_2n_1v
heat_template_version: 2017-02-24
parameters:
key_name:
type: string
description: Name of a KeyPair
flavor_name:
type: string
description: Name of a Flavor
image_name:
@ShawnClake
ShawnClake / RubiconLineCount.sh
Created October 9, 2017 02:26
Counting lines for the Rubicon repositories
echo "========="
echo "RRPG Core"
echo "========="
cd rrpg-core
git ls-files | grep "\.java$" | xargs wc -l
cd ../
echo "===RRPG Core==="
echo ""