Skip to content

Instantly share code, notes, and snippets.

View zumwalt's full-sized avatar

Casey Zumwalt zumwalt

View GitHub Profile

Keybase proof

I hereby claim:

  • I am zumwalt on github.
  • I am zumwalt (https://keybase.io/zumwalt) on keybase.
  • I have a public key ASDbV9vAwUtbaSGSUwbqOQPDYn4AC0MOW2mQUGZlIPAV5Ao

To claim this, I am signing this object:

@zumwalt
zumwalt / sanfrancisco-font.css
Last active August 26, 2016 18:18
San Francisco Web Font
@font-face {
font-family: "San Francisco Text";
font-weight: 300;
src: url("../fonts/sanfranciscotext-light-webfont.woff");
}
@font-face {
font-family: "San Francisco Text";
font-weight: 400;
src: url("../fonts/sanfranciscotext-regular-webfont.woff");
@zumwalt
zumwalt / Find
Created August 16, 2015 03:09
Regex for finding and replacing Compass includes in Sass
@include (.*?)\((.*?)\);
@zumwalt
zumwalt / .zshrc
Created July 25, 2015 00:52
Bash script to open a Python server on a specified port
server() {
if [ -z "$1"]
then
python -m SimpleHTTPServer 8000
else
python -m SimpleHTTPServer $1
fi
}
@zumwalt
zumwalt / .zshrc
Created July 25, 2015 00:47
Find and kill a process using any port using a bash function
killport() {
lsof -i TCP:$1 | grep LISTEN | awk '{print $2}' | xargs kill -9
echo "Port" $1 "killed."
}
@mixin rotated-text($num-letters: 100, $angle-span: 180deg, $angle-offset: 0deg) {
$angle-per-char: $angle-span / $num-letters;
@for $i from 1 through $num-letters {
.char#{$i} {
@include transform(rotate($angle-offset + $angle-per-char * $i));
}
}
}
@mixin icon-setup($icon, $width, $height, $padding:"") {
padding-left: $width + 9;
position: relative;
&:before {
@include icon-sprite($icon);
content: '';
display: inline-block;
height: $height;
left: 5px;
position: absolute;
@zumwalt
zumwalt / Focus scroll
Created July 19, 2013 20:22
Keeps the window/body from scrolling while you're focused on a fixed/absolute element that also scrolls.
$('#element').bind('mousewheel DOMMouseScroll', function(e) {
var scrollTo = null;
if (e.type == 'mousewheel') {
scrollTo = (e.originalEvent.wheelDelta * -1);
}
else if (e.type == 'DOMMouseScroll') {
scrollTo = 40 * e.originalEvent.detail;
}
@zumwalt
zumwalt / calc() mixin for less
Last active February 2, 2017 18:30
calc() mixin for less
.calc(@expression) {
width: -moz-calc(@expression);
width: -o-calc(@expression);
width: -webkit-calc(@expression);
width: calc(@expression);
}
@zumwalt
zumwalt / Vagrantfile
Created April 9, 2013 18:27
Vagrantfile for vagrant-wordpress
Vagrant::Config.run do |config|
config.vm.define :wpvm do |wp_config|
# Box
wp_config.vm.box = "precise32"
# Box URL
wp_config.vm.box_url = "http://files.vagrantup.com/precise32.box"
# Access via IP.