Hits: 461 Collaborate on documents in really real-time on SUSE Linux EtherPad is the first web-based word processor that allows people to work together in really real-time. All editing of the document is instantly visible on the screens of all participating users, enabling new and productive ways to collaborate on text documents. Etherpad is useful for [...]
Hits: 484 Amazon CloudFront is a web service for content delivery (CDN). It integrates with other Amazon Web Services EC2 / S3 to give developers and businesses an easy way to distribute content to end users with low latency and high data transfer speeds. http://aws.amazon.com/cloudfront/ Digital Inspiration – Thanks to http://www.labnol.org… it always provides help for [...]
Hits: 263 <?php require_once(‘lib/nusoap.php’); $url = “http://www.hotelscombined.com/api/wsdl/SearchSoap.wsdl”; // web service URL $client = new nusoap_client($url, false); // soap client to consume API // XML payload from “soapUI” to send over wsdl server $xmlRequest=’<soapenv:Envelope xmlns:soapenv=”http://schemas.xmlsoap.org/soap/envelope/” xmlns:tem=”http://tempuri.org/” xmlns:hot=”http://schemas.datacontract.org/2004/07/HotelsCombined.WebServices.Version4″> <soapenv:Header/> <soapenv:Body> <tem:HotelSearch> <!–Optional:–> <tem:request> <hot:ApiKey>?</hot:ApiKey> <hot:Checkin>?</hot:Checkin> <hot:Checkout>?</hot:Checkout> <hot:DisplayCurrency>?</hot:DisplayCurrency> <hot:Guests>?</hot:Guests> <hot:HotelID>?</hot:HotelID> <hot:LanguageCode>?</hot:LanguageCode> <hot:Rooms>?</hot:Rooms> <hot:TimeOutInSeconds>?</hot:TimeOutInSeconds> <hot:UserAgent>?</hot:UserAgent> <hot:UserID>?</hot:UserID> <hot:UserIPAddress>?</hot:UserIPAddress> </tem:request> [...]
Hits: 1063 Geocoding (finding latitude/longitude for street addresses), Geotagging (tagging media with latitude/longitude coordinates), and Geolocation (finding latitude/longitude of computer with IP X-Forwarded-For). There are some options to install on linux environment: # wget http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz # gunzip GeoLiteCity.dat.gz # sudo mkdir -v /usr/share/GeoIP # sudo mv -v GeoLiteCity.dat /usr/share/GeoIP/GeoIPCity.dat Install geoip with php5 # sudo apt-get [...]
Hits: 126 PEAR have rich library to access web based resources easily… <?php $sv = new SVTube(); $sv->download(“D7cm-yu-CP0″, “svnlabs.flv”) ?> Class: SVTube.php —————————— <?php require_once ‘HTTP/Client.php’; require_once ‘HTTP/Request.php’; class SVTube { var $req; var $debug = false; var $auth = false; function download ($video_id, $video_filename) { $url = “http://www.youtube.com/watch?v=”.$video_id; $this->req =& new HTTP_Request($url); $response = $this->req->sendRequest(); [...]







