Average | Route |
---|---|
286 m | 1 Bergisel – Mühlauer Brücke |
280 m | 1 Mühlauer Brücke – Bergisel |
326 m | 3 Amras – Höttinger Au/West |
326 m | 3 Höttinger Au/West – Amras |
1046 m | 6 Bergisel – Igls |
1046 m | 6 Igls – Bergisel |
403 m | A Rum – Sadrach |
461 m | A Sadrach – Rum |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// https://github.com/angular/angular.js/pull/9160#issuecomment-68950547 | |
// http://plnkr.co/edit/qvzXkQkVtTLHvHVYXTdU?p=preview | |
angular.module('foo', []).config(config); | |
function config($provide) { | |
$provide.decorator('numberFilter', function($delegate) { | |
$delegate.$stateful = true; | |
return $delegate; | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
HotCat V2.33 | |
Ajax-based simple Category manager. Allows adding/removing/changing categories on a page view. | |
Supports multiple category changes, as well as redirect and disambiguation resolution. Also | |
plugs into the upload form. Search engines to use for the suggestion list are configurable, and | |
can be selected interactively. | |
Documentation: https://commons.wikimedia.org/wiki/Help:Gadget-HotCat | |
List of main authors: https://commons.wikimedia.org/wiki/Help:Gadget-HotCat/Version_history |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
angular.module('app').config(function($httpProvider) { | |
$httpProvider.interceptors.push(delayHttp); | |
function delayHttp($timeout) { | |
return { | |
response: function(response) { | |
return $timeout(angular.identity, Math.random() * 1000, true, response); | |
} | |
}; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!-- Using optional BOM (0xEF 0xBB 0xBF) --> | |
<!-- From http://forum.openstreetmap.org/viewtopic.php?id=7186 --> | |
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" | |
targetNamespace="http://openstreetmap.org/osm/0.6" | |
xmlns="http://openstreetmap.org/osm/0.6"> | |
<xs:element name="osm"> | |
<xs:complexType> | |
<xs:sequence> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.google.common.collect.Range; | |
import java.time.Duration; | |
import java.time.Instant; | |
import java.time.Period; | |
import java.time.ZoneId; | |
import java.time.ZonedDateTime; | |
import java.time.format.DateTimeParseException; | |
import java.time.temporal.TemporalAmount; | |
import java.util.Objects; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /etc/caddy/Caddyfile | |
cloud.example.com { | |
root /srv/http/nextcloud/ | |
fastcgi / localhost:7070 php { | |
root /var/www/html/ | |
} | |
timeouts 30m | |
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
cd $(dirname $0) | |
verLocal=$(cat josm_version) | |
verRemote=$(wget -qO - http://josm.openstreetmap.de/latest) | |
echo local $verLocal remote $verRemote | |
if [ $verLocal -lt $verRemote ]; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
set -e | |
# setup ssh-agent and provide the GitHub deploy key | |
eval "$(ssh-agent -s)" | |
openssl aes-256-cbc -K $encrypted_dc4c0df7bb33_key -iv $encrypted_dc4c0df7bb33_iv -in id_ed25519.enc -out id_ed25519 -d | |
chmod 600 id_ed25519 | |
ssh-add id_ed25519 | |
# commit the assets in build/ to the gh-pages branch and push to GitHub using SSH |