Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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-drawer-panel/core-drawer-panel.html"> | |
<link rel="import" href="../core-menu/core-submenu.html"> | |
<link rel="import" href="../core-item/core-item.html"> | |
<link rel="import" href="../core-pages/core-pages.html"> | |
<link rel="import" href="../core-menu-button/core-menu-button.html"> | |
<link rel="import" href="../core-icons/core-icons.html"> | |
<polymer-element name="my-element"> | |
<template> |
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
* { | |
box-sizing: border-box; | |
} | |
body { | |
font-family: sans-serif; | |
margin: 0; | |
padding: 0; | |
background-color: #f0f0f0; | |
} | |
#logo { |
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
// requires jQuery obviously | |
$(function(){ | |
$('img').each(function(i, img){ | |
var $img = $(img); | |
var url = $img.attr('src'); | |
var w = $img.width(); | |
var h = $img.height(); | |
var canvas = $('<canvas data-image="'+i+'"></canvas>').attr({ width: w, height: h }); | |
$(img).replaceWith(canvas); |
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
// created for apple.com/contact | |
"{ | |
'language': 'en-us', | |
'charset': 'utf-8', | |
'author': 'Apple Inc.', | |
'omni_page': 'How to Contact Us', | |
'publish-date': 'May 12, 2013', | |
'sitemap': 'http://www.apple.com/sitemap', | |
'shortcut-icon': 'http://www.apple.com/favicon.ico', | |
'viewport': 'width=1024', |
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
# add this line at the end of the file | |
python ~/.psam.py |
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
/* | |
Author: Stephen Bussard | |
Twitter: @sbussard | |
*/ | |
var sin = Math.sin, | |
cos = Math.cos, | |
tan = Math.tan, |
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
/* | |
Author: Stephen Bussard | |
Twitter: @sbussard | |
*/ | |
var sin = Math.sin; | |
var cos = Math.cos; | |
var tan = Math.tan; |
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
function validate(name, email) { | |
var errors = []; | |
var emailReg = /^([\w-\.]+@([\w-]+\.)+[\w-]{2,4})?$/; | |
if(name === '') { | |
errors.push('You forgot to enter your name'); | |
} | |
if(email === '' || !emailReg.test(email)) { | |
errors.push('Your e-mail address is invalid'); |
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
sudo su | |
apt-get update | |
apt-get install unzip apache2 php5-mysql libapache2-mod-php5 mysql-server phpmyadmin | |
# go through the wizards and set up the passwords, making sure to write them down / memorize! | |
a2enmod rewrite | |
nano /etc/apache2/sites-enabled/000-default | |
# change AllowOverride setting for /var/www from None to All, save then quit |