When did it suddenly become cool to hate everything? It's a growing problem, especially in the entertainment world, and no one benefits from an increasingly hard to please, pessimistic audience.
Details
June 13
294 KB 274 KB 925×600 StatisticsShare
Link
Embed
Thumb
|
Comments
<?php
/* Be Sure to replace CITYDATA in $url with your own city from Yahoo */
$url="http://weather.yahoo.com/forecast/USAL0356.html";
$ch = curl_init();
$timeout = 0; // set to zero for no timeout
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
$file_contents = curl_exec($ch);
curl_close($ch);
$divStart = "<div class=\"forecast-icon\"";
$strEnd = "'
$start = strpos($file_contents, $divStart) + 50;
$end = strpos($file_contents, $strEnd);
$length = $end-$start;
$imagepath=substr($file_contents, $start , $length);
$image=imagecreatefrompng($imagepath);
imagealphablending($image, true);
imagesavealpha($image, true);
header('Content-Type: image/png'
imagepng($image);
?>
If you would like to do the same, copy everything from the start <?php and paste it into a text file which you must change the file type to be .php, upload it wherever you can get the direct link and then use the link in Geektool, Easy. Don't forget to change your city code. Cheers, Camxso
--
~Tigz~
My Blog: [link]
My Galley: [link]
Find the Geektool.BowTie Theme and right click to show package contents. Open the .html file in a text editor and where 'Helvetica Neue LT' is, put whatever font that you'd prefer and have installed on your system. Save it and close. Double-Click the new saved BowTie theme and it should reinstall the good one. Quit BowTie and restart, Voila!
The reason yours is showing up as a different font is because you don't have Helvetica Neue LT installed.
You can download the Helvetica Neue Light font from this link for free.
[link]
Cheers and Enjoy! Camxso
--
~Tigz~
My Blog: [link]
My Galley: [link]
Previous PageNext Page