This is a plugin meant for Jekyll.
Example use:
Easily embed a YouTube video. Just drop this file in your _plugins directory.
{% youtube oHg5SJYRHA0 %}
| ;; make sure you've set your default project with: | |
| ;; gcloud config set project <project-name> | |
| (require 'tramp) | |
| (add-to-list 'tramp-methods | |
| '("gcssh" | |
| (tramp-login-program "gcloud compute ssh") | |
| (tramp-login-args (("%h"))) | |
| (tramp-async-args (("-q"))) | |
| (tramp-remote-shell "/bin/sh") |
| function slugify(string) { | |
| const a = 'àáâäæãåāăąçćčđďèéêëēėęěğǵḧîïíīįìıİłḿñńǹňôöòóœøōõőṕŕřßśšşșťțûüùúūǘůűųẃẍÿýžźż·/_,:;' | |
| const b = 'aaaaaaaaaacccddeeeeeeeegghiiiiiiiilmnnnnoooooooooprrsssssttuuuuuuuuuwxyyzzz------' | |
| const p = new RegExp(a.split('').join('|'), 'g') | |
| return string.toString().toLowerCase() | |
| .replace(/\s+/g, '-') // Replace spaces with - | |
| .replace(p, c => b.charAt(a.indexOf(c))) // Replace special characters | |
| .replace(/&/g, '-and-') // Replace & with 'and' | |
| .replace(/[^\w\-]+/g, '') // Remove all non-word characters |
| import OpenGL.GL as GL | |
| import OpenGL.GL.shaders | |
| import ctypes | |
| import pygame | |
| import numpy | |
| vertex_shader = """ | |
| #version 330 | |
| in vec4 position; |
| # the following two lines give a two-line status, with the current window highlighted | |
| hardstatus alwayslastline | |
| hardstatus string '%{= kG}[%{G}%H%? %1`%?%{g}][%= %{= kw}%-w%{+b yk} %n*%t%?(%u)%? %{-}%+w %=%{g}][%{B}%m/%d %{W}%C%A%{g}]' | |
| # huge scrollback buffer | |
| defscrollback 5000 | |
| # no welcome message | |
| startup_message off |
| <launch> | |
| <!-- | |
| To distinguish between the cases where the rgb image is | |
| 1280x1024 versus 640x480. This affects the pipeline. | |
| --> | |
| <arg name="high_res_rgb" default="true"/> | |
| <arg name="cloud_input_ns" value="camera/rgb_downsampled" | |
| if="$(arg high_res_rgb)"/> | |
| <arg name="cloud_input_ns" value="camera/rgb" unless="$(arg high_res_rgb)"/> |
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 'carrierwave/processing/mini_magick' | |
| class ImageUploader < CarrierWave::Uploader::Base | |
| include CarrierWave::MiniMagick | |
| IMAGE_EXTENSIONS = %w(jpg jpeg gif png) | |
| DOCUMENT_EXTENSIONS = %w(exe pdf doc docm xls) | |
| def store_dir | |
| "files/#{model.id}" |
| @mixin box-shadow($top, $left, $blur, $color, $inset: false) { | |
| @if $inset { | |
| -webkit-box-shadow:inset $top $left $blur $color; | |
| -moz-box-shadow:inset $top $left $blur $color; | |
| box-shadow:inset $top $left $blur $color; | |
| } @else { | |
| -webkit-box-shadow: $top $left $blur $color; | |
| -moz-box-shadow: $top $left $blur $color; | |
| box-shadow: $top $left $blur $color; | |
| } |
| #!/usr/bin/env python | |
| import roslib | |
| roslib.load_manifest("sensor_msgs") | |
| roslib.load_manifest("message_filters") | |
| roslib.load_manifest("rxtools") | |
| import rospy | |
| import rxtools | |
| import rxtools.rosplot | |
| import sys |