Jun 2009
The Best Stuff in the World!
06/15/2009 15:27 Filed in: Personal
Folks, here's a picture of the best stuff in the
world. This is a meal in a pouch and no, it's not
C-Rations
Read More...
Read More...
0 Comments
Importing your DVD's into iTunes
06/13/2009 14:30 Filed in: Personal
First of all, let me just say that I'm not one to
break copyright protection on digital media. But, I
have quite a large collection of DVD's that I want to
put into iTunes. My favorite collection is the entire
series of Star Trek The Next Generation. I have all
seven seasons on DVD and some of them are starting to
get a little scratched. So I've found that the best
way to backup my DVD's was to put them into iTunes.
I have a brand new 3.06 GHz iMac with a 1 TB hard drive but I keep all of my iTunes on an external Seagate 500 GB FreeAgent Firewire drive. So I found this handy DVD video conversion utility called "iMedia Converter" by iSkysoft. This is such a great piece of software I just had to write about it. I can convert to and from so many different video formats. Right now I'm converting one of my DVD's to MPEG-4 Format (.m4v) which is what iTunes uses as it's video format.
For only $49.00 for the software to backup my DVD collection, it is well worth the price.
I have a brand new 3.06 GHz iMac with a 1 TB hard drive but I keep all of my iTunes on an external Seagate 500 GB FreeAgent Firewire drive. So I found this handy DVD video conversion utility called "iMedia Converter" by iSkysoft. This is such a great piece of software I just had to write about it. I can convert to and from so many different video formats. Right now I'm converting one of my DVD's to MPEG-4 Format (.m4v) which is what iTunes uses as it's video format.
For only $49.00 for the software to backup my DVD collection, it is well worth the price.
The best development tool for creating cross-platform applications.
06/10/2009 03:18 Filed in: Work
This topic was taken from the REALbasic website. This
is my number one development platform for Mac OS X,
Microsoft Windows and Linux. If you're looking for a
rapid application development platform, this is the
one for you. It resembles Microsoft Visual Basic 6
but is much more powerful in many ways. You can find
this at http://www.realbasic.com.
All of the software that I write is done in REALbasic
and most of the programs I'm currently working on
will be available on this site. So keep checking back
for software titles that I've written. Some will be
available shortly.
Read More...
Read More...
Simplify Terminal Directory Listings
06/09/2009 11:13 Filed in: Apple
First of all, I have to give credit for this entry to
Rob Griffiths from Macworld. It was he who was
responsible for getting me to write this blog entry.
Today’s 10-up Tweet featured a simple improvement to the ls -al command. This command lists all files in long format, and the output is quite verbose:
$ ls -l
total 0
drwx------@ 4 Steve staff 136 Jun 9 17:38 Desktop
drwxr-xr-x@ 222 Steve staff 7548 Jun 9 17:45 Documents
drwx------@ 4 Steve staff 136 Jun 9 07:43 Downloads
drwx------@ 51 Steve staff 1734 Jun 9 09:04 Library
drwx------@ 8 Steve staff 272 May 14 19:04 Movies
drwx------@ 5 Steve staff 170 Apr 30 06:58 Music
drwx------@ 9 Steve staff 306 May 16 20:38 Pictures
drwxr-xr-x@ 6 Steve staff 204 May 29 17:31 Public
drwxr-xr-x@ 4 Steve staff 136 Jun 7 18:06 Sites
drwx------ 3 Steve staff 102 May 20 03:06 StuffIt
etc...
But if you’ve got files with lengthy names, this output can get quite wide—and the thing you may be most interested in, the filename, will be a good distance off to the right. The command line suggestion is to use ls -hog instead. This “piggie” version of ls uses three modifiers to simplify the output. The h modifier converts file sizes to human-readable form (7.4K instead of 7548). The next two options work together to eliminate both the owner (Steve) and the group (staff) from the output. When you use this version of the command, the output is much cleaner:
$ ls -hog
total 0
drwx------@ 4 136B Jun 9 17:38 Desktop
drwxr-xr-x@ 222 7.4K Jun 9 17:45 Documents
drwx------@ 4 136B Jun 9 07:43 Downloads
drwx------@ 51 1.7K Jun 9 09:04 Library
drwx------@ 8 272B May 14 19:04 Movies
drwx------@ 5 170B Apr 30 06:58 Music
drwx------@ 9 306B May 16 20:38 Pictures
drwxr-xr-x@ 6 204B May 29 17:31 Public
drwxr-xr-x@ 4 136B Jun 7 18:06 Sites
drwx------ 3 102B May 20 03:06 StuffIt
etc...
Now there’s only a bit of added information at the front—the permissions on the file, and the number of hard links (ln) to that file. If you’d rather not see those columns, you can send the output of ls to the cut command, which can trim columns from the output prior to display. In this case, the file size information starts at the 20th character, so the command (and its output) look like this:
$ ls -hog | cut -c 20-
136B Jun 9 17:38 Desktop
7.4K Jun 9 17:45 Documents
136B Jun 9 07:43 Downloads
1.7K Jun 9 09:04 Library
272B May 14 19:04 Movies
170B Apr 30 06:58 Music
306B May 16 20:38 Pictures
204B May 29 17:31 Public
136B Jun 7 18:06 Sites
102B May 20 03:06 StuffIt
etc...
Today’s 10-up Tweet featured a simple improvement to the ls -al command. This command lists all files in long format, and the output is quite verbose:
$ ls -l
total 0
drwx------@ 4 Steve staff 136 Jun 9 17:38 Desktop
drwxr-xr-x@ 222 Steve staff 7548 Jun 9 17:45 Documents
drwx------@ 4 Steve staff 136 Jun 9 07:43 Downloads
drwx------@ 51 Steve staff 1734 Jun 9 09:04 Library
drwx------@ 8 Steve staff 272 May 14 19:04 Movies
drwx------@ 5 Steve staff 170 Apr 30 06:58 Music
drwx------@ 9 Steve staff 306 May 16 20:38 Pictures
drwxr-xr-x@ 6 Steve staff 204 May 29 17:31 Public
drwxr-xr-x@ 4 Steve staff 136 Jun 7 18:06 Sites
drwx------ 3 Steve staff 102 May 20 03:06 StuffIt
etc...
But if you’ve got files with lengthy names, this output can get quite wide—and the thing you may be most interested in, the filename, will be a good distance off to the right. The command line suggestion is to use ls -hog instead. This “piggie” version of ls uses three modifiers to simplify the output. The h modifier converts file sizes to human-readable form (7.4K instead of 7548). The next two options work together to eliminate both the owner (Steve) and the group (staff) from the output. When you use this version of the command, the output is much cleaner:
$ ls -hog
total 0
drwx------@ 4 136B Jun 9 17:38 Desktop
drwxr-xr-x@ 222 7.4K Jun 9 17:45 Documents
drwx------@ 4 136B Jun 9 07:43 Downloads
drwx------@ 51 1.7K Jun 9 09:04 Library
drwx------@ 8 272B May 14 19:04 Movies
drwx------@ 5 170B Apr 30 06:58 Music
drwx------@ 9 306B May 16 20:38 Pictures
drwxr-xr-x@ 6 204B May 29 17:31 Public
drwxr-xr-x@ 4 136B Jun 7 18:06 Sites
drwx------ 3 102B May 20 03:06 StuffIt
etc...
Now there’s only a bit of added information at the front—the permissions on the file, and the number of hard links (ln) to that file. If you’d rather not see those columns, you can send the output of ls to the cut command, which can trim columns from the output prior to display. In this case, the file size information starts at the 20th character, so the command (and its output) look like this:
$ ls -hog | cut -c 20-
136B Jun 9 17:38 Desktop
7.4K Jun 9 17:45 Documents
136B Jun 9 07:43 Downloads
1.7K Jun 9 09:04 Library
272B May 14 19:04 Movies
170B Apr 30 06:58 Music
306B May 16 20:38 Pictures
204B May 29 17:31 Public
136B Jun 7 18:06 Sites
102B May 20 03:06 StuffIt
etc...
Safari 4 Final is out
06/09/2009 07:57 Filed in: Apple
Safari 4 the final release is out. The Tab bar is
back where it used to be but I like it. it’s faster
and more stable than the beta releases where. Since I
just downloaded it, I’ll have to write more on the
new browser as I get used to it. Here is a link where
you can get the latest Safari 4 final release.
http://www.apple.com/safari/
Leopard Startup Commands
06/05/2009 19:47 Filed in: Apple
| Action/Explanation
|
Keystroke
|
| Eject CD on
boot
|
Hold Mouse
button down immediately after powering on
|
| OS X Safe
boot
|
Press Shift
during startup
|
| Start up in
FireWire Target Disk mode
|
Press T
during startup
|
| Startup from
a CD
|
Press C
during startup
|
| Bypass
primary startup volume and seek a different
startup volume (CD, etc.)
|
Press
Cmd-Opt-Shift-Delete during startup
|
| Choose
Startup disk before booting
|
Press Option
during startup
|
| Start up in
Verbose mode
|
Press Cmd-V
during startup
|
| Start up in
Single-User mode (command line)
|
Press Cmd-S
during startup
|
| Force
Powerbook screen reset
|
Press R
during startup
|
| Force OS X
startup
|
Press X
during startup
|