Posts

広島県道265号伴広島線

Image
一般県道 広島県道265号伴広島線 路線延長 km 起点 広島県広島市安佐南区伴東7丁目 終点 広島県広島市中区榎町 接続する 主な道路 (記法) 広島県道38号広島豊平線 広島県道71号広島湯来線 山陽自動車道五日市IC 国道183号( 国道261号重複) ■テンプレート(■ノート ■使い方) ■PJ道路 広島県道265号伴広島線 (ひろしまけんどう265ごう ともひろしません)は広島県広島市安佐南区から広島県広島市中区を結ぶ一般県道である。 目次 1 路線データ 2 通過する自治体 3 見どころ 4 接続道路 4.1 本線 4.2 旧道 5 別名 6 関連項目 路線データ 本線 起点:広島市安佐南区伴東7丁目・大原下橋南詰交差点(広島県道38号広島豊平線(本線・旧道)交点) 終点:広島市中区榎町・十日市交差点(国道183号(国道261号重用)交点) 総延長: 旧道 起点:広島市安佐南区伴東4丁目・新細坂交差点(広島県道38号広島豊平線交点) 終点:広島市安佐南区伴中央4丁目・寺組橋(南)交差点(広島県道265号伴広島線(本線)交点) 総延長: 通過する自治体 広島県 広島市(安佐南区、佐伯区、西区、中区) 見どころ 広島高速交通広島新交通1号線(アストラムライン) 広島広域公園 広島広域公園陸上競技場(広島ビッグアーチ) 己斐峠 己斐橋(太田川放水路) 天満橋(天満川) 接続道路 本線 広島県道38号広島豊平線(本線・旧道)(広島市安佐南区伴東7丁目・大原下橋南詰交差点〔起点〕) 広島県道71号広島湯来線(本線)(広島市安佐南区伴中央2丁目・伴交番入口交差点 - 広島市安佐南区伴中央4丁目・寺組橋(南)交差点間で重用) 広島県道71号広島湯来線(旧道)(広島県道265号伴広島線(旧道)重用)(広島市安佐南区伴中央4丁目・寺組橋(南)交差点) 広島県道71号広島湯来線(広島市安佐南区伴中央4丁目・寺組橋(南)交差点 - 広島市佐伯区五日市町石内・五月が丘(南)交差点間で重用)

Creating invoice iterating over a database with datatool

Image
0 I'm trying use datatool to iterate over a CSV file in order to create an invoice. This is what I have: documentclass[12pt]{letter} usepackage[utf8]{inputenc} usepackage[T1]{fontenc} usepackage{textcomp} usepackage[a4paper]{geometry} usepackage[british]{babel} usepackage{datatool} usepackage{invoice} DTLloaddb{jan}{jan.csv} begin{document} begin{letter} TEST opening{} begin{invoice}{euro}{21} ProjectTitle{Rekening January}% DTLforeach*{jan}% {% Date=date,% Price=price,% Quantity=quantity% }% {% Fee{Date}{Price}{Quantity}% }% end{invoice} end{letter} end{document} When I compile, I get two "undefined control sequence" about the lines }% end{invoice}

Use DHCP-provided DNS or not based on connected network

Image
1 My current networking setup (on Arch Linux) involves: stubby to resolve DNS requests with DNS-over-TLS. dnsmasq to cache DNS queries (and nothing else). openresolv to manage resolv.conf . NetworkManager to set-up and tear-down network connections. I have stubby listening on locahost on some random port, dnsmasq listening on localhost:53 and resolving DNS queries through stubby , and openresolv is set up to put localhost in resolv.conf and provide any other DNS entry (for example those obtained through DHCP by NetworkManager) to dnsmasq via separate configuration files: # /etc/resolvconf.conf name_servers=127.0.0.1 dnsmasq_conf=/etc/dnsmasq-conf.conf dnsmasq_resolv=/etc/dnsmasq-resolv.conf However, at the moment those extra entries are being ignored. What is the best way to use these en