This site offers several XML-RPC services to PHP-GTK developers, in order to help them work out their dev skills with distributed programs.
These services are available from this site using the following set of parameters:
This being a service provided at no cost, it is not guaranteed to be available or reliable, or to return proper results, and can be revoked at any time without prior warning or compensation to users.
The site offers "access_stats", a simplistic API to obtain actual live statistics from the site over XML-RPC, to allow any developer to work with real data when creating charts with PHP-GTK.
gtkphpnet.access_statsThis function is used on the site itself to produce the chart (using GD) shown in the site handbook about access stats.
The site offers "geo-nick", a simplistic API to obtain this information coupled with the optional IRC nick field, to allow any developer to create mashups showing community PHP-GTK developers, as identified by nickname (no actual name information is made available through this API) on a map.
gtkphpnet.geo_nick$min_nick is the lower limit (not included) for nicks to be
returned. Defaults to blank string ''$count is the maximum number of entries to be returned.The site enforces a throttling restriction, limiting the maximum number of results
any request can return. This means that in some cases clients will have to loop on
the results to obtain the full list of geo-nick triplets. This is the purpose of the
$min_nick parameter, which allows a client to loop over the full list
of geo-nick triplets by looping over the results each time passing in the highest
nickname from the previous pass, until the result set is empty.
An additional method may be useful: it returns the total number of active devs along with the number of those who have supplied valid geo-nick information.
gtkphpnet.active_usersarray( 'users' => number of users, 'geo-nick' => number of users with geo-nick information )
Contributors have written several pages showing the various ways in which PHP-GTK programs can make use of such XML-RPC services, complete with sample code using geo-nick.