Skip to content

Instantly share code, notes, and snippets.

debug - websocket writing 5:::{"name":"message","args":[[{"key":"y","value":2}]]}
debug - websocket writing 5:::{"name":"message","args":[[{"key":"y","value":1}]]}
/Users/jory/Code/meatgame/model.js:15
return Object.getPropertyNames(obj);
^
TypeError: Object function Object() { [native code] } has no method 'getPropertyNames'
at Object.getPropertyNames (/Users/jory/Code/meatgame/model.js:15:21)
at Object.stringify (native)
at Object.exports.encodePacket (/Users/jory/Code/meatgame/node_modules/socket.io/lib/parser.js:75:19)
<curewater`> is it required we follow the theme?
<sergioc> do what you want [23:04]
*** Stig-san ([email protected]) has joined channel #ggj14
*** Stig-san1 ([email protected]) has quit: Read error: Connection reset by
peer
<curewater`> ok, cool
<Aerobit> wooo, 11:05 pm :P [23:05]
<Aerobit> only drank one coffee and one coke
<Aerobit> we have unlimited coffee here's it's AMAZING
<sergioc> people might look at your game and frown if it has no relationship
┌─[jory@Kiwi] - [~/Code/Pressly/pressly-embeds] - [2014-01-17 11:44:11]
└─[0] <git:(master✈)> nodemon -e coffee,styl,html --debug server.coffee
17 Jan 11:44:23 - [nodemon] v1.0.9
17 Jan 11:44:23 - [nodemon] to restart at any time, enter `rs`
17 Jan 11:44:23 - [nodemon] watching: *.*
17 Jan 11:44:23 - [nodemon] starting `coffee --debug server.coffee`
/usr/local/share/npm/lib/node_modules/coffee-script/lib/coffee-script/optparse.js:51
throw new Error("unrecognized option: " + arg);
^
HTTP/1.1 200 OK
x-amz-id-2: rbRJqjTZgI/204l6SZAESOox0N4vdE6s02arvOYsp6SN4vPHPJndlN4GrJy8mCRO
x-amz-request-id: 894906EDD50416B3
x-amz-meta-s3cmd-attrs: uid:1001/gname:app/uname:app/gid:3100/mode:33204/mtime:1385565685/atime:1385565685/ctime:1385565685
Cache-Control: max-age=31536000, public
Last-Modified: Wed, 27 Nov 2013 15:21:29 GMT
ETag: "004e2eeaa048841f1634ef4eb3471a46"
Content-Type: binary/octet-stream
Server: AmazonS3
Via: 1.1 varnish
Loading jruby-openssl in a non-JRuby interpreter
/Users/jory/.rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/jruby-openssl-0.9.0/lib/shared/openssl.rb:13:in `require': cannot load such file -- jruby (LoadError)
from /Users/jory/.rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/jruby-openssl-0.9.0/lib/shared/openssl.rb:13:in `<top (required)>'
from /Users/jory/.rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/net/https.rb:22:in `require'
from /Users/jory/.rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/net/https.rb:22:in `<top (required)>'
from /Users/jory/.rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/airbrake-3.1.14/lib/airbrake.rb:7:in `require'
from /Users/jory/.rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/airbrake-3.1.14/lib/airbrake.rb:7:in `<top (required)>'
from /Users/jory/Code/Pressly-v2/pressly-api/lib/pressly-api.rb:7:in `require'
from /Users/jory/Code/Pressly-v2/pressly-api/lib/pressly-api.rb:7:in `<top (required)>'
from /Users/jory/Code/Pressly-v2/pressly-api/tasks/server.rb:40:in `requ
Writing /Users/jory/Code/Pressly/app-builder/pids/compiler.pid with 28195
D, [2013-12-17T10:07:58.536091 #28223] DEBUG -- : Terminating 1 actors...
/Users/jory/.rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/celluloid-0.14.1/lib/celluloid/thread_handle.rb:36:in `join': Target thread must not be current thread (ThreadError)
from /Users/jory/.rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/celluloid-0.14.1/lib/celluloid/actor.rb:132:in `join'
from /Users/jory/.rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/celluloid-0.14.1/lib/celluloid.rb:112:in `block (2 levels) in shutdown'
from /Users/jory/.rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/celluloid-0.14.1/lib/celluloid.rb:110:in `each'
from /Users/jory/.rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/gems/celluloid-0.14.1/lib/celluloid.rb:110:in `block in shutdown'
from /Users/jory/.rbenv/versions/2.0.0-p353/lib/ruby/2.0.0/timeout.rb:66:in `timeout'
from /Users/jory/.rbenv/versions/2.0.0-p353/lib/ru
@jory
jory / gist:7836845
Last active December 30, 2015 13:39 — forked from cshirky/gist:7807720
from socketIO_client import SocketIO
import re, random
### The basics:
# Messages FROM meatspace are a nested dict in the form
# {u'chat':
# {u'value':
# {u'media':
// ======================================================================
// Animation.scss
// - Contains helpers for keyframes animation in css3
// - Only functionally with Sass 3.2.0 Alpha and Compass 0.13.alpha
// ======================================================================
@mixin animation-name($name) {
-webkit-animation-name: $name;
-moz-animation-name: $name;
-ms-animation-name: $name;
@import "compass/css3/transform";
@import "animation";
@mixin animator($target, $name, $animations) {
////////////////////////////////////////////
//
// $animations is a list of lists having the following signature
// -> ($duration $timing-function $delay $stops)
//
// each $stop in $stops has the folowing signature
<Maciek416> robharper: restrict: 'E'
<Maciek416> nice
<Maciek416> ~nice~ [16:35]