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="utf8"?> | |
<osm version="0.6" generator="Overpass API 0.7.62.4 2390de5a"> | |
<note>The data included in this document is from www.openstreetmap.org. The data is made available under ODbL.</note> | |
<meta osm_base="2025-01-31T09:39:06Z" areas="2025-01-31T03:31:12Z"/> | |
<node id="34044537" lat="51.4646645" lon="5.5495891" version="10" timestamp="2025-01-28T18:24:12Z" changeset="161868829" uid="197244" user="JeroenHoek" action="modify"> | |
<tag k="addr:city" v="Nuenen"/> | |
<tag k="addr:housenumber" v="8"/> | |
<tag k="addr:postcode" v="5672GL"/> | |
<tag k="addr:street" v="Hoge Brake"/> | |
<tag k="brand" v="Lidl"/> |
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
Mo-Fr 07:00-21:00; Sa 07:00-20:00; Su 10:00-18:00 | |
Mo-Fr 07:00-21:00; Sa 07:00-20:00; Su 10:00-20:00 | |
Mo-Fr 07:00-21:00; Sa 07:00-20:00; Su 12:00-18:00 | |
Mo-Fr 07:00-21:00; Sa 07:30-21:00; Su 09:00-19:00 | |
Mo-Fr 07:00-21:00; Sa 08:00-21:00 | |
Mo-Fr 07:00-22:00; Sa 07:00-21:00; Su 10:00-21:00 | |
Mo-Fr 07:30-21:00; Sa 07:00-21:00; Su 12:00-19:00 | |
Mo-Fr 07:30-21:00; Sa 07:30-20:00; Su 10:00-18:00 | |
Mo-Fr 07:30-21:00; Sa 08:00-20:00; Su 08:00-18:00 | |
Mo-Fr 07:30-21:00; Sa 08:00-20:00; Su 08:00-19:00 |
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
#!/usr/bin/env python3 | |
import sys | |
import http.client | |
import re | |
from lxml import etree | |
from unidecode import unidecode | |
from datetime import datetime |
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
#!/usr/bin/env python3 | |
import sys | |
from lxml import etree | |
def show_help(): | |
print("{} INPUT > OUTPUT".format(sys.argv[0])) | |
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
#!/usr/bin/env python3 | |
import sys | |
from lxml import etree | |
def show_help(): | |
print("{} INPUT > OUTPUT".format(sys.argv[0])) | |
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
meta { | |
title: "Sidewalks"; | |
description: "Visualizes the sidewalk attribute of highways. sidewalk=* is rendered as a thick dashed line, separately mapped sidewalks tagged footway=sidewalk are rendered thicker."; | |
link: "https://wiki.openstreetmap.org/wiki/Key:sidewalk"; | |
author: "Cobra"; | |
version: "0.6_2019-04-09"; | |
min-josm-version: "4399"; | |
} |
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 | |
ME=$(basename $0) | |
function showHelp { | |
cat << EOF | |
Clean-up old git branches | |
Usage: $ME local show-last [AGE_IN_WEEKS] | |
$ME remote show-last REMOTE [AGE_IN_WEEKS] |
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
package org.example.test; | |
import org.apache.http.HttpEntity; | |
import org.apache.http.client.methods.CloseableHttpResponse; | |
import org.apache.http.client.methods.HttpGet; | |
import org.apache.http.config.Registry; | |
import org.apache.http.config.RegistryBuilder; | |
import org.apache.http.conn.HttpClientConnectionManager; | |
import org.apache.http.conn.socket.ConnectionSocketFactory; | |
import org.apache.http.conn.socket.PlainConnectionSocketFactory; |