git lb
31 minutes ago: fun-branch
2 days ago: remove-things
3 days ago: staging
6 days ago: remove-bugs
Courtesy of https://ses4j.github.io/2020/04/01/git-alias-recent-branches/
require 'cgi' | |
require 'digest/md5' | |
require 'net/https' | |
require 'uri' | |
module Jekyll | |
class GistTag < Liquid::Tag | |
def initialize(tag_name, text, token) | |
super | |
@text = text |
/** | |
* Jenn Makes Signs | |
* Various road signage made with CSS and the RoadGeek font family | |
* Last Updated: December 21, 2011 | |
* Dabblet: http://dabblet.com/gist/1507357 | |
* Gist: https://gist.github.com/1507357 | |
*/ | |
@font-face { font-family: "RoadGeek"; src: url("http://pancaketheorem.com/css/signs/roadgeek2w.otf");} | |
@font-face {font-family: "RoadGeek Hospital"; src: url("http://pancaketheorem.com/css/signs/roadgeekf6b.otf")} |
git lb
31 minutes ago: fun-branch
2 days ago: remove-things
3 days ago: staging
6 days ago: remove-bugs
Courtesy of https://ses4j.github.io/2020/04/01/git-alias-recent-branches/
1.) | |
║▌║││ █ ▌│║║ | |
2.) | |
▄▀▄▀▄▀▄▀ | |
3.) |
(function($){ | |
$.fn.Tabs=function(speed){ /* tabs transition speed parameter */ | |
return this.each(function(){ | |
/* define/cache variables */ | |
var tabs=$(this), | |
tabsLabels=tabs.children("ul"), | |
tabLabel=tabsLabels.find("a"), | |
tabsContent=tabs.children("div"), | |
tabLink, | |
tabsLoader=tabsContent.children(".ajax-loader"); /* define ajax loader element */ |
#!/bin/bash | |
# https://help.ubuntu.com/community/Boot-Repair | |
sudo add-apt-repository ppa:yannubuntu/boot-repair && sudo apt-get update | |
sudo apt-get install -y boot-repair && boot-repair |
(function(Modernizr, win){ | |
Modernizr.addTest('csstransformspreserve3d', function () { | |
var prop = Modernizr.prefixed('transformStyle'); | |
var val = 'preserve-3d'; | |
var computedStyle; | |
if(!prop) return false; | |
prop = prop.replace(/([A-Z])/g, function(str,m1){ return '-' + m1.toLowerCase(); }).replace(/^ms-/,'-ms-'); | |
/* | |
To use it: | |
require(['video'], function(Video){ | |
var video = new Video('.video'); | |
// optionally, you can either drag a video file over the .video element | |
video.playvideo('a valid video url'); | |
}); | |
*/ |