Make sure there is at least one file in it (even just the README.md)
ssh-keygen -t rsa -C "[email protected]"
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <style>body{background-color:white;}</style> | |
| <script>(function() { | |
| // If window.HTMLWidgets is already defined, then use it; otherwise create a | |
| // new object. This allows preceding code to set options that affect the | |
| // initialization process (though none currently exist). | |
| window.HTMLWidgets = window.HTMLWidgets || {}; |
| Color Name,HEX | |
| AliceBlue,#F0F8FF | |
| AntiqueWhite,#FAEBD7 | |
| Aqua,#00FFFF | |
| Aquamarine,#7FFFD4 | |
| Azure,#F0FFFF | |
| Beige,#F5F5DC | |
| Bisque,#FFE4C4 | |
| Black,#000000 | |
| BlanchedAlmond,#FFEBCD |
| // 22 Feb 2020 TODO: | |
| // needs trailing comma fix (allow trailing comma in arrays and object literals). | |
| // see JWCC at https://nigeltao.github.io/blog/2021/json-with-commas-comments.html | |
| export { normalize }; | |
| // var normalize = (function() { | |
| // /////////////////////////////////////////////////// | |
| // REVISE THIS FILE, PUT THE MAIN FUNCTION AT TOP, |
Make sure there is at least one file in it (even just the README.md)
ssh-keygen -t rsa -C "[email protected]"
| // Hyperboloc functions by toneburst from | |
| // https://machinesdontcare.wordpress.com/2008/03/10/glsl-cosh-sinh-tanh/ | |
| // These are missing in GLSL 1.10 and 1.20, uncomment if you need them | |
| /* | |
| /// COSH Function (Hyperbolic Cosine) | |
| float cosh(float val) | |
| { | |
| float tmp = exp(val); | |
| float cosH = (tmp + 1.0 / tmp) / 2.0; |
| /* | |
| * This is the compiled css for Bootstrap tabs and pills. | |
| * Compiled from bootstrap 2.3.2 (less/navs.less) | |
| */ | |
| .clearfix { | |
| *zoom: 1; | |
| } | |
| .clearfix:before, | |
| .clearfix:after { |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
| <title>Editor</title> | |
| </head> | |
| <body> | |
| <pre id="editor" style="width:100%;height:400px;">function foo(items) { | |
| var i; |
| /* Program Name : cmdfy | |
| * Developer : kawser | |
| * Developer Blog: http://blog.kawser.org | |
| * Blog Link: http://blog.kawser.org/2014/02/calling-cpp-function-fly.html | |
| * | |
| * | |
| * Objective : This code demonstrates how to use function pointer | |
| * to call a method via string | |
| * | |
| * IDEA : We will define some functions with similar signature and store these |
| /* Numerics for Doyle spirals. | |
| * Robin Houston, 2013 | |
| */ | |
| (function() { | |
| var pow = Math.pow, | |
| sin = Math.sin, | |
| cos = Math.cos, | |
| pi = Math.PI; | |