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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>React + Redux Boilerplate</title> | |
| </head> | |
| <body> | |
| <div id="mount"></div> | |
| <script src="https://fb.me/react-with-addons-15.1.0.js"></script> |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>JS Bin</title> | |
| <script src='https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.8.23/browser-polyfill.min.js'></script> | |
| </head> | |
| <body> | |
| <p>Change JavaScript to ES6 / Babel</p> |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>JS Bin</title> | |
| <!-- uncomment for local dev --> | |
| <!-- | |
| <link rel="stylesheet/less" type="text/css" href="main.less"> | |
| --> |
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
| @echo off | |
| if exist scripts ( | |
| echo Cowardly refusing to overwrite "scripts" | |
| ) else ( | |
| mkdir scripts | |
| printf "@echo off\nREM Resolve all dependencies the app requires to run." > scripts\bootstrap.bat | |
| printf "@echo off\nREM Set up app for the first time after clone/checkout or return to initial state." > scripts\setup.bat | |
| printf "@echo off\nREM Update app to run after pull/svn up." > scripts\update.bat | |
| printf "@echo off\nREM Launch the app and any extra required processes locally" > scripts\server.bat | |
| printf "@echo off\nREM Run the test suite for your app." > scripts\test.bat |
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
| DOSKEY svnb=svn ls "^/branches" $* | |
| DOSKEY svncp=svn cp "^/branches/$1" "^/branches/$2" | |
| DOSKEY svni=svn info $* | |
| DOSKEY svnm=svn merge "^/branches/$*" | |
| DOSKEY svnmi=svn mergeinfo --show-revs=eligible "^/branches/$*" | |
| DOSKEY svns=svn status $* | |
| DOSKEY svnsw=svn sw "^/branches/$*" | |
| DOSKEY svnt=svn sw "^/trunk" | |
| DOSKEY svnu=svn up $* |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/angular-material/0.8.3/angular-material.min.css"> | |
| <meta charset="utf-8"> | |
| <title>JS Bin</title> | |
| </head> | |
| <body ng-app="app"> | |
| <md-content> |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>JS Bin</title> | |
| <link rel="stylesheet" href="//rawgit.com/iVantage/angular-ivh-treeview/master/dist/ivh-treeview.css"> | |
| <link rel="stylesheet" href="//rawgit.com/iVantage/angular-ivh-treeview/master/dist/ivh-treeview-theme-basic.css"> | |
| </head> | |
| <body ng-app="bin"> | |
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
| <!DOCTYPE HTML> | |
| <html lang="en-US"> | |
| <head> | |
| <title>Snap.js</title> | |
| <meta http-equiv="x-ua-compatible" content="IE=edge" /> | |
| <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no"> | |
| <meta name="apple-mobile-web-app-capable" content="yes"> | |
| <meta name="apple-touch-fullscreen" content="yes"> | |
| <link rel="stylesheet" type="text/css" href="//rawgit.com/jakiestfu/Snap.js/develop/snap.css" /> | |
| <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.1.1/css/bootstrap.min.css"> |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>@jtrussell</title> | |
| </head> | |
| <body> | |
| Hello World. | |
| </body> | |
| </html> |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet" type="text/css" /> | |
| <meta charset="utf-8"> | |
| <title>Angular Selection Model</title> | |
| <script src="//cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.7/angular.js"></script> | |
| <script src="//rawgit.com/jtrussell/angular-selection-model/master/dist/selection-model.js"></script> | |
| </head> | |
| <body ng-app="jsbin"> |