I hereby claim:
- I am jicksta on github.
- I am jayp (https://keybase.io/jayp) on keybase.
- I have a public key ASBI5eIAWloE4JO6YpdHc-4Jhsc64QJ-6d820YWiTnewLAo
To claim this, I am signing this object:
| #!/usr/bin/env ruby | |
| require 'active_support/all' | |
| SEASONS = { | |
| autumn: { | |
| description: "Autumn is the season of peace and goodwill, when summer’s harvest is shared with all. Eladrin adopt this personality when overcome with contentment.", | |
| traits: [ | |
| "If someone is in need, you never withhold aid.", | |
| "You share what you have, with little regard to your own needs.", |
I hereby claim:
To claim this, I am signing this object:
| import Ember from 'ember'; | |
| export default Ember.Controller.extend({ | |
| appName:'Ember Twiddle' | |
| }); |
I hereby claim:
To claim this, I am signing this object:
| FROM ubuntu | |
| MAINTAINER Jay Phillips | |
| RUN sudo apt-get -q -y update | |
| RUN sudo apt-get -q -y upgrade | |
| RUN sudo apt-get -q -y install wget | |
| RUN sudo apt-get -q -y install build-essential | |
| # Install Ruby: | |
| RUN wget -L -nv -O /tmp/ruby-install-0.5.0.tar.gz https://github.com/postmodern/ruby-install/archive/v0.5.0.tar.gz |
| <link rel="import" href="../core-icon-button/core-icon-button.html"> | |
| <link rel="import" href="../core-toolbar/core-toolbar.html"> | |
| <link rel="import" href="../paper-button/paper-button.html"> | |
| <link rel="import" href="../paper-input/paper-input.html"> | |
| <polymer-element name="note-editor"> | |
| <template> | |
| <style> | |
| :host { |
| <link rel="import" href="../core-icon-button/core-icon-button.html"> | |
| <link rel="import" href="../core-toolbar/core-toolbar.html"> | |
| <link rel="import" href="../paper-button/paper-button.html"> | |
| <link rel="import" href="../paper-input/paper-input.html"> | |
| <polymer-element name="note-editor"> | |
| <template> | |
| <style> | |
| :host { |
| %html{:lang => "en"} | |
| %head= render "shared/head" | |
| %body.app{"data-events" => yield(:body_events)} | |
| = yield |
| function v(x, y, z) { | |
| return new THREE.Vertex(new THREE.Vector3(x, y, z)); | |
| } | |
| var lineGeo = new THREE.Geometry(); | |
| lineGeo.vertices.push( | |
| v(-50, 0, 0), v(50, 0, 0), | |
| v(0, -50, 0), v(0, 50, 0), | |
| v(0, 0, -50), v(0, 0, 50) | |
| ); |
| // Physijs.MeshMixin, used to convert a THREE.Mesh into a Physijs.Mesh. Direct use of | |
| // this mixin is not necessary if you're instantiating Physijs.Meshes directly. | |
| // Returns the given THREE.Mesh with Physijs mesh behavior and metadata mixed in. | |
| Physijs.MeshMixin = function(mesh, mass, params) { | |
| var index; | |
| params = params || {}; | |
| Eventable.call(this); | |
| if (!mesh.geometry.boundingBox) { |