Skip to content

Instantly share code, notes, and snippets.

View ppcano's full-sized avatar

Pepe Cano ppcano

View GitHub Profile
@ppcano
ppcano / jitsu_command
Created December 3, 2011 12:03
jitsu output
help: jitsu deploy
help: jitsu apps deploy
help:
error: Error running command deploy
info: Nodejitsu not ok
@ppcano
ppcano / error_env.js
Created December 3, 2011 15:01
error jitsu env
{
"stack": "Error: Nodejitsu Error (404): Item not found\n at Request._callback (/usr/local/node/lib/node_modules/jitsu/node_modules/nodejitsu-api/lib/client/client.js:94:15)\n at Request.callback (/usr/local/node/lib/node_modules/jitsu/node_modules/request/main.js:104:22)\n at Request.<anonymous> (/usr/local/node/lib/node_modules/jitsu/node_modules/request/main.js:458:18)\n at Request.emit (events.js:64:17)\n at IncomingMessage.<anonymous> (/usr/local/node/lib/node_modules/jitsu/node_modules/request/main.js:423:16)\n at IncomingMessage.emit (events.js:81:20)\n at HTTPParser.onMessageComplete (http.js:133:23)\n at Socket.ondata (http.js:1213:22)\n at Socket._onReadable (net.js:681:27)\n at IOWatcher.onReadable [as callback] (net.js:177:10)",
"message": "Nodejitsu Error (404): Item not found",
"statusCode": "404",
"result": {
"error": "request not found"
}
}
@ppcano
ppcano / gist:1434142
Created December 5, 2011 16:18 — forked from jakobdamjensen/gist:1433795
First attempt to do awesome collectionview
Mango.IssuesCollectionView = SC.View.extend({
reuseQueue: [],
backView: null,
content: null,
itemViewClass: SC.View,
topRowIndex: null,
@ppcano
ppcano / controlled_view.js
Created December 6, 2011 10:32
Updating View after didInsertElement
ControlledView = SC.Mixin.create({
isInsertedElement: false,
didInsertElement: function(){
set(this, 'isInsertedElement', true);
}
});
@ppcano
ppcano / binding.js
Created December 6, 2011 15:05
class name bindings
ItemView = SC.View.extend({
//classNameBindings: ['selected'],
classNameBindings: ['disabled'],
// applyViewLogic is not delegates to observes because ItemView is handled by CollectionView
init: function(){
this._super();
this._applyViewLogic();
},
@ppcano
ppcano / test.html
Created December 6, 2011 15:18
SC unit test
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>QUnit Test Runner</title>
<link rel="stylesheet" type="text/css" href="assets/qunit/qunit_styles.css" />
<link rel="stylesheet" type="text/css" href="assets/bpm_styles.css" />
</head>
<body>
@ppcano
ppcano / output_npm_ls.txt
Created December 10, 2011 16:15
unmet dependency
[email protected] /Users/pepe/Git/playlist-room
├── [email protected]
├── [email protected]
├─┬ [email protected]
│ ├── UNMET DEPENDENCY connect 1.8.x
│ ├── UNMET DEPENDENCY mime >= 0.0.1
│ ├── UNMET DEPENDENCY mkdirp 0.0.7
│ └── UNMET DEPENDENCY qs >= 0.3.1
├── [email protected]
├── [email protected]
@ppcano
ppcano / assetfile.rb
Created December 12, 2011 14:46
amberjs assetfile
input "app"
output "assets"
match "**/*.css" do
filter ConcatFilter, "bpm_styles.css"
end
match "**/amber.js/packages/*/lib/**/*.js" do
@ppcano
ppcano / the.log
Created December 14, 2011 14:05
error npm publish -f
node-make-asset-pipeline$ npm publish -f .
npm WARN publish Forced publish over [email protected]
npm ERR! Failed to update the data
npm ERR! publish fail Cannot publish over existing version.
npm ERR! publish fail Bump the 'version' field, set the --force flag, or
npm ERR! publish fail npm unpublish '[email protected]'
npm ERR! publish fail and try again
npm ERR!
npm ERR! System Darwin 10.8.0
npm ERR! command "node" "/Users/pepe/.nvm/v0.4.7/bin/npm" "publish" "-f" "."
@ppcano
ppcano / inde.html
Created December 14, 2011 15:24
views embers
<script type="text/x-handlebars">
{{#collection App.ListView elementId="firstView" }}
{{content.name}}
{{/collection}}
</script>
<script type="text/x-handlebars">
{{#view App.ListView2 }}
{{/view}}
</script>