This is a plugin meant for Jekyll.
Example use:
Easily embed a YouTube video. Just drop this file in your _plugins
directory.
{% youtube oHg5SJYRHA0 %}
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Ansi 0 Color</key> | |
<dict> | |
<key>Blue Component</key> | |
<real>0.0</real> | |
<key>Green Component</key> | |
<real>0.0</real> |
This is a plugin meant for Jekyll.
Example use:
Easily embed a YouTube video. Just drop this file in your _plugins
directory.
{% youtube oHg5SJYRHA0 %}
require 'net/https' | |
require 'json' | |
require 'uri' | |
# | |
# Use your project key to query the API | |
# 1) go to Google API Console: https://code.google.com/apis/console/ | |
# 2) go to "Services" tab and enable "Page Speed Online API" | |
# 3) go to "API Key" tab and copy your "API Key" | |
# |
# This script should be run on the drone. | |
# Change the IP address to be difference | |
# for each drone on the same ad-hoc network | |
# | |
killall udhcpd | |
ifconfig ath0 down | |
iwconfig ath0 mode ad-hoc essid ardrone2_070401 channel auto commit | |
ifconfig ath0 192.168.1.100 netmask 255.255.255.0 up |
# Outputs the reading time | |
# Read this in “about 4 minutes” | |
# Put into your _plugins dir in your Jekyll site | |
# Usage: Read this in about {{ page.content | reading_time }} | |
module ReadingTimeFilter | |
def reading_time( input ) | |
words_per_minute = 180 |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
module Jekyll | |
# Convert org-mode files. | |
require 'org-ruby' | |
class OrgConverter < Converter | |
safe true | |
def setup | |
# No-op | |
end |