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
$ diskutil list | |
$ sudo umount /dev/disk3 | |
$ dd if=/dev/disk3 of=image.iso bs=2048 conv=sync,notrunc | |
$ hdiutil burn image.iso |
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
# Because I know I'll forget this when I need it again, I'm documenting it here. | |
screencapture -x -C -T0 cap.png; (pngtopnm cap.png | ppmtopgm | pnmquant 16 | pnmtopng > cap-bw.png) >/dev/null 2>&1 |
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
/* | |
* use with Stylish Chrome extension, https://chrome.google.com/webstore/detail/stylish/fjnbnpbmkenffdnngjfgmeleoegfcffe?hl=en | |
* for URLs on the domain redbooth.com | |
*/ | |
@media print { | |
.tb-kanban-zone { | |
display: none; | |
} |
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
<script type="text/javascript"> | |
// http://matznermatzner.de/en/bernd/2013/11/loading-non-amd-modules-requirejs-part-1-jquery-ui/ | |
requirejs.config({ | |
paths: { | |
'jquery.ui.core': 'lib/jquery-ui/1.10.4/ui/minified/jquery.ui.core.min', | |
'jquery.ui.mouse': 'lib/jquery-ui/1.10.4/ui/minified/jquery.ui.mouse.min', | |
'jquery.ui.resizable': 'lib/jquery-ui/1.10.4/ui/minified/jquery.ui.resizable.min', | |
'jquery.ui.widget': 'lib/jquery-ui/1.10.4/ui/minified/jquery.ui.widget.min', | |
}, | |
shim: { |
This file has been truncated, but you can view the full file.
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
The following patch is a combination of the Dell contributions to ipmitool, taken from the following Dell tarball for the corresponding RPM: | |
http://opensource.dell.com/releases/BMU/ipmitool-1.8.11-99.dell.tar.bz2 | |
This patch was generated by diff'ing the upstream ipmitool-1.8.11 source against the ipmitool-1.8.11-99.dell source, with the following command: | |
% diff -urN -x .git -x autom4te.cache -x Makefile -x config.h -x config.log -x config.status -x '*.keep' -x .deps -x '*.spec' ipmitool-1.8.11 ipmitool-1.8.11-99.dell > ipmitool-1.8.11-99.dell.patch | |
Release Notes.txt | 9 | |
ipmitool-1.8.11-99.dell/CHANGES.txt | 8 |
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
14:47:01 irc.freenode.net <- 366 monkeybutter #dossy :End of /NAMES list. | |
14:47:01 irc.freenode.net <- NOTICE monkeybutter :[#dossy] Tip: Don't ask to ask a question, just ask it. Then, wait around long enough to get an answer. | |
14:47:01 irc.freenode.net <- 328 monkeybutter #dossy :http://dossy.org/ | |
14:49:07 irc.freenode.net <- PING :anthony.freenode.net | |
14:49:07 Ping plugin: irc.freenode.net -> PING monkeybutter 1306435747 | |
14:49:07 Pong plugin: irc.freenode.net -> PONG anthony.freenode.net | |
14:49:07 irc.freenode.net <- NOTICE monkeybutter :PING 1306435747 | |
14:49:07 Pong plugin: irc.freenode.net -> PONG 1306435747 | |
14:51:13 irc.freenode.net <- PING :anthony.freenode.net | |
14:51:13 Pong plugin: irc.freenode.net -> PONG anthony.freenode.net |
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/sh | |
# set -x | |
cmd=`php -r "require('$1'); | |
echo escapeshellcmd(sprintf('mysql %s %s %s %s', | |
'-h' . DB_HOST, '-u' . DB_USER, '-p' . DB_PASSWORD, DB_NAME));"` | |
# echo $cmd | |
exec $cmd |
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
#!/usr/bin/perl -w | |
# http://www.mail-archive.com/[email protected]/msg01885.html | |
my $build = "2008110408"; | |
use diagnostics; | |
use strict; | |
use Getopt::Long; | |
my $tldtop = 0; | |
my $detailed = 1; | |
my $syslog = 1; | |
GetOptions ( |
NewerOlder