Skip to content

Instantly share code, notes, and snippets.

View fabian's full-sized avatar

Fabian Vogler fabian

View GitHub Profile
<?php
// some geo locations
$brandenburgerTor = array(
'lat' => 52.516455903398,
'lon' => 13.380317687988
);
$friedrichstrasse = array(
'lat' => 52.519772437396,
#Newbie programmer
def factorial(x):
if x == 0:
return 1
else:
return x * factorial(x - 1)
print factorial(6)
#First year programmer, studied Pascal