Clone and install HMR...
git clone https://github.com/hacksalot/HackMyResume.git
cd HackMyResume
npm install
Install Mocha and Grunt...
sudo npm install -g mocha
sudo npm install -g grunt-cli
Clone and install HMR...
git clone https://github.com/hacksalot/HackMyResume.git
cd HackMyResume
npm install
Install Mocha and Grunt...
sudo npm install -g mocha
sudo npm install -g grunt-cli
Install the [latest wkhtmltopdf binary][1], extract it, and copy the wkhtmltopdf and wkhtmltoimage executables to /usr/bin/
.
wget https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.4/wkhtmltox-0.12.4_linux-generic-amd64.tar.xz
tar xf wkhtmltox-0.12.4_linux-generic-amd64.tar.xz
cd ./wkhtmltox/bin/
sudo cp -R ./* /usr/bin/
wkhtmltopdf -V
{ | |
"$schema": "http://json-schema.org/draft-04/schema#", | |
"title": "FRESH Resume Schema", | |
"type": "object", | |
"additionalProperties": true, | |
"properties": { | |
"name": { | |
"type": "string", |
{ | |
"name": "Jane Doe", | |
"meta": { | |
"format": "[email protected]", | |
"version": "0.1.0" | |
}, | |
"info": { |
Install [Ruby 2.1.5 for Windows (x64)][1] from [RubyInstaller.org][2].
Install Tcl/Tk support
.Add Ruby executables to your path
Associate .rb and .rbw files with this Ruby installation
.Run ruby -v
to verify command line access and version.
# Delete prior revisions from a GitHub wiki so that only the most-recent | |
# version of the content is available. | |
# Clone the wiki. | |
git clone https://github.com/[user]/[repo].wiki.git | |
# Remove the .git folder. | |
rm -rf .git | |
# Reconstruct the local repo with only latest content |
function assignUVs( geometry ) { | |
geometry.computeBoundingBox(); | |
var max = geometry.boundingBox.max; | |
var min = geometry.boundingBox.min; | |
var offset = new THREE.Vector2(0 - min.x, 0 - min.y); | |
var range = new THREE.Vector2(max.x - min.x, max.y - min.y); | |
var faces = geometry.faces; | |
geometry.faceVertexUvs[0] = []; |