| 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
| 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
| /* | |
| 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
| // 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
| { | |
| "dependencies": { | |
| "lodash": "^3.10.1", | |
| "yamljs": "^0.2.3" | |
| } | |
| } |
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('A').controller('C', function(data) { | |
| document.write(data.x); | |
| }); |
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 | |
| # Author: Simon Legner <Simon.Legner@gmail.com> | |
| convert () { | |
| in="$1" | |
| out="${in%.m4a}.ogg" | |
| ffmpeg -i "$in" \ | |
| -acodec libvorbis -aq 4 -vn -ac 2 \ | |
| -map_metadata 0 \ | |
| "$out" |
I tried to get rid of the following messages by the Apache odfdom library.
Aug 20, 2014 8:55:45 AM org.odftoolkit.odfdom.pkg.OdfXMLFactory newOdfAttribute
INFO: None-ODF attribute created for calcext:value-type
Strangely, this did not work out …
java.util.logging.Logger.getLogger("org.odftoolkit").setLevel(java.util.logging.Level.WARNING);
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
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta http-equiv="content-type" content="text/html;charset=utf-8"> | |
| <link rel="stylesheet" href="http://josm.openstreetmap.de/mapsviewdata/ol.css" type="text/css"> | |
| <link rel="stylesheet" href="http://josm.openstreetmap.de/mapsview.css" type="text/css"> | |
| <script src="http://josm.openstreetmap.de/mapsviewdata/ol.js" type="text/javascript"></script> | |
| <title>Geoimage.at MaxRes - JOSM - Imagery Preview</title> | |
| </head> |
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
| # $Id: PKGBUILD 80202 2012-11-17 15:45:28Z eric $ | |
| # Maintainer: Tobias Powalowski <tpowa@archlinux.org> | |
| pkgname=pmount | |
| pkgver=0.9.23 | |
| pkgrel=9 | |
| pkgdesc="mount removable devices as normal user" | |
| arch=(i686 x86_64) | |
| license=('GPL2') | |
| url="http://pmount.alioth.debian.org/" |