- http://addyosmani.github.io/active-route/
- http://addyosmani.github.io/page-router/
- https://github.com/PolymerLabs/flatiron-director
- http://jsbin.com/muqicu/4/edit
- https://github.com/legion/app-router
- https://github.com/alari/routing-root
- https://github.com/kkvlk/polymer-router
- https://github.com/polymerjs-tw/polymer-simple-router
Deprecated. See https://www.polymer-project.org/articles/unit-testing-elements.html for the latest version.
Note: this guide is a work-in-progress and will be added to the Polymer docs when it's ready. We have updated <seed-element>
to include unit tests and this guide has been moved to Google docs. Expect a version on the Polymer site before the end of September.
After spending days working on your <super-awesome>
Polymer element, you’re finally ready to share it with the rest of the world. You add the code for using it to your demo, iterate on it over time and come back to it one day when..uh oh. The demo broke because something has gone horribly wrong. Suddenly, <super-awesome>
isn’t starting to look so great. Now you’re stuck trying to backtrack through your commit log to figure out how you broke the code. You’re not going to have a fun time.
If you’ve been working on the front-end for a while, even if you haven’t really played with Polymer elements before, this s
try{new CustomEvent('?')}catch(o_O){ | |
/*!(C) Andrea Giammarchi -- WTFPL License*/ | |
this.CustomEvent = function( | |
eventName, | |
defaultInitDict | |
){ | |
// the infamous substitute | |
function CustomEvent(type, eventInitDict) { | |
var event = document.createEvent(eventName); |
Prereq:
apt-get install zsh
apt-get install git-core
Getting zsh to work in ubuntu is weird, since sh
does not understand the source
command. So, you do this to install zsh
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh
_complete_ssh_hosts () | |
{ | |
COMPREPLY=() | |
cur="${COMP_WORDS[COMP_CWORD]}" | |
comp_ssh_hosts=`cat ~/.ssh/known_hosts | \ | |
cut -f 1 -d ' ' | \ | |
sed -e s/,.*//g | \ | |
grep -v ^# | \ | |
uniq | \ | |
grep -v "\[" ; |