-
Clone the AngularJS 2.0 source tree:
git clone https://github.com/angular/angular
-
inside the project directory, run
npm install
-
inside gulpfile.js, replace the 'build' task (near the end of the file) with the following one:
gulp.task('build', ['jsRuntime/build', 'modules/build.dev.js']);
View designer.html
<link rel="import" href="../core-icon-button/core-icon-button.html"> | |
<link rel="import" href="../core-toolbar/core-toolbar.html"> | |
<link rel="import" href="../core-header-panel/core-header-panel.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; |
View designer.html
<link rel="import" href="../core-icon-button/core-icon-button.html"> | |
<link rel="import" href="../core-toolbar/core-toolbar.html"> | |
<link rel="import" href="../core-header-panel/core-header-panel.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; |
View designer.html
<link rel="import" href="../core-animated-pages/core-animated-pages.html"> | |
<link rel="import" href="../core-animated-pages/transitions/hero-transition.html"> | |
<link rel="import" href="../core-animated-pages/transitions/cross-fade.html"> | |
<link rel="import" href="../core-animated-pages/transitions/slide-down.html"> | |
<link rel="import" href="../core-animated-pages/transitions/slide-up.html"> | |
<link rel="import" href="../core-animated-pages/transitions/tile-cascade.html"> | |
<link rel="import" href="../smoothie-chart/smoothie-chart.html"> | |
<link rel="import" href="../chart-js/chart-js.html"> | |
<link rel="import" href="../speech-mic/speech-mic.html"> | |
<link rel="import" href="../yt-video/yt-search-video.html"> |
View app.js
/** | |
* Example application for combining TiMultiTouch module with Zero Latency Sound module. | |
* | |
* # https://marketplace.appcelerator.com/apps/860 TiMultiTouch | |
* # https://marketplace.appcelerator.com/apps/891 Zero Latency Sound | |
* | |
* Created for Jose R. Castello | |
*/ | |
Titanium.UI.setBackgroundColor('#000'); |
View ng2-hello-world.md
View gist:4958044
/* Copyright (C) 2013, Uri Shaked, GDG Tel-Aviv Lead. */ | |
var jq = document.createElement("script"); | |
jq.setAttribute("src", "https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"); | |
jq.setAttribute("type", "text/javascript"); | |
jq.onload = function () { | |
$ = jQuery; | |
function e(e, t) { | |
return e + Math.random() * (t - e) | |
} | |
function t(t) { |
View mortgage.py
def spitzer(k,r,p): | |
return k-p*(r/12.0) | |
def months(k,r,p): | |
total = 0 | |
while k > 0: | |
k -= spitzer(k,r,p) | |
total += 1 | |
return total |
View directive.js
'use strict'; | |
angular.module('myApp') | |
.directive('styleSheet', function () { | |
return { | |
restrict: 'EA', | |
template: '<style type="text/css" />', | |
transclude: true, | |
replace: true, |
View wireless-power.ino
int led = 13; | |
void setup() { | |
pinMode(led, OUTPUT); | |
} | |
void loop() { | |
digitalWrite(led, HIGH); | |
delayMicroseconds(1); | |
digitalWrite(led, LOW); |
View motorcoil.ino
const int phase1pin = 2; | |
const int phase2pin = 4; | |
const int phase3pin = 3; | |
float holdTime = 50000; // microsecs | |
const unsigned long minHoldTime = 10000; | |
unsigned long p1start, | |
p1end, | |
p2start, | |
p2end, |
OlderNewer