Skip to content

Instantly share code, notes, and snippets.

#!/bin/bash
#
# MongoDB Backup Script
# VER. 0.1
# Note, this is a lobotomized port of AutoMySQLBackup
# (http://sourceforge.net/projects/automysqlbackup/) for use with
# MongoDB.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@Sewdn
Sewdn / SassDynamicVariables.scss
Created July 30, 2012 23:09 — forked from rhythmus/SassDynamicVariables.scss
dynamic variables for Sass (squaring the circle :-)
@mixin makecircle($height: 10px, $width: 10px) {
$radius: sqrt(($height * $width)/pi());
@include border-radius($radius);
height: $radius*2;
width: $radius*2;
}
.myCircle {
@include makecircle(10px, 25px);
}