Re: [plug] filename case change utility?

2009-02-20 Thread Daniel Escasa
Sabi ni Fooler noong Fri, Feb 20, 2009 at 3:11 PM: as like i said... if you cant find in google.. you can find it here in plug :- To clarify, Google did give me links to utilities, but they were for Windows. Wasn't about to boot into Windows just to run those utils. the commands below

[plug] Game Testing Job for a Free Software Person

2009-02-20 Thread Silverlokk
http://www.fsdaily.com/Business/Game_Testing_Job_for_a_Free_Software_Person links to http://freegamer.blogspot.com/2009/02/game-testing-job-for-free-software.html Sent to you by Silverlokk via Google Reader: Game Testing Job for a Free Software Person via fsdaily.com - Free Software News -

Re: [plug] Xaprb: Migrating US Government applications from Oracle to MySQL

2009-02-20 Thread Orlando Andico
The answer to most of these questions is no. But that said, if the proprietary DB is only used as a data store via ODBC or JDBC, then yes, migration is possible. Stability and availability is a completely different story, however... just because something is possible, doesn't mean it should be

Re: [plug] Xaprb: Migrating US Government applications from Oracle to MySQL

2009-02-20 Thread Roger Filomeno
They should be asking Facebook devs these stuff, HA can be done in MySQL, just that you need more other stuff. Some light reading also in: http://highscalability.com/ -- Roger P. Filomeno TwitSnap: The coolest Twitter widget for your site! http://www.twitsnap.com

Re: [plug] filename case change utility?

2009-02-20 Thread fooler mail
On Fri, Feb 20, 2009 at 4:11 PM, Daniel Escasa desc...@gmail.com wrote: Sabi ni Fooler noong Fri, Feb 20, 2009 at 3:11 PM: as like i said... if you cant find in google.. you can find it here in plug :- To clarify, Google did give me links to utilities, but they were for Windows. Wasn't

Re: [plug] filename case change utility?

2009-02-20 Thread fooler mail
just a minor correction when changing a character from uppercase to lowercase below... 1. add #include ctype.h without the qoutes with the list of #includes 2. replace *n = *o | 0x20; with *n = tolower(*o); without the qoutes 3. recompile using gcc with the same parameters OR'ing the character