Romania, am trecut-o fara incidente, pe A1 la Sibiu, valea Oltului, A1, pe groaznica centura a Bucurestiului respectiv prin vama pe la Giurgiu.
La Bulgari am incercat un traseu postat de cei care organizeaza transport cu autocarul, numai ca am pus punctele doar pana la Sofia. De acolo m-am lasat condus de “prietena mea” Ioana (iGO8) si de pe autostrada… am ajuns pe un drum secundar pe care am avut o medie sub 40Km/h. Dupa cateva ore buneeeeee am ajuns in vama… De la vama pe acelasi tip de drum 2 benzi, cu foarte multe curbe si numai cu dubla continua, am ajuns la Drama de unde s-a mai latit drumul.
Pana la Kavala sunt 3 radare fixe.
La Kavala am luat feribot pana pe insula. A ajuns in port la prox 1:30 min dupa ce am ajuns noi. Tarif: 20 euro masina si 10 euro 2 persoane. Distanta intre Kavala si Prinou a fost parcursa in aproximativ 1 ora si 30 min.
Din Prinou pana in Skala Potamia (nu apare pe gps) au mai fost aprox 40Km.
On 1 February 2011, the IANA allocated two /8s of IPv4 address space to APNIC, the Regional Internet Registry (RIR) for the Asia Pacific region.
This means that only five /8s of IPv4 address space are left in the IANA free pool and the “Global Policy for the Allocation of the Remaining IPv4 Address Space” will be triggered.
Today, 30 November 2010, the Internet Assigned Numbers Authority (IANA) distributed four of the remaining eleven /8s to the Regional Internet Registries (RIRs): 5/8 and 37/8 to the RIPE NCC and 23/8 and 100/8 to ARIN. The IANA free pool of IPv4 addresses now stands at seven /8s, or 2.73% of the total IPv4 address pool.
There are now only two IPv4 blocks available under the normal distribution method.
If you have not already adopted the next generation of Internet Protocol, IPv6, I strongly urge you to act now. For more information on IPv6 adoption, visit: http://www.ipv6actnow.org/
If you have any questions or comments, please email <ncc@ripe.net>.
<?php
$string = "This is some text and numbers 12345 and symbols !£$%^&";
$new_string = ereg_replace("[^A-Za-z0-9]", "", $string);
echo $new_string
?>
Pentru vlaidarea unui mac in PHP putem folosi:
Pentru adresele mac de tip UNIX (exemplu: 00:15:17:1D:73:5F)
$input_string = "00:15:17:1D:73:5F";
if (preg_match('/^[a-f0-9]{2}:[a-f0-9]{2}:[a-f0-9]{2}:[a-f0-9]{2}:[a-f0-9]{2}:[a-f0-9]{2}$/i',$input_string))
{
echo "Yes, the mac address is valid.";
} else
{
echo "No, the mac address is wrong";
}
Pentru adresele mac de tip WINDOWS (exemplu: 00-25-9c-4b-1e-2b)
$input_string = "00-25-9c-4b-1e-2b";
if (preg_match('/^[a-f0-9]{2}-[a-f0-9]{2}-[a-f0-9]{2}-[a-f0-9]{2}-[a-f0-9]{2}-[a-f0-9]{2}$/i',$input_string))
{
echo "Yes, the mac address is valid.";
} else
{
echo "No, the mac address is wrong";
}
Pentru adresele mac de tip Cisco (exemplu: 0018.f352.d31c)
$input_string = "0018.f352.d31c";
if (preg_match('/^[a-f0-9]{4}\.[a-f0-9]{4}\.[a-f0-9]{4}$/i',$input_string))
{
echo "Yes, the mac address is valid.";
} else
{
echo "No, the mac address is wrong";
}
Recent Comments