Archive for August, 2009

Asus N50Vn Chipset Driver XP

RapidShare: 1-CLICK Web hosting - Easy Filehosting

Asus N50Vn Display Driver XP

RapidShare: 1-CLICK Web hosting - Easy Filehosting

Asus N50Vn ATK Generic Function Utility XP

RapidShare: 1-CLICK Web hosting - Easy Filehosting

Asus N50Vn ATK HotKey Utility XP

RapidShare: 1-CLICK Web hosting - Easy Filehosting

Asus N50Vn ATKOSD2 Utility XP

RapidShare: 1-CLICK Web hosting - Easy Filehosting

Asus N50Vn ATK Media Utility XP

RapidShare: 1-CLICK Web hosting - Easy Filehosting

Asus N50Vn ATKDrv Utility XP

RapidShare: 1-CLICK Web hosting - Easy Filehosting

Asus N50Vn Audio Driver XP

RapidShare: 1-CLICK Web hosting - Easy Filehosting

Asus N50Vn Audio HDMI Driver XP

RapidShare: 1-CLICK Web hosting - Easy Filehosting

Asus N50Vn Bluetooth Driver XP

RapidShare: 1-CLICK Web hosting - Easy Filehosting

Asus N50Vn Camera Chicony Driver XP

RapidShare: 1-CLICK Web hosting - Easy Filehosting

Asus N50Vn Camera Suyin Driver XP

RapidShare: 1-CLICK Web hosting - Easy Filehosting

Asus N50Vn CardReader Driver XP

RapidShare: 1-CLICK Web hosting - Easy Filehosting

Asus N50Vn Ethernet Driver XP

RapidShare: 1-CLICK Web hosting - Easy Filehosting

Asus N50Vn Fingerprint Driver XP

RapidShare: 1-CLICK Web hosting - Easy Filehosting

Asus N50Vn Modem Driver XP

RapidShare: 1-CLICK Web hosting - Easy Filehosting

Asus N50Vn Touchpad Driver XP

RapidShare: 1-CLICK Web hosting - Easy Filehosting

Asus N50Vn TV Tuner Yuan MC570QA Driver XP

RapidShare: 1-CLICK Web hosting - Easy Filehosting

Asus N50Vn TV Tuner Yuan MC872 Driver XP

RapidShare: 1-CLICK Web hosting - Easy Filehosting

Asus N50Vn Wireless Console 2 XP

RapidShare: 1-CLICK Web hosting - Easy Filehosting

Asus N50Vn Wireless Intel Driver XP

RapidShare: 1-CLICK Web hosting - Easy Filehosting

GittiGidiyor.com’da bir süredir yeni açılan Günün Fırsat Ürünleri kısmını takip ediyorum. Gelen ürünler ve fiyatlar çok iyi, ucuz ve kullanışlı.

Geçen haftalarda bu kısımda yayında olan bir fotograf makinesinin 900 adet sattığına şahit oldum :) hem satici hem alıcılar için müthiş bişey :)

www.tasit.com sade ve hoş tasarımı ile dikkat çeken bir site olmuş. Arama sayfasında arama yapmadan kriterlere uyan ilan sayısını göstermesi de son günlerde gördüğüm en iyi yeniliklerden biriydi :)

http://www.coolutils.com/Online-Image-Converter.php bu adresteki çevirici çok işime yaradı, ek program ile uğraşmadan küçük simgelerimi hızlıca .ico dan .png ye çevirdim :)

sahibinden.com da “küp” aratamıyorum :) . Çok ilginç “küp” e karşi bi hassasiyeti var. Acaba 3 harf limiti mi dedim ama “pop”, “top” .. vb kelimelerde sonuç geliyor.

Siz de deneyin:
ana sayfada en tepedeki arama formuna “küp” yazıp aratın. Bembeyaz bir sayfa çıkıyor mu?

Adı üstünde , sitemap dosyanızı google ' a tekrar göndermek için kullanılan bir yöntem. Basitçe, sitemap i tekrar post ediyorsunuz :)

PHP:
  1. <?php
  2. /**
  3. * Function to ping Google Sitemaps.
  4. *
  5. * Function to ping Google Sitemaps. Returns an integer, e.g. 200 or 404,
  6. * 0 on error.
  7. *
  8. * @author     J de Silva                           <giddomains@gmail.com>
  9. * @copyright  Copyright &copy; 2005, J de Silva
  10. * @link       http://www.gidnetwork.com/b-54.html  PHP function to ping Google Sitemaps
  11. * @param      string   $url_xml  The sitemap url, e.g. http://www.example.com/google-sitemap-index.xml
  12. * @return     integer            Status code, e.g. 200|404|302 or 0 on error
  13. */
  14. function pingGoogleSitemaps( $url_xml )
  15. {
  16.    $status = 0;
  17.    $google = 'www.google.com';
  18.    if( $fp=@fsockopen($google, 80) )
  19.    {
  20.       $req'GET /webmasters/sitemaps/ping?sitemap=' .
  21.               urlencode( $url_xml ) . " HTTP/1.1\r\n" .
  22.               "Host: $google\r\n" .
  23.               "User-Agent: Mozilla/5.0 (compatible; " .
  24.               PHP_OS . ") PHP/" . PHP_VERSION . "\r\n" .
  25.               "Connection: Close\r\n\r\n";
  26.       fwrite( $fp, $req );
  27.       while( !feof($fp) )
  28.       {
  29.          if( @preg_match('~^HTTP/\d\.\d (\d+)~i', fgets($fp, 128), $m) )
  30.          {
  31.             $status = intval( $m[1] );
  32.             break;
  33.          }
  34.       }
  35.       fclose( $fp );
  36.    }
  37.    return( $status );
  38. }
  39. ?>

Örnek Kullanım :
$sonuc = pingGoogleSitemaps('http://www.ayhanbaris.com/sitemap-adresiniz.xml');
if ($sonuc == 200) {
echo "işlem tamam";
}

PHP:
  1. /**
  2. * dakikayi okunabilir saat:dakika şekline çevirir
  3. * * * ör:65 => 01:05
  4. *
  5. * @param integer $mins
  6. * @return string
  7. */
  8. function m2h($mins) {
  9.     if ($mins <0) {
  10.         $min = Abs($mins);
  11.     } else {
  12.         $min = $mins;
  13.     }
  14.     $H = Floor($min / 60);
  15.     $M = ($min - ($H * 60)) / 100;
  16.     $hours = $H$M;
  17.     if ($mins <0) {
  18.         $hours = $hours * (-1);
  19.     }
  20.     $expl = explode(".", $hours);
  21.     $H = $expl[0];
  22.     if (empty($expl[1])) {
  23.         $expl[1] = 00;
  24.     }
  25.     $M = $expl[1];
  26.     if (strlen($M) <2) {
  27.         $M = $M . 0;
  28.     }
  29.     $hours = $H . ":" . $M;
  30.     return $hours;
  31. }

Örnek :
echo m2h(65);

Zend Studio 7.0.0 Çıktı

http://www.zend.com/en/products/studio/
http://static.zend.com/topics/Zend-Studio-Release-Notes-700.txt