This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="http://code.jquery.com/jquery-git2.js"></script> | |
<meta charset=utf-8 /> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<h1 class=title >Press Some Keys...<b>#</b><b><</b><b>></b><b>_</b>...</h1> | |
<div class=board > |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="http://code.jquery.com/jquery-git2.js"></script> | |
<link href="http://code.jquery.com/ui/jquery-ui-git.css" rel="stylesheet" type="text/css" /> | |
<script src="http://code.jquery.com/ui/jquery-ui-git.js"></script> | |
<!-- <script src="http://ianli.com/infinitedrag/javascripts/jquery.infinitedrag.js"></script> --> | |
<script src="http://jsbin.com/iqEYOka/latest"></script> | |
<meta charset=utf-8 /> | |
<title>JS Bin</title> |
This file contains 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
/* | |
* jQuery Infinite Drag | |
* Version 0.2 | |
* Copyright (c) 2010 Ian Li (http://ianli.com) | |
* Licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) license. | |
* | |
* Requires: | |
* jQuery http://jquery.com | |
* | |
* Reference: |
This file contains 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 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="../aha-table/src/aha-table.html"> | |
<link rel="import" href="../core-splitter/core-splitter.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
box-sizing: border-box; |
This file contains 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="../core-menu/core-submenu.html"> | |
<link rel="import" href="../core-pages/core-pages.html"> | |
<polymer-element name="my-element"> |
This file contains 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-splitter/core-splitter.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
box-sizing: border-box; | |
position: absolute; | |
left: 0px; |
This file contains 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 makeRequest(url) { | |
httpRequest = new XMLHttpRequest(); | |
var start = new Date().getTime(); | |
var stopTimer = function(){ | |
if (httpRequest.readyState == 4){ | |
var time = new Date().getTime() - start; | |
document.write(time<100?".":(time>600?" ":"-")); | |
console.log(time); | |
makeRequest(url); | |
}; |
This file contains 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
Process: CorsixTH [33782] | |
Path: /Applications/CorsixTH.app/Contents/MacOS/CorsixTH | |
Identifier: CorsixTH | |
Version: ??? | |
Code Type: X86-64 (Native) | |
Parent Process: ??? [1] | |
Responsible: CorsixTH [33782] | |
User ID: 501 | |
Date/Time: 2014-11-29 09:25:48.958 +0000 |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<link href='http://fonts.googleapis.com/css?family=Cutive+Mono' rel='stylesheet' type='text/css'> | |
<meta charset="utf-8"> | |
<title>JamesWP</title> | |
<style id="jsbin-css"> | |
body,html{ | |
height:100%; | |
margin:0; |
OlderNewer