Here's an example of how to embed a Gist on GitHub Pages:
{% gist 5555251 %}
All you need to do is copy and paste the Gist's ID from the URL (here 5555251), and add it to a gist tag surrounded by {% and %}.
Here's an example of how to embed a Gist on GitHub Pages:
{% gist 5555251 %}
All you need to do is copy and paste the Gist's ID from the URL (here 5555251), and add it to a gist tag surrounded by {% and %}.
| # Create a new repository on the command line | |
| touch README.md | |
| git init | |
| git add README.md | |
| git commit -m "first commit" | |
| git remote add origin https://github.com/c0ldlimit/vimcolors.git | |
| git push -u origin master | |
| # Push an existing repository from the command line |
| // Derived from http://stackoverflow.com/a/8545403/106786 | |
| function decodeFloat(bytes, signBits, exponentBits, fractionBits, eMin, eMax, littleEndian) { | |
| var totalBits = (signBits + exponentBits + fractionBits); | |
| var binary = ""; | |
| for (var i = 0, l = bytes.length; i < l; i++) { | |
| var bits = bytes[i].toString(2); | |
| while (bits.length < 8) | |
| bits = "0" + bits; |
| // http://paulirish.com/2011/requestanimationframe-for-smart-animating/ | |
| // http://my.opera.com/emoller/blog/2011/12/20/requestanimationframe-for-smart-er-animating | |
| // requestAnimationFrame polyfill by Erik Möller. fixes from Paul Irish and Tino Zijdel | |
| // MIT license | |
| (function() { | |
| var lastTime = 0; | |
| var vendors = ['ms', 'moz', 'webkit', 'o']; |
| public partial class App : Application | |
| { | |
| protected override void OnStartup(StartupEventArgs e) | |
| { | |
| RenderOptions.ProcessRenderMode = RenderMode.SoftwareOnly; | |
| } | |
| } |