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
<link rel="import" href="../components/polymer/polymer.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; |
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
<link rel="import" href="../core-scaffold/core-scaffold.html"> | |
<link rel="import" href="../core-header-panel/core-header-panel.html"> | |
<link rel="import" href="../core-menu/core-menu.html"> | |
<link rel="import" href="../core-item/core-item.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="../paper-button/paper-button.html"> | |
<link rel="import" href="../core-menu/core-submenu.html"> | |
<link rel="import" href="../paper-input/paper-input.html"> |
- http://www.thinkstockphotos.com/image/stock-illustration-hands-with-hearts/175531936/popup?sq=A|sldesign78/f=CPIHVX/p=3/s=DynamicRank
- http://www.thinkstockphotos.com/image/stock-illustration-pixel-heart-vector/466390331/popup?sq=vector%20hearts/f=CIEHVXW/p=5/s=DynamicRank
- http://www.thinkstockphotos.com/image/stock-illustration-hand-with-heart/167267550/popup?sq=A|sldesign78/f=CPIHVX/p=3/s=DynamicRank
Take these courses to get web dev savy, in order:
- http://discover-devtools.codeschool.com/ - Become a DevTools Ninja.
- http://try.github.io/ - Git skillz...
- http://try.jquery.com/ - quality jQuery knowledge.
- https://www.khanacademy.org/computing/cs - Easiest to follow, free, most in-depth going into advanced Javascript.
- https://university.mongodb.com/ - mongoDB is the hotness for modern, sexy web apps.
All of these courses result in badges or symbols of course completion. Specifically the CodeSchool courses have OpenBadges awarded for example here's my CodeSchool "Report Card" page: https://www.codeschool.com/users/705399
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
var canv = document.getElementById('canvas'), | |
c = canv.getContext('2d'); | |
var context = c | |
var rowSize = 200 | |
var columnSize = 200 | |
var canvasWidth = $("canvas").width() | |
var canvasHeight = $("canvas").height() | |
canv.height = canvasHeight | |
canv.width = canvasWidth | |
var radius = canvasWidth/(2*columnSize) |
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
Download git-bash from git-scm: | |
http://www.git-scm.com/ | |
In git bash use the 'cd' command to navigate you your project's root folder. | |
Use the 'ls' command to list the files in the current directory to help you navigate. | |
`git init` | |
`git remote add origin https://github.com/username/project.git` |
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
$ docpad update | |
module.js:340 | |
throw err; | |
^ | |
Error: Cannot find module 'lodash' | |
at Function.Module._resolveFilename (module.js:338:15) | |
at Function.Module._load (module.js:280:25) | |
at Module.require (module.js:364:17) | |
at require (module.js:380:17) |
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
plugin.init ./plugins/swift-plugin-docpad | |
views_auto_reload true | |
startWatching() err Error: ENOENT, readdir '/var/lib/stickshift/68ddb90b5961458485e48f57fc58bc92/app-root/data/346321/plugins/swift-plugin-docpad/views' | |
Addon DocPad Plugin error Error: ENOENT, readdir '/var/lib/stickshift/68ddb90b5961458485e48f57fc58bc92/app-root/data/346321/plugins/swift-plugin-docpad/views' | |
Plugins error Error: ENOENT, readdir '/var/lib/stickshift/68ddb90b5961458485e48f57fc58bc92/app-root/data/346321/plugins/swift-plugin-docpad/views' | |
plugins swift-plugin-docpad swift-plugin-docpad | |
final step swift-plugin-docpad |
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
YUI().use('node', 'event', function (Y) { | |
function scrolledPast(){ | |
Y.all('#main-header').addClass('main-header-scrolled'); | |
} | |
function scrolledTop(){ | |
Y.all('#main-header').removeClass('main-header-scrolled'); | |
} |