Re: [vox-tech] xmms shoutcast lists

2005-05-13 Thread Mark K. Kim
On Sat, 14 May 2005, Peter Jay Salzman wrote: > On Fri 13 May 05, 3:51 PM, Mark K. Kim <*+cbreak.org> said: > > I'm not sure if there's a bookmark functionality but you can make a > > customized playlist (m3u or pls but I always use m3u) with a little work: > > > > 1. First, load the statio

Re: [vox-tech] emacs formatting

2005-05-13 Thread Charles McLaughlin
Thanks for all of the suggestions and comments. I did a little reading on programming styles... it turns out my favorite style is called BSD/Allman. :) I played around with the emacs customize screen for a while, then ended up manually added this entry in my .emacs file: (setq c-offsets-alis

Re: [vox-tech] xmms shoutcast lists

2005-05-13 Thread Peter Jay Salzman
On Fri 13 May 05, 3:51 PM, Mark K. Kim <[EMAIL PROTECTED]> said: > I'm not sure if there's a bookmark functionality but you can make a > customized playlist (m3u or pls but I always use m3u) with a little work: > > 1. First, load the station you want, then right click on the playlist > edi

Re: [vox-tech] xmms shoutcast lists

2005-05-13 Thread Peter Jay Salzman
On Fri 13 May 05, 6:32 PM, David Hummel <[EMAIL PROTECTED]> said: > On Fri, May 13, 2005 at 06:17:00PM -0400, Peter Jay Salzman wrote: > > > > Does xmms have a utility to manage Shoutcast stations? As it stands, > > it looks like I need to keep a personal webpage of links. Instead, > > I'd like

Re: [vox-tech] xmms shoutcast lists

2005-05-13 Thread Mark K. Kim
I'm not sure if there's a bookmark functionality but you can make a customized playlist (m3u or pls but I always use m3u) with a little work: 1. First, load the station you want, then right click on the playlist editor, and do a "Save List", and save the list as "save.m3u". 2. Then load

Re: [vox-tech] xmms shoutcast lists

2005-05-13 Thread David Hummel
On Fri, May 13, 2005 at 06:17:00PM -0400, Peter Jay Salzman wrote: > > Does xmms have a utility to manage Shoutcast stations? As it stands, > it looks like I need to keep a personal webpage of links. Instead, > I'd like for xmms to remember stations it gets pointed to and let me > pick and choos

Re: [vox-tech] xmms shoutcast lists

2005-05-13 Thread Bill Kendrick
On Fri, May 13, 2005 at 06:17:00PM -0400, Peter Jay Salzman wrote: > I recently discovered Shoutcast Internet radio stations. Pretty cool. You > click on an m3u link, and xmms becomes a radio station. Radio receiver, you mean? :) > Does xmms have a utility to manage Shoutcast stations? As it

[vox-tech] xmms shoutcast lists

2005-05-13 Thread Peter Jay Salzman
I recently discovered Shoutcast Internet radio stations. Pretty cool. You click on an m3u link, and xmms becomes a radio station. Does xmms have a utility to manage Shoutcast stations? As it stands, it looks like I need to keep a personal webpage of links. Instead, I'd like for xmms to remembe

[vox-tech] Raid 1 - Fresh Install - Drives seem slow

2005-05-13 Thread Jay Strauss
Hi, I just installed Sarge on an old PPro 180Mhz, with / on a RAID1 device and everything else on RAID1/VG/LVGs (which is very easy using the new Debian installer). I'm building this machine to be an offsite backup machine. It took 10hrs to sync my 100GiB partition, the first time, which seems

Fwd: Re: [vox-tech] [OT] Windows Question for Relative

2005-05-13 Thread Bill Kendrick
I think Bill may have posted from a non-existent address, as the post to vox-tech got auto-discarded, and I sent him a note, it bounced. :) Anyway, here's Bill Wells' post in the "Windows Question for Relative" thread: Date: Fri, 13 May 2005 12:43:10 -0700 From: Bill Wells <[EMAIL PROTECTED]> Su

Re: [vox-tech] emacs formatting

2005-05-13 Thread Rod Roark
On Friday 13 May 2005 11:16 am, Bill Kendrick wrote: > Heh. Yeah, yuck. I'll do this for one-liners, sometimes, though: > > if (foo) { do_something(); } Actually in PHP, C and Java you can omit the braces for a single statement: if (foo) do_something(); Or in Perl: do_something() if

Re: [vox-tech] emacs formatting

2005-05-13 Thread Micah J. Cowan
On Fri, May 13, 2005 at 11:27:21AM -0700, Jonathan Stickel wrote: > > Charles McLaughlin wrote: > > Hello, > > > > I am hoping someone can point me in the write direction. I want to > > change how emacs formats code. I'm very picky about spacing and > > brackets. If I have to make the change

Re: [vox-tech] emacs formatting

2005-05-13 Thread Micah J. Cowan
On Fri, May 13, 2005 at 01:19:07PM -0400, Peter Jay Salzman wrote: > > but in some situations emacs formats code like this: > > > > if(foo) > > { > > doSomething(); > > } > > *barf*!!! This is the official GNU indentation style. It does have some nice things about it... but lately I te

Re: [vox-tech] emacs formatting

2005-05-13 Thread Jonathan Stickel
I'm an amateur when it comes to emacs hacks, but I suspect you'll need to add appropriate lines for each mode to your ~/.emacs file. Probably cut and paste will do much of it, though. Jonathan Charles McLaughlin wrote: Hello, I am hoping someone can point me in the write direction. I want to cha

Re: [vox-tech] emacs formatting

2005-05-13 Thread Bill Kendrick
On Fri, May 13, 2005 at 01:19:07PM -0400, Peter Jay Salzman wrote: > > if(foo) > { doSomething(); > } > > which is heretical. ;) Heh. Yeah, yuck. I'll do this for one-liners, sometimes, though: if (foo) { do_something(); } I think I mostly do that in PHP, though, where you end up mashing

Re: [vox-tech] emacs formatting

2005-05-13 Thread Peter Jay Salzman
I can't resist... On Fri 13 May 05, 10:06 AM, Charles McLaughlin <[EMAIL PROTECTED]> said: > > Here is an example of how I like to format things: > > if(foo) > { > doSomething(); > } This is my preferred style as well. I'm meeting more and more people who prefer this style, so I think it's

[vox-tech] emacs formatting

2005-05-13 Thread Charles McLaughlin
Hello, I am hoping someone can point me in the write direction. I want to change how emacs formats code. I'm very picky about spacing and brackets. If I have to make the change for every mode that is fine, but I'd prefer to make the change once and have it apply to all types of code I use.