Archive for the 'The Codes' Category

Add Twitter feeds to your web site using Simple XML

Wednesday, July 1st, 2009

Add Twitter feeds to your web site using Simple XML: see example
//Simply add this section of the code somewhere on top of the page –>//

<?php

function twitter_status($twitter_id, $hyperlinks = true) {

$c = curl_init();

curl_setopt($c, CURLOPT_URL, “http://twitter.com/statuses/user_timeline/$twitter_id.xml”);

curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);

curl_setopt($c, CURLOPT_CONNECTTIMEOUT, 3);

curl_setopt($c, CURLOPT_TIMEOUT, 5);

$response = curl_exec($c);

[...]

Cloud Computing – Sun Microsystems

Wednesday, July 1st, 2009

Cloud Computing white paper from Sun Microsystems
Cloud computing promises to increase the velocity with which applications are deployed, increase innovation,
and lower costs, all while increasing business agility. Sun takes an inclusive view of cloud computing that
allows it to support every facet, including the server, storage, network, and virtualization technology that drives
cloud computing environments to the [...]

FLV MIME Type for IIS

Thursday, May 1st, 2008

I ran into a problem of not being able to play FLV on one of the servers. After talking with some experts and thorough research, Here is the solution:
Adding .flv MIME type in IIS
1) Select the site to configure in IIS, right click and select “Properties”
2) Under HTTP Headers Tab, select “File Types” under the [...]