This file contains 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 batch process a whole folder of images you just copy them to a thumbnail folder and use ImageMagick to crop them to the size you want. | |
cd /home/user/photos/holidays | |
mkdir thumbs | |
cp /home/user/photos/holidays/* /home/user/photos/holidays/thumbs/ | |
cd thumbs | |
# To cut out a section of the image (not resizing it) widthXheight+xoffset+yoffset | |
mogrify -crop 940x300+0+50 * |
This file contains 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
# backup small files (text files?) | |
find /home/user -type f -size -100k -print0 | tar -c -z --null --files-from=- -f backup.small.files.tgz | |
# Backup PHP files | |
find /home/user -type f -name '*.php' -print0 | tar -c -z --null --files-from=- -f backup.php.files.tgz |
This file contains 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
# Go back to an older revision | |
svn update -r 499 | |
# or older version of file | |
svn update -r 499 file | |
# or just open a copy in a file for viewing | |
svn cat -r 499 file | less | |
# Find the current revision |
This file contains 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
//////////////////////////////////// | |
//screenshot @ end of game | |
start_intermission = [ | |
sleep 20 [ screenshot ] //sleep because you might get a black screen otherwise | |
] | |
// Hide the "GHOST" notice when watching | |
// /hidespecthud 1 |
This file contains 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
mysql> delimiter $$ | |
mysql> | |
CREATE PROCEDURE myFunction() | |
BEGIN | |
DECLARE i INT DEFAULT 1; | |
WHILE (i<=1000000) DO | |
INSERT into table (fk1_id, fk2_id, date) values (i, 1000000 - i, NOW()); |
This file contains 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
# Currently don't have most of the conf finalized - will update this when I do. | |
[mysqld] | |
init_connect='SET collation_connection = utf8_general_ci; SET NAMES utf8;' | |
default-character-set=utf8 | |
character-set-server=utf8 | |
collation-server=utf8_general_ci | |
skip-character-set-client-handshake |
This file contains 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
var jQuery = (function() { | |
// Define a local copy of jQuery | |
var jQuery = function( selector, context ) { | |
// The jQuery object is actually just the init constructor 'enhanced' | |
return new jQuery.fn.init( selector, context ); | |
}; | |
jQuery.fn = jQuery.prototype = { |
This file contains 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
# On the server create a empty master codebase repo | |
$git --init --bare | |
# On your machine create the repo | |
$git --init | |
# ...do git stuff and commit... | |
# Then add the codebase over SSH | |
$ git remote add codebase ssh://[email protected]:22/var/www/git/repo/ |
This file contains 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
# We want pages to be called the name of the post | |
<title>{block:PostTitle}{PostTitle} - {/block:PostTitle}{Title}</title> | |
# Or if you also want a title for non-text posts | |
<title>{block:PostTitle}{PostTitle} - {/block:PostTitle}{block:PostSummary}{PostSummary} - {/block:PostSummary}{Title}</title> | |
# http://developers.facebook.com/docs/reference/plugins/like | |
# We want a facebook like button | |
<iframe src="http://www.facebook.com/plugins/like.php?href={URLEncodedPermalink}&layout=button_count&show_faces=false&width=98&action=like&colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:80px; height:30px;margin-top:2em;text-align:right;"></iframe> |
This file contains 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
javascript:(function(){var newSS, styles='* { background: white ! important; color: black !important } :link, :link * { color: #0000EE !important } :visited, :visited * { color: #551A8B !important }'; if(document.createStyleSheet) { document.createStyleSheet(%22javascript:'%22+styles+%22'%22); } else { newSS=document.createElement('link'); newSS.rel='stylesheet'; newSS.href='data:text/css,'+escape(styles); document.getElementsByTagName(%22head%22)[0].appendChild(newSS); } })(); |