Go Yahoo Next!
Russ just told me about the new Yahoo! Mobile Ready Next page. Direct access to all of Yahoo's mobile services and a forum for people to bitch…
[@195]
No S60 support though, as Mike rightfully pointed out.
Weird Al Javavic: Java EE 5
Listen to Roumen new hit single…
Ladies and gentlemen, this is Java EE 5!One, two, three, four, five
There's a technology I use day and night
For my application with a web frontend
They told me to use .Net
But I really don't wannaSo many bugs I fixed last week.
My code is neat and talk is a cheap
I like Glassfish, JSF, persistence API
And as I continue you know they're gettin' sweeterSo what can I do I really beg you my Lord
To me codin' it's just like a sport
All the bad code from the past, let me dump it
Please set in the trumpetA little bit of injection in my life
A little bit of persistence by my side
A little bit of NetBeans is all I need
A little bit of EJB's what I see
A little bit of standards in the sun
A little bit of XML all night long
A little bit web services here I am
A little bit of code makes me real manThis is Java EE 5!
Jump up and down and move your code around
Shake your head to the sound bury bad code under ground
Move one step left and one step right
One to the front and one to the side
Refactor it once and refactor it twice
If it looks like this you're doin' it rightA little bit of injection in my life
A little bit of persistence by my side
A little bit of NetBeans is all I need
A little bit of EJB's is what I see
A little bit of standards in the sun
A little bit of XML all night long
A little bit web services here I am
A little bit of code makes me real manThis is Java EE 5!
Backing MySQL Up
I've seen quite some talk about various Automatic MySQL Backup scripts. Maybe I'm missing the point, but backing up MySQL databases is not rocket science. I use a very simple logrotate script:
Logrotate provides all kinds of configuration options. There's really no need to reinvent the wheel.
/etc/logrotate.d /mysql-backup /opt/backups/mysql-backup.sql {
notifempty
daily
nocreate
rotate 15
missingok
compress
postrotate
# just if mysqld is really running
if test -n "`ps acx|grep mysqld`"; then
/usr/bin/mysqldump --user=USER --password=PASSWORD --add-drop-table --add-locks --all --extended-insert --quick -A > /opt/backups/mysql-backup.sql
fi
endscript
}


