This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* From css-tricks.com | |
* http://css-tricks.com/snippets/css/media-queries-for-standard-devices/ | |
*/ | |
/* Smartphones (portrait and landscape) ----------- */ | |
@media only screen | |
and (min-device-width : 320px) | |
and (max-device-width : 480px) { | |
/* Styles */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
BUILDDIR=/tmp/php_imap_mavericks | |
mkdir "$BUILDDIR" | |
echo " " | |
echo "= FETCHING AND INSTALLING IMAP" | |
echo " " | |
cd "$BUILDDIR" | |
wget -c ftp://ftp.cac.washington.edu/imap/imap-2007f.tar.gz | |
rm -rf imap-2007f |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(function(){ | |
window.AFA = {}; | |
AFA.Models = {}; | |
AFA.Collections = {}; | |
AFA.Views = {}; | |
AFA.Models.User = Backbone.Model.extend({ | |
initialize: function(){ | |
var devices = new AFA.Collections.Devices(this.get('devices')); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$to = '[email protected]'; | |
$from = '[email protected]'; | |
$reply_to = '[email protected]'; | |
$subject = 'Website Change Reqest'; | |
$headers = "From: " . strip_tags($from) . "\r\n"; | |
$headers .= "Reply-To: ". strip_tags($reply_to) . "\r\n"; | |
$headers .= "CC: " . strip_tags($from) . "\r\n"; | |
$headers .= "MIME-Version: 1.0\r\n"; | |
$headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n"; |
NewerOlder