This is a plugin meant for Jekyll.
Example use:
Easily embed a YouTube video. Just drop this file in your _plugins directory.
{% youtube oHg5SJYRHA0 %}
| /* | |
| * This work is free. You can redistribute it and/or modify it under the | |
| * terms of the Do What The Fuck You Want To Public License, Version 2, | |
| * as published by Sam Hocevar. See the COPYING file for more details. | |
| */ | |
| /* | |
| * Easing Functions - inspired from http://gizma.com/easing/ | |
| * only considering the t value for the range [0, 1] => [0, 1] | |
| */ | |
| EasingFunctions = { |
| function color_test { | |
| # Daniel Crisman's ANSI color chart script from | |
| # The Bash Prompt HOWTO: 6.1. Colours | |
| # http://www.tldp.org/HOWTO/Bash-Prompt-HOWTO/x329.html | |
| # | |
| # This function echoes a bunch of color codes to the | |
| # terminal to demonstrate what's available. Each | |
| # line is the color code of one forground color, | |
| # out of 17 (default + 16 escapes), followed by a | |
| # test use of that color on all nine background |
This is a plugin meant for Jekyll.
Example use:
Easily embed a YouTube video. Just drop this file in your _plugins directory.
{% youtube oHg5SJYRHA0 %}
This gist assumes:
An introduction to curl using GitHub's API.
Makes a basic GET request to the specifed URI
curl https://api.github.com/users/caspyin
Press minus + shift + s and return to chop/fold long lines!
| <h4>Buttons</h4> | |
| <a class="btn--default" href="#">Button</a> | |
| <a class="btn--success" href="#">Success</a> | |
| <a class="btn--error" href="#">Error</a> | |
| <a class="btn--warning" href="#">Warning</a> | |
| <a class="btn--info" href="#">Info</a> |
| <html> | |
| <head> | |
| <title>Select styles with CSS only</title> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <style> | |
| body { | |
| background-color: #fff; | |
| font-family: helvetica, sans-serif; | |
| margin: 4% 10% | |
| } |