The popular open-source contract for web designers and developers by Stuff & Nonsense
- Originally published: 23/12/2008
- Revised date: 15/12/2013
- Original post
# Substitute your search term for YOURSEARCH | |
find ./ -name 'YOURSEARCH' -exec rm {} \; | |
# Change the command you apply to the found files by adjusting the call after the -exec | |
# For example, to list the found files… | |
find ./ -name '._*' -exec ls -al {} \; |
// Include Color Thief Script | |
// https://github.com/lokesh/color-thief | |
function colorChange(){ | |
//Be sure to include <img id="coverImage" src="" alt=""/> | |
var $myImage = $("#coverImage"); | |
var colorThief = new ColorThief(); | |
//Grabs 8 swatch color palette from image and sets quality to 5 (0 =slow, 10=default/fast) | |
var cp = colorThief.getPalette($myImage[0], 8, 5); |
/usr/bin/terminal-notifier -title 'Clinical Trials...' -message 'have been updated. Click to view.' -activate 'com.apple.Finder' -open 'file:///private/tmp/clinical_trial/' -group 'P4P' |
This is a simple way to backup your MySQL tables to Amazon S3 for a nightly backup - this is all to be done on your server :-)
Sister Document - Restore MySQL from Amazon S3 - read that next
this is for Centos 5.6, see http://s3tools.org/repositories for other systems like ubuntu etc
I freaking love working with technologies like Grunt and Gulp, and wanted to share how to get my current EE front-end workflow set up. With a few tweaks, this can also be used with virtually any other sites (I've used it with Laravel, static sites, Craft, etc).
(function($){ | |
$(function(){ | |
var $form = $('#search'), // Search form | |
$target = $('#results'), // Results container | |
rp = 'search/ajax-results'; // Template for results only | |
// Function to execute on success | |
var success = function(data, status, xhr) { | |
$target.html(data); | |
}; |
Stash 2.3.4 (beta) or later
/layouts/
standard.html
/partials/
listing.html
$(document).ready(function() { | |
$.fn.setAllToMaxHeight = function() { | |
return this.height(Math.max.apply(this, $.map(this, function(e) { | |
return $(e).height(); | |
}))); | |
}; | |
$(window).load(function() { |
/*================================================== | |
= Bootstrap 3 Media Queries = | |
==================================================*/ | |
/*========== Mobile First Method ==========*/ | |
/* Custom, iPhone Retina */ |