Re: IM gateways?

2009-04-07 Thread Ed
On Tue, Apr 7, 2009 at 10:58 PM, Joseph Sinclair wrote: > The main advantages of gateways, from my perspective, are twofold: > 1) Your multiple IM personas are managed server-side, so you connect once > from any given location and don't have to re-enter all your accounts > everywhere. > 2) Gatew

Re: IM gateways?

2009-04-07 Thread Joseph Sinclair
The main advantages of gateways, from my perspective, are twofold: 1) Your multiple IM personas are managed server-side, so you connect once from any given location and don't have to re-enter all your accounts everywhere. 2) Gateways can connect to additional services that most clients cannot conn

Re: IM gateways?

2009-04-07 Thread Kurt Granroth
Sure, I have multiple IM accounts for exactly that reason. But pretty much every IM client out there can support multiple accounts. Why wouldn't you just manage your multiple accounts in the IM app instead of routing it through some other service? I have to be missing something pretty fundamenta

Re: IM gateways?

2009-04-07 Thread Jon M. Hanson
It allows you to keep using an AOL Instant Messenger account, for example, if you still have people on that service that you need to keep in contact with and you already have an account. --- Jon M. Hanson (N7ZVJ) Weblog: http://the-hansons-az.net/wordpress/ Homepage: http://the-hansons-az.net/

IM gateways?

2009-04-07 Thread Kurt Granroth
Has anybody here used an IM gateway and, if so, what is their purpose? I've been playing around with the OpenFire jabber server lately (very slick, btw) and one of its features is an IM Gateway. It allows you to communicate with non-jabber IM servers (like AIM, Messenger, etc) through this gatewa

Re: "Plug Computing"

2009-04-07 Thread Charles Jones
If there is one it is internal and there is no port designed into the enclosure to get to it. It does have various memorycard slots. Theoretically if you are using the NAND flash for the filesystem you shouldn't need RAID unless you mean for just storage expansion+speed purposes. -Charles S

Re: "Plug Computing"

2009-04-07 Thread Steve Phariss
I was looking at these and have a question... does this model have a sata II connecter? the block diagrams seem to say it does, so I am thinking you could interface a faster HD interface (raid???) Steve On Sat, Apr 4, 2009 at 4:20 PM, Charles Jones < charles.jo...@ciscolearning.org> wrote: > I

Re: O.T. email management ?

2009-04-07 Thread Bishmer Sekaran
Eric Shubert wrote: > I have come to appreciate imap. It allows me to access my email from a > variety of clients (t-bird, squirrelmail, blackberry) without any sort > of conflict. No more pop3 for me! > > I have multiple email accounts, and use thunderbird. It handles multiple > accounts (identi

Re: O.T. email management ?

2009-04-07 Thread Eric Shubert
Architect mike enriquez wrote: > I have several email accounts and I need to find a way to manage them. I > wonder if anyone in the plug community has come up with a good way to > handle multiple accounts. > I can put them all on one computer, I can put each account on its own > computer. Next w

Re: O.T. email management ?

2009-04-07 Thread JD Austin
Have them all forward to a single account and filter them to folders based on what email address it was sent to. -- JD Austin Twin Geckos Technology Services LLC j...@twingeckos.com 480.288.8195x201 http://www.twingeckos.com Emo Philips

iButton anyone?

2009-04-07 Thread Tim Noeding
I was wondering if anyone has any experience with these? I am currently repairing a machine that uses these as a security feature. It's the first time I've seen one, but I figure one of you may have some experience with these. If so, let me know if you have found a good way of dealing with them.

Re: O.T. email management ?

2009-04-07 Thread Stephen
id take a look at what email program offends you the least. start there. this is going to be tough because we all have certain personal preferences... i personally am fond of evolution and gmail, and then Thunderbird in that order. but interestingly i really like gmail. maybe look at its pop set

Re: Script to rename all filenames in a directory to use ALL CAPITAL LETTERS

2009-04-07 Thread Ted Gould
On Tue, 2009-04-07 at 13:15 -0700, wayne wrote: > Its probably simple, but would take me a week > > Ie: > Make: 2009-4_5_WaDAq_a.Dn.23.f > INTO: 2009-4_5_WADAQ_ADN.23.F rename 'y/a-z/A-Z/' * --Ted PS - you can put any regular expression in there if you want something more comple

MODIFIED Script to rename all filenames in a directory to use ALL CAPITAL LETTERS, EXCEPT whaterever is after the .

2009-04-07 Thread wayne
> > > Ie: > Make: 2009-4_5_WaDAq_a.Dn.23.farp > INTO: 2009-4_5_WADAQ_ADN.23.farp > --- PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us To subscribe, unsubscribe, or to change your mail settings: http://lists.PLUG.ph

O.T. email management ?

2009-04-07 Thread Architect mike enriquez
I have several email accounts and I need to find a way to manage them. I wonder if anyone in the plug community has come up with a good way to handle multiple accounts. I can put them all on one computer, I can put each account on its own computer. Next what should they all be using the same ema

Re: Script to rename all filenames in a directory to use ALL CAPITAL LETTERS

2009-04-07 Thread Andrew "Tuna" Harris
Excerpts from waydavis's message of Tue Apr 07 13:15:35 -0700 2009: > Its probably simple, but would take me a week > > Ie: > Make: 2009-4_5_WaDAq_a.Dn.23.f > INTO: 2009-4_5_WADAQ_ADN.23.F > I've done something very similar once, but it makes them all lowercase. I wrote it in Ruby for a f

Re: Script to rename all filenames in a directory to use ALL CAPITAL LETTERS

2009-04-07 Thread Stephen P Rufle
This is how I was doing it before I saw the one liner #!/usr/local/bin/python # ren_to_upper.py import os for fname in os.listdir(os.getcwd()): newfname = fname.upper() os.rename(fname, newfname) --- PLUG-discuss mailing list - PLUG-discus

Re: Script to rename all filenames in a directory to use ALL CAPITAL LETTERS

2009-04-07 Thread Stephen P Rufle
nice. I was just putzing with python to solve. :) Charles Jones wrote: > $ ls -l > total 0 > -rw-r--r-- 1 root root 0 2009-04-07 13:23 2009-4_5_WaDAq_a.Dn.23.f > > for file in `ls`; do mv -v $file `echo $file| tr '[:lower:]' > '[:upper:]'`; done > `2009-4_5_WaDAq_a.Dn.23.f' -> `2009-4_5_WADAQ_A.

Re: Script to rename all filenames in a directory to use ALL CAPITAL LETTERS

2009-04-07 Thread James Finstrom
Same Idea for i in `find * -depth`; do (mv $i `echo $i|tr [:lower:] [:upper:]`); done James Finstrom Rhino Equipment Corp. http://rhinoequipment.com ~ http://postug.com Phone: 1-877-RHINO-T1 ~ FAX: +1 (480) 961-1826 Twitter: http://twitter.com/rhinoequipment IP: gu...@asterisk.rhinoequipmen

Re: Script to rename all filenames in a directory to use ALL CAPITAL LETTERS

2009-04-07 Thread wayne
SWEET - THANK YOU! Charles Jones wrote: > $ ls -l > total 0 > -rw-r--r-- 1 root root 0 2009-04-07 13:23 2009-4_5_WaDAq_a.Dn.23.f > > for file in `ls`; do mv -v $file `echo $file| tr '[:lower:]' > '[:upper:]'`; done > `2009-4_5_WaDAq_a.Dn.23.f' -> `2009-4_5_WADAQ_A.DN.23.F' > > -Charles > wayne w

Re: Script to rename all filenames in a directory to use ALL CAPITAL LETTERS

2009-04-07 Thread Charles Jones
$ ls -l total 0 -rw-r--r-- 1 root root 0 2009-04-07 13:23 2009-4_5_WaDAq_a.Dn.23.f for file in `ls`; do mv -v $file `echo $file| tr '[:lower:]' '[:upper:]'`; done `2009-4_5_WaDAq_a.Dn.23.f' -> `2009-4_5_WADAQ_A.DN.23.F' -Charles wayne wrote: > Its probably simple, but would take me a week >

Script to rename all filenames in a directory to use ALL CAPITAL LETTERS

2009-04-07 Thread wayne
Its probably simple, but would take me a week Ie: Make: 2009-4_5_WaDAq_a.Dn.23.f INTO: 2009-4_5_WADAQ_ADN.23.F --- PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us To subscribe, unsubscribe, or to change your mail settings:

Re: Cheap NAS or MSI Wind/Eee Box?

2009-04-07 Thread Ryan Rix
It'll fail to work if your inode sizes are too large. I can mount / in windows but not /home on my system... :( On Fri, Apr 3, 2009 at 7:02 AM, Bob Elzer wrote: > FYI if you like, you can have the full drive use ext3. > > Using ext2ifs will let windows access your ext3/ext2 drive > > http://www.

Re: IM ROOT

2009-04-07 Thread stu w
On Sat, 2009-04-04 at 19:43 -0700, James Finstrom wrote: > I was at the park and swap today and the advantage of being a linux > geek is the ability touse it as an excuse. My son saw world of > warcraft and wanted it I said no son that doesn't work on our pc (no > wow in my house) anyway the guy sa