Skip to content

Instantly share code, notes, and snippets.

View gokturksigirtmac's full-sized avatar
🏠
Working from home

Göktürk Sığırtmaç gokturksigirtmac

🏠
Working from home
View GitHub Profile
@orhanveli
orhanveli / test.php
Last active July 17, 2019 18:36
Yahoo Weather API Türkiye il kodları
$sehir_kodu = "2344116"; // İstanbul
$url = "http://weather.yahooapis.com/forecastrss?w=".$sehir_kodu."&u=c";
$feed = file_get_contents($url);
preg_match('@<yweather:condition text="(.*?)" code="(.*?)" temp="(.*?)" date="(.*?)" />@', $feed, $suan_hava);
preg_match_all('/<img src="(.*)"\/>/Usi', $feed, $img);
$Suan_Hava_Sicakligi = $suan_hava[3];
$Suan_Hava_Ikon_Kodu = $suan_hava[2];
@kaku87
kaku87 / parent.html
Created July 22, 2013 08:48
javascript popup close callback event.
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Popup Example</title>
</head>
<body>
<script>
function popupCallback(str){
alert("This is callback:" + str);
}