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
country | population | articles | edits | activeUsers | articlesPerCapita | editsPerCapita | activeUsersPer1KCapita | |
---|---|---|---|---|---|---|---|---|
Denmark | 5639719 | 215955 | 8518797 | 953 | 0.038292 | 1.510500 | 0.168980 | |
Estonia | 1313271 | 332 | 48197 | 10 | 0.000253 | 0.036700 | 0.007615 | |
Faroe Islands | 48553 | 11887 | 348630 | 36 | 0.244825 | 7.180401 | 0.741458 | |
Finland | 5470437 | 393245 | 16523678 | 1670 | 0.071885 | 3.020541 | 0.305277 | |
France | 66600000 | 1751912 | 128141405 | 16773 | 0.026305 | 1.924045 | 0.251847 | |
Germany | 80500000 | 1935911 | 159033243 | 19689 | 0.024049 | 1.975568 | 0.244584 | |
Hungary | 9983967 | 387017 | 18112981 | 1711 | 0.038764 | 1.814207 | 0.171375 | |
Iceland | 317351 | 40704 | 1587913 | 152 | 0.128262 | 5.003649 | 0.478965 | |
Italy | 50199700 | 1269347 | 85802406 | 8043 | 0.025286 | 1.709221 | 0.160220 |
https://www.openstreetmap.org/export#map=9/61.9247/-6.6632
curl 'http://overpass-api.de/api/map?bbox=-9.855,60.759,-2.549,63.005' -v > foroyar-overpass.xml
$ grep 'traffic_signals' -C 1 foroyar-overpass.xml
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
acl | |
adduser | |
apt | |
base-files | |
base-passwd | |
bash | |
bsdutils | |
coreutils | |
dash | |
debconf |
$ curl 'http://lubimyczytac.pl/ksiazka/264290' -s | grep -E '<meta|<link|sBookDescriptionLong'
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Language" content="pl" />
<meta name="Description" content="Poznań, początek 1924 roku. Mieszkańcami miasta wstrząsa fala brutalnych morderstw. Z rąk nieznanego sprawcy giną prostytutki. Śledztwo prowadzą komisarz Antoni Fischer oraz jego zastępca Albin Siewierski. Ten pierwszy to dystyngowany i elokwentny oficer n" />
<meta name="Keywords" content="" />
<meta name="google-site-verification" content="mJetwv1NM4QIfTB8l0pw3d1JeakCq5rIuiF-7rdQb3w" />
<meta name="LC_app_ver" content="83e373cf5c21cd1216a520fdc6bf7838" />
<meta name="all-apver" content="426076ebc703102e66f5722e4abf70b380eec15e" />
<link rel="stylesheet" type="text/css" media="screen, print" href="http://s.lubimyczytac.pl/skins/lc/css/lc_all_skin_lc.min.css?2015100802" />
$ curl http://web.archive.org/web/timemap/link/elecena.pl
<http://elecena.pl>; rel="original",
<http://web.archive.org/web/timemap/link/http://elecena.pl>; rel="self"; type="application/link-format"; from="Tue, 06 Mar 2007 09:11:48 GMT"; until="Sat, 01 Aug 2015 07:13:26 GMT",
<http://web.archive.org/web/http://elecena.pl>; rel="timegate",
<http://web.archive.org/web/20070306091148/http://elecena.pl/>; rel="first memento"; datetime="Tue, 06 Mar 2007 09:11:48 GMT",
<http://web.archive.org/web/20071015033258/http://www.elecena.pl/>; rel="memento"; datetime="Mon, 15 Oct 2007 03:32:58 GMT",
<http://web.archive.org/web/20071114185817/http://elecena.pl/>; rel="memento"; datetime="Wed, 14 Nov 2007 18:58:17 GMT",
...
- parse the parameters -
<places category={{PAGENAME}} />
- support hidden attribute of
place
tag -<place lat="52.40746376" lon="16.91907536" hidden />
(metadata will be added, but the map will not be rendered) - allow GeoJSON to be returned
- allow to provide list of pages to
<places>
tag (dpl handling):
<places>
Ratusz
Odwach
Waga Miejska
- https://sites.google.com/a/bve4trains.com/bve4trains/Home/open-bve-version-1-2-14-0
- http://archive.ubuntu.com/ubuntu/pool/universe/b/bve-route-cross-city-south/bve-route-cross-city-south_1.31.08.orig.tar.gz
- http://archive.ubuntu.com/ubuntu/pool/universe/b/bve-train-br-class-323/bve-train-br-class-323_4.0.1809.orig.tar.gz
sudo apt-get install mono-complete
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
var webpage = require('webpage'), | |
page = webpage.create(), | |
fs = require('fs'), | |
args = require('system').args; | |
var engine = args[1]; | |
// @see http://phantomjs.org/api/webpage/handler/on-console-message.html | |
page.onConsoleMessage = function(msg) { | |
console.log(msg); |
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
FROM ubuntu:latest | |
RUN apt-get update && apt-get dist-upgrade -y | |
RUN apt-get install -y gcc g++ git make flex bison gperf ruby perl python | |
RUN echo "deb http://archive.ubuntu.com/ubuntu/ trusty multiverse" >> /etc/apt/sources.list | |
RUN echo "deb-src http://archive.ubuntu.com/ubuntu/ trusty multiverse" >> /etc/apt/sources.list | |
RUN echo "deb http://archive.ubuntu.com/ubuntu/ trusty-updates multiverse" >> /etc/apt/sources.list | |
RUN echo "deb-src http://archive.ubuntu.com/ubuntu/ trusty-updates multiverse" >> /etc/apt/sources.list |