How To Quickly Backup HSQLDB Database...July 31st, 2007 HSQLDB is a high performance RDBMS written in pure Java. It can be used as a in-memory database or regular file based database.
Oracle Aligns Itself More Closely With PHP DevelopersMay 23rd, 2005 Oracle integrates PHP scripting engine (dubbed "Zend Core for Oracle") with its 10g database and application server for building apps based on the open source development language. What remains to be seen is whether Oracle is shifting focus away from Java or just encompassing additional languages.
Simplest Way To Backup WordPress From BrowserJune 8th, 2008 Traditionally WordPress is backed up by backing the database and the files separately, if required. WordPress 2.5.1 introduces a much simpler way to backup the database in xml format on your desktop.
How to Backup & Restore MySQL DatabaseMay 13th, 2005 Note: My WordPress database name is wordpress. I will use it in the example below.
JavaFX Script Programming Language Raises More Questions Than AnswersMay 6th, 2008 The JavaFX Script Programming Language Tutorial by James Weaver at JavaOne 2008 was rather insipid. In my jet-lagged state, it was enough to put me to peaceful slumber.
Linux / Fedora Core: How To Use rdiff-backup To Pull BackupsMay 26th, 2007 rdiff-backup is a popular, free, open source mirroring and incremental backup system for posix based operating systems like linux & Mac OS X. It uses rysnc algorithm through librsync but it doesn't use rsync.
Why A New Scripting Language for JavaFX?May 7th, 2008 I was intrigued by the fact that a new scripting language was designed for JavaFX, a new technology based on the Java platform, designed to enable consistent user experiences on desktop, mobile, TV, and other consumer platforms, where existing languages like Javascript or Groovy could be embraced and extended instead. A new language means a learning curve for a developer to get proficient at and also not be able to leverage the developer base of an existing popular language like Javascript or Gorrvy.
How To Recover Files From Hard Disk CrashFebruary 13th, 2007 My desktop computers hard-disk crashed today morning without any warning. The S.M.A.R.T.
How To Install Latest Version of rdiff-backup in Fedora Core 6 and EarlierOctober 21st, 2008 Fedora Core 6 an earlier do not have the latest version of rdiff-backup - version 1.2.2. The latest version of rdiff-backup is incompatible with the earlier versions.
Choosing Between Windows & Linux for Workstation & Servers: Rationale & ExperienceFebruary 17th, 2007 Traditionally companies choose Windows as their desktop environment and often for their intranet servers too. Windows is generally perceived as being easier to use and administer and mostly with good reason.
How To Migrate Mantis Defect Tracking System From Windows To Linux / Fedora Core 6May 12th, 2007 Mantis is popular php based defect tracking application which works on top of RDBMS like MySQL and PostgreSQL. Recently I ported our Windows based Mantis installation to Linux.
How to Update or Change Password for a Single User in MySQL and Reload PrivilegesJanuary 17th, 2009 MySQL stores usernames and passwords in the user table inside the MySQL database. You can directly update a password using the following method to update or change passwords:
1) Login to the MySQL server, type the following command at the shell prompt:
$ mysql -u root -p
2) Use the mysql database (type commands at the mysql> prompt):
mysql> use mysql;
3) Change password for a user:
mysql> update user set password=PASSWORD("newpass") where User='YOUR-USER-NAME';
4) Reload privileges:
mysql> flush privileges;
mysql> quit
[P.S.
Ubuntu Releases Thunderbird Patch for Highly Critical VulnerabilitiesMay 3rd, 2006 The security vulnerabilities addressed are: Security Bypass, Cross Site Scripting, Exposure of system information, Exposure of sensitive information and Denial of Service. Ubuntu has issued an update for thunderbird.
Fun With RoR TransactionsMarch 7th, 2006 RoR multi-table transaction appears to be a mess. You have to create transactions on each table.
Cross-Site Scripting Vulnerability in Apache mod_imap ModuleDecember 16th, 2005 A cross-site scripting (XSS) vulnerability has been discovered in the Apache httpd server's mod_imap module which allows remote attackers to inject arbitrary web script or HTML via the Referer when using image maps. Input passed to the image map "Referer" directive in "mod_imap" isn't properly sanitised before being returned to the user.