Skip to content

Instantly share code, notes, and snippets.

View polarpixel's full-sized avatar

Peter Bickel polarpixel

View GitHub Profile
@dergel
dergel / load_redaxo.php
Last active January 22, 2018 12:19
REDAXO Installer Datei
<?php
// info echo "REDAXO wurde bereits installiert"; exit;
error_reporting(E_ALL);
ini_set("display_errors",1);
$current_version_path = file_get_contents("http://www.redaxo.org/de/_system/_version/5/");
$install_path = './';
$install_file = $install_path.'redaxo.zip';
@crofty
crofty / index.html
Last active October 22, 2021 08:24
A example of using Google Map tiles with the Leaflet mapping library - http://matchingnotes.com/using-google-map-tiles-with-leaflet
<!DOCTYPE html>
<html>
<head>
<title>Leaflet</title>
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.3.1/leaflet.css" />
<script src="http://cdn.leafletjs.com/leaflet-0.3.1/leaflet.js"></script>
<script src="http://maps.google.com/maps/api/js?v=3.2&sensor=false"></script>
<script src="http://matchingnotes.com/javascripts/leaflet-google.js"></script>
</head>
<body>