Wednesday, December 19, 2007

Blur album search

http://search.yahooapis.com/AudioSearchService/V1/albumSearch?appid=guutkG3V34HxIvbHpxk5fWycYHrY_kN1aFOTzUojldlW1U3NFod145J3XxsU49g-&artistid=DEPDEPDEPDEPDEPDEPDEPDEPDEPDEPDEPDEPDEPDEPDEPDEPDEPDEPDEPDEPDEPDEPDEPDEPDEPDEPDEPed5a970f372cc94edf6e8b09cd685e37&results=50

Tuesday, December 11, 2007

Friday, November 23, 2007

Text size in Ubuntu

Applications like Zend Studio Neon inherit size for the PHP Explorer from Gnome - so you can change it using gnome-control-center under font settings.

Thursday, November 08, 2007

$news_site = "http://localhost/industrynews.html";
$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $news_site);
$news_html = curl_exec($ch);
curl_close($ch);

Friday, September 14, 2007

cronjob

wget -q -O - --header="Host: yourdomain.blah.co.uk" http://localhost/yoururl.php > dev/null

Monday, August 13, 2007

dotProject

http://sourceforge.net/project/showfiles.php?group_id=21656&package_id=30225&release_id=510005

Saturday, August 11, 2007

rt2x00

http://rt2x00.serialmonkey.com/fc3howto/install_rt2400_FC3.htm

Saturday, August 04, 2007

firmware versions

"sp8870", "sp887x", "tda10045", "tda10046", "av7110", "dec2000t", "dec2540t", "dec3000s", "vp7041", "dibusb"

LinuxTV device drivers for DVB

http://linuxtv.org/wiki/index.php/How_to_install_DVB_device_drivers

Wednesday, July 25, 2007

Wednesday, July 04, 2007

http://wiki.internal.dev.mw.yellow/index.php/Special:Search?search=dolor&go=Go

Monday, July 02, 2007

mediawiki api call

$url = "http://wiki.internal.dev.mw.yellow/api.php";
$parameters = "?action=login&lgname=WikiSysop&lgpassword=nohanlon";
$whole_url = $url . $parameters;
$ch = curl_init($whole_url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

$result = curl_exec($ch);
curl_close($ch);

echo $result;
?>