Skip to content

Instantly share code, notes, and snippets.

@miku
miku / Sierra.md
Last active August 19, 2023 21:24
MacOS Sierra App Store Link
@Ibochkarev
Ibochkarev / openweathermap.weather.php
Created September 4, 2015 06:38
Openweathermap weather city
<?php
//q = Name city
$curl = curl_init("http://api.openweathermap.org/data/2.5/weather?q=calp&units=metric&mode=xml&lang=ru");
curl_setopt($curl, CURLOPT_FAILONERROR, true);
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, false);
curl_setopt($curl, CURLOPT_HEADER, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 1);