A simple calculator made with Bootstrap and jQuery
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
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions |
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
{ | |
"pageMeta": { | |
"fileName": "<neighborhood>_<season>.pdf", | |
"margins": { | |
"left": "2.54cm", | |
"right": "2.54cm", | |
"top": "2.54cm", | |
"bottom": "2.54cm" | |
}, | |
"font": "calibri", |
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
<div class = "text-center"> | |
<h1 class="quote text-center text-primary"></h1> | |
<h4 class="author text-muted"></h4> | |
<button class="quoteButton btn btn-lg btn-default" type="button">Random Quote</button> | |
</div> |
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
<h1 id='title' class='text-primary'>Pomodoro Clock</h1> | |
<h3 id='status' class='text-muted'></h2> | |
<div id='timer-wrapper'> | |
<h1 id='timer' class='text-danger'><span id='minutes'></span>:<span id='seconds'></span></h1></div> | |
<div id='buttons'> | |
<button id='start-button' class='clock-control btn btn-lg btn-success'>START</button> | |
<button id='stop-button' class='clock-control btn btn-lg btn-danger hidden'>STOP</button> | |
<button id='resume-button' class='clock-control btn btn-lg btn-info hidden'>RESUME</button> | |
<button id='pause-button' class='clock-control btn btn-lg btn-warning hidden'>PAUSE</button> | |
</div> |
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
<div id='main-wrapper'> | |
<div id='search-box-wrapper'><input type='text' id='search-box' class='form-control input-lg' placeholder='SEARCH WIKIPEDIA' /></div> | |
<div id='results-wrapper'></div> | |
</div> |
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
<h1 id="title" class="text-primary">Tic Tac Toe</h1> | |
<div id="options" class="modal fade" role="dialog" tabindex="-1"> | |
<div class="modal-dialog" role="document"> | |
<div class="modal-content"> | |
<div class="modal-header"> | |
<h4 class="modal-title">Choose Your Side</h4> | |
</div> | |
<div class="modal-body"> | |
<p class="lead text-center">Choose: "X" or "O"</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
<div class="container" ng-app="simonApp" ng-controller="MainController"> | |
<div class="row"> | |
<simon-button position="upper-left"></simon-button> | |
<simon-button position="upper-right"></simon-button> | |
</div> | |
<div class="row"> | |
<simon-button position="lower-left"></simon-button> | |
<simon-button position="lower-right"></simon-button> | |
</div> | |
<div id="controls" class="text-center"> |