Why is GoogleUpdateChecker trying to connect to host "t" port 80? Is that a bug?
Technorati Tags: Google
This is the copy that's shown when you choose to configure your cert's options manually.
Advanced Users: Configure Certificate Extensions Please note that the extension options below are not for the faint of heart. You probably won't trigger a Vogon invasion of Earth if you press the wrong button, but you might cause weird behaviour in some otherwise-normal software. Don't fiddle with this unless you've been told to, or unless you're a born fiddler.
Technorati Tags: humor
insults If set, sudo will insult users when they enter an incorrect password. This flag is off by default.
Technorati Tags: Flickr
If you have MacPorts installed, try this:
sudo port install bash-completion source /opt/local/etc/bash_completion
There is so much yumminess here that it's hard to know where to begin. Directory commands like pushd will now tab-complete only to directories, user commands like usermod now only complete to usernames, gunzip completes only to files that end in .gz, unalias completes only with current aliases, kill completes with a list of pids, etc., etc., etc. The only danger here is wearing out your tab key.
Obviously, you want to put this in your ~/.profile. Also, since the file takes advantage of features in the latest versions of bash, you may want to sudo port install bash, add /opt/local/bin/bash to /etc/shells, and chsh.
Technorati Tags: OSX, Programming, MacPorts
Probably old humor to many, new to me:
stechert@kirin:~/Repositories/perforce/current/UnixBuild/swig [1140] $ otool -h _splunkswig.so
_splunkswig.so:
Mach header
magic cputype cpusubtype filetype ncmds sizeofcmds flags
0xfeedface 7 3 8 16 2264 0x0001a085
Makes me think we missed an opportunity with our magic:
stechert@kirin:~/Scratch/bproblem [1157] $ od -N 7 -a 1143222000-1143220421-21680121.tsidx 0000000 S p l u n k 3
Technorati Tags: humor, Programming
It was nice knowing you, 2006, how colorful you were.
Now, on to reckoning with 2007. Now hear this:
Finally, some small predictions, because I can't resist:
Technorati Tags: 2006
#include <stdio.h>
#include <sys/types.h>
#include <sys/sysctl.h>
int main()
{
int retval, mib[4];
struct kinfo_proc kp;
size_t len;
len = sizeof(kp);
mib[0] = CTL_KERN;
mib[1] = KERN_PROC;
mib[2] = KERN_PROC_PID;
mib[3] = getpid();
retval = sysctl(mib, 4, &kp, &len, NULL, 0);
if (retval == -1)
return 1;
if (len <= 0)
return 2;
printf("%u\n", kp.kp_eproc.e_pcred.p_svuid);
return 0;
}