Skip to content

Instantly share code, notes, and snippets.

View bseib's full-sized avatar

Broc Seib bseib

View GitHub Profile
@bseib
bseib / system_backup.pl
Created April 20, 2015 14:54
Script to backup filesystems everyday with a unix 'dump' command.
#!/usr/local/bin/perl -w
#
# $Id: system_backup,v 1.13 2006/09/15 02:48:23 bseib Exp $
##
# 'system_backup'
#
# Description: Run the unix 'dump' command on various filesystems, using a different
# dump level depending on the day of the month. Day 1 always gets a full
# level zero dump. A "towers of hanoi"-ish pattern is used for dump levels.
#
@bseib
bseib / animation.less
Created February 6, 2015 15:02
CSS by Fontello.com, for spinning a font character as a pacifier
/*
Animation example, for spinners
*/
.animate-spin {
-moz-animation: spin 2s infinite linear;
-o-animation: spin 2s infinite linear;
-webkit-animation: spin 2s infinite linear;
animation: spin 2s infinite linear;
display: inline-block;
}
@bseib
bseib / designer.html
Created July 29, 2014 19:31
designer
<link rel="import" href="../core-icon-button/core-icon-button.html">
<link rel="import" href="../core-toolbar/core-toolbar.html">
<link rel="import" href="../core-header-panel/core-header-panel.html">
<link rel="import" href="../core-field/core-field.html">
<link rel="import" href="../core-icon/core-icon.html">
<link rel="import" href="../core-input/core-input.html">
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../paper-button/paper-button.html">
<link rel="import" href="../paper-checkbox/paper-checkbox.html">
<link rel="import" href="../core-icons/av-icons.html">