Skip to content

Instantly share code, notes, and snippets.

View migreyes's full-sized avatar

Mig Reyes migreyes

View GitHub Profile
@janxious
janxious / basecamp.css
Last active November 3, 2015 21:16
Basecamp 3 Visual Alteration
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("basecamp.com") {
body { font-family: "Helvetica Neue",helvetica,arial,sans-serif !important; }
.card--app { border-radius: 0.75em !important; }
.chat-line__bubble {
border-radius: 0.25em !important;
background-color: #fff !important;
}
}
@kevingessner
kevingessner / gist:9509148
Last active April 27, 2023 15:45
Responsive emails that really work -- From Etsy's Code As Craft blog: http://codeascraft.com/2014/03/13/responsive-emails-that-really-work
<html>
<head>
<style type="text/css">
table table {
width: 600px !important;
}
table div + div { /* main content */
width: 65%;
float: left;
}
@mattborn
mattborn / quit
Created February 25, 2014 22:30
Automating closing apps when done working
#!/bin/bash
apps=( Calendar Evernote Google\ Chrome Hall Messages SourceTree Spotify Sublime\ Text\ 2 Tunnelblick )
for app in "${apps[@]}"
do
echo Closing "$app".
osascript -e "tell application \"$app\" to quit"
done
@mattborn
mattborn / work
Created February 25, 2014 22:27
Automating opening apps for work
#!/bin/bash
apps=( Tunnelblick Calendar Evernote Hall Messages SourceTree Spotify Sublime\ Text\ 2 )
for app in "${apps[@]}"
do
echo Opening "$app".
open /Applications/"$app".app
done