Version Control with Subversion

This is the home of Version Control with Subversion, a free book about the ubiquitous Apache™ Subversion® version control system and written by some of the developers of Subversion itself.

As you may have guessed from the layout of this page, we are quite pleased that some versions of this book have been published by O’Reilly Media. You can certainly buy a traditionally published print copy of the book if you’d like to, but you’ll always find the most recent versions here on this site, available in both HTML and PDF formats.

Version Control with Subversion.

DoCoMo to ask for changes in Android

The leading Japanese mobile phone service provider identified an Android application, which enables free-of-charge voice communication, as a major cause behind a service disruption that occurred on Wednesday, the business daily said.

Some Android applications send out control signals once every three to five minutes even when not in use. This translates to ten times that of a conventional mobile phone, placing additional strain on the network, the newspaper said.

via DoCoMo to ask for changes in Android -Nikkei | Reuters.

UNetbootin

UNetbootin allows you to create bootable Live USB drives for Ubuntu, Fedora, and other Linux distributions without burning a CD. It runs on Windows, Linux, and Mac OS X. You can either let UNetbootin download one of the many distributions supported out-of-the-box for you, or supply your own Linux .iso file if you’ve already downloaded one or your preferred distribution isn’t on the list.

via UNetbootin – Homepage and Downloads.

PHP-based admin tool to manage SQLite databases

phpLiteAdmin is a web-based SQLite database admin tool written in PHP with support for SQLite2 and SQLite3. Following in the spirit of the flat-file system used by SQLite, phpLiteAdmin consists of a single source file, phpliteadmin.php, that is dropped into a directory on a server and then visited in a browser. There is no installation required. The available operations, feature set, interface, and user experience is comparable to that of phpMyAdmin.

via phpliteadmin – PHP-based admin tool to manage SQLite databases – Google Project Hosting.

Connecting to an external database from within a WordPress post

Connecting to an external database from within a WordPress post — Tyssen Design.

Hi Phil,

At the top of the post, I included:
<?php
include('/path/to/database/connection.php');
?

and that file looked like:
<?php
function runSQL($rsql) {
$rootpasswd='yourPasswordHere';
$user='yourUserHere';
$db='yourDBhere';
$dbcnx = @mysql_connect('localhost',$user,$rootpasswd,true);
if (!$dbcnx) {
echo '<p>Unable to connect to the database server at this time.</p>';
exit();
}
mysql_select_db($db, $dbcnx);
$result = mysql_query($rsql) or die ('test');
return $result;
mysql_close($connect);
}
}

Then to loop through the results:
$sql = "Your SQL statement goes here";
$result = runSQL($sql);
while ($row = mysql_fetch_array($result)) {
Do stuff;
}

vCita

vCita is a new way to interact with website visitors, acquire clients and provide services online. vCita encourages your online audience to approach you, ask for advice and schedule time to talk over video or phone.

via vCita.

This site puts out a wordpress plugin (secure contact form) that uses the resources this outfit has to offer.   Interesting business model.