I've collected all the links related to Backbone.js that I find useful. Most of these are well-built projects and epic guides (not ephemeral blog posts.) Please feel free to fork and even contribute.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
application: jonathanberi-com | |
version: 2 | |
runtime: python | |
api_version: 1 | |
handlers: | |
- url: /\+ | |
script: plus.py | |
- url: / |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Processor: AMD Athlon(tm) Dual Core Processor 4850e | |
PCI Devices | |
Host bridge: Advanced Micro Devices [AMD] RS780 Host Bridge | |
PCI bridge: Elitegroup Computer Systems Device 9602 (prog-if 00 [Normal decode]) | |
PCI bridge: Advanced Micro Devices [AMD] RS780 PCI to PCI bridge (PCIE port 3) (prog-if 00 [Normal decode]) | |
SATA controller ATI Technologies Inc SB7x0/SB8x0/SB9x0 SATA Controller [IDE mode] (prog-if 01 [AHCI 1.0]) | |
USB Controller ATI Technologies Inc SB7x0/SB8x0/SB9x0 USB OHCI0 Controller (prog-if 10 [OHCI]) | |
USB Controller ATI Technologies Inc SB7x0 USB OHCI1 Controller (prog-if 10 [OHCI]) | |
USB Controller ATI Technologies Inc SB7x0/SB8x0/SB9x0 USB EHCI Controller (prog-if 20 [EHCI]) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>Trying Handlebar</title> | |
<script src="http://cdnjs.cloudflare.com/ajax/libs/handlebars.js/1.0.0.beta6/handlebars.min.js"></script> | |
</head> | |
<body> | |
<div class="output"></div> | |
<script id="template" type="text/x-handlebars-template"> | |
<span>{{name}}</span> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*********************************************************************** | |
Copyright 2013 Google Inc. All Rights Reserved. | |
Licensed under the Apache License, Version 2.0 (the "License"); | |
you may not use this file except in compliance with the License. | |
You may obtain a copy of the License at | |
http://www.apache.org/licenses/LICENSE-2.0 | |
Unless required by applicable law or agreed to in writing, software |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8" ?> | |
<Module> | |
<ModulePrefs title="Hangout Starter"> | |
<Require feature="rpc" /> | |
<Require feature="views" /> | |
</ModulePrefs> | |
<Content type="html"><![CDATA[ | |
<script src="//talkgadget.google.com/hangouts/_/api/hangout.js?v=1.1"></script> | |
<style> | |
.guess { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8" ?> | |
<Module> | |
<ModulePrefs title="Hangout Starter"> | |
<Require feature="rpc" /> | |
<Require feature="views" /> | |
</ModulePrefs> | |
<Content type="html"><![CDATA[ | |
<script src="//talkgadget.google.com/hangouts/_/api/hangout.js?v=1.1"></script> | |
<style> | |
.guess { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// used https://github.com/MarkBennett/css-smasher/blob/master/lib/parser.jison | |
//latest node stable and all packages | |
jison parser.jison -o cssParser.js -m js | |
// in the browser | |
<script src="cssParser.js"></script> | |
<script> | |
cssParser.parse("body { color: red; }"); | |
</script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
In file included from StandardFirmata.cpp:19: | |
/Applications/Arduino.app/Contents/Resources/Java/libraries/Firmata/Firmata.h:80: error: typedef 'callbackFunction' is initialized (use __typeof__ instead) | |
/Applications/Arduino.app/Contents/Resources/Java/libraries/Firmata/Firmata.h:80: error: 'byte' was not declared in this scope | |
/Applications/Arduino.app/Contents/Resources/Java/libraries/Firmata/Firmata.h:80: error: expected primary-expression before 'int' | |
/Applications/Arduino.app/Contents/Resources/Java/libraries/Firmata/Firmata.h:83: error: typedef 'sysexCallbackFunction' is initialized (use __typeof__ instead) | |
/Applications/Arduino.app/Contents/Resources/Java/libraries/Firmata/Firmata.h:83: error: 'byte' was not declared in this scope | |
/Applications/Arduino.app/Contents/Resources/Java/libraries/Firmata/Firmata.h:83: error: 'byte' was not declared in this scope | |
/Applications/Arduino.app/Contents/Resources/Java/libraries/Firmata/Firmata.h:83: error: 'byte' was not declared in this scope | |
/Applications/Arduino.a |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<element name="plus-plusone"> | |
<script> | |
Polymer.register(this, { | |
ready: function() { | |
addInstance(this); | |
}, | |
plusOneReady: function() { | |
// do stuff | |
console.log('plusone.js is ready'); | |
} |
OlderNewer