As always, here are the menus in a single, readable and searchable markdown formatted file.
Script which generated this is at the bottom. Some manual adjustments were done to improve output quality.
Enjoy, Ivan
#!/usr/bin/env bash | |
# Find an unused file name to capture to | |
DIR=~/Pictures/Screenshots/ | |
N=1 | |
while [ -f "$DIR`printf %05d $N`.png" ]; do | |
N=$((N+1)) | |
done | |
FILENAME=$DIR`printf %05d $N`.png |
2018-03-09 - 2018-03-18
http://tjedanrestorana.com/
Web site scraped and parsed to generate a single markdown file containing all the menus.
Script used to generate the markdown is attached below the menus. Table of contents and minor adjustments done by hand.
Share and enjoy.
(ns aoc2017.foo) | |
(def node-map | |
"A tree structure defined as a map" | |
{:a [:b :c] | |
:b [:d :e :f] | |
:e [:g :h :i] | |
:i [:j :k]}) | |
(defn count-nodes |
Adaptirao sam i nadopunio malo preporuke koje sam slao već drugima. :)
Ima ih. Ako bih odabrao samo tri to bi možda bili Wat Arun, Wat Phra Kaew i Wat Saket. Ovisi koliko volite gledati Budu u sto pozicija. Za neke traže da imate pokrivene noge i ramena. Mi smo nosili sa sobom sarong za zamotati preko kratkih hlača gdje treba.
<?php | |
function slugify($string) | |
{ | |
$string = strtr($string, CharacterMap::get()); | |
$string = preg_replace('/[^\\p{L}\\d]+/u', '-', $string); | |
$string = trim($string, '-'); | |
$string = iconv('utf-8', 'ASCII//TRANSLIT', $string); | |
$string = strtolower($string); | |
$string = preg_replace('/[^-\w]+/', '', $string); |
From: [email protected]
Dear Mr. Habunek,
thank you for your request.
Passenger Receipts issued by Lufthansa German Airlines (DLH AG) count as tickets in accordance with German law (§ 34 UStDV) and therefore are valid invoices as defined by §14 German Sales Tax Law.
According to § 34 UStDV tickets must contain the following minimum information:
====== Build your own PHP on Windows ====== | |
===== Before you Begin ===== | |
Building PHP on Windows will require three things | |
- A properly set up build environment, including a compiler with the right SDK's and some binary tools used by the build system | |
- Prebuilt libraries and headers for third party libraries that PHP uses in the correct location | |
- The PHP source | |
===== Compiler ===== |
====== Build your own PHP on Windows ====== | |
===== Before you Begin ===== | |
Building PHP on Windows will require three things | |
- A properly set up build environment, including a compiler with the right SDK's and some binary tools used by the build system | |
- Prebuilt libraries and headers for third party libraries that PHP uses in the correct location | |
- The PHP source | |
===== The Build Environment ===== |