Skip to content

Instantly share code, notes, and snippets.

@Quilted
Quilted / gist:1036188
Created June 20, 2011 18:15
List files that have been changed since a certain time
find ./ -mtime -3d
@Quilted
Quilted / gist:1007032
Created June 3, 2011 19:45
CSS Sticky Footer for Zen
We couldn’t find that file to show.
@Quilted
Quilted / gist:989969
Created May 24, 2011 23:06
Delete untracked files (not excluded via .gitignore) from a git repo
rm $(git ls-files -o --exclude-standard)
@Quilted
Quilted / Custom Panel Pane
Created February 15, 2011 22:44
Custom Panel Pane: This is for user pages, replace 'user' with node and replace artist_profile with your module.
<?php
/**
* Implementation of specially named hook_ctools_content_types()
*/
function artist_profile_share_ctools_content_types() {
return array(
'single' => TRUE,
'title' => t('Custom Share Links'),
'icon' => 'icon_node.png',