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
#!/usr/bin/env node | |
/** | |
* ava.js - Aviator "All-in-One" Wrapper | |
* Automatically detect and import stacked PRs from GitHub into Aviator | |
* | |
* This script analyzes PR dependencies based on base branches and sets up av adopt relationships | |
* It also automatically cleans up branches that have already been merged. | |
* | |
* Prerequisites: |
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
<meta name="description" content="Double pendulum simulation from scratch"> | |
<body oncontextmenu="return false;"> | |
<canvas id="canvas" width="500" height="500" style="border:1px dotted;float:left"> | |
<script> | |
// ------------------------------------------------------------ | |
// Double Pendulum Simulation - Code Refactor - Nov 2 | |
// by Michael Poteat | |
// ------------------------------------------------------------ |