<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<rdf:RDF
 xmlns="http://purl.org/rss/1.0/"
 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
 xmlns:dc="http://purl.org/dc/elements/1.1/"
 xml:lang="ja"
>
<channel rdf:about="https://www.wasamon.net/miyo/index.cgi?action=LIST">
 <title>Miyo&apos;s Page</title>
 <link>https://www.wasamon.net/miyo/index.cgi</link>
 <description>みよ＠わさもん.ねっと</description>
 <dc:language>ja</dc:language>
 <dc:date>2026-03-02T16:00:39+09:00</dc:date>
 <items>
  <rdf:Seq>
   <rdf:li rdf:resource="https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D3%2D2" />
   <rdf:li rdf:resource="https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D3%2D1" />
   <rdf:li rdf:resource="https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D2%2D23" />
   <rdf:li rdf:resource="https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D2%2D22" />
   <rdf:li rdf:resource="https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D2%2D21" />
   <rdf:li rdf:resource="https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D2%2D19" />
   <rdf:li rdf:resource="https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D2%2D13" />
   <rdf:li rdf:resource="https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D2%2D16" />
   <rdf:li rdf:resource="https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D2%2D15" />
   <rdf:li rdf:resource="https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D2%2D14" />
   <rdf:li rdf:resource="https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D2%2D8" />
   <rdf:li rdf:resource="https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D2%2D7" />
   <rdf:li rdf:resource="https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D2%2D5" />
   <rdf:li rdf:resource="https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D2%2D6" />
   <rdf:li rdf:resource="https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D2%2D3" />

  </rdf:Seq>
 </items>
</channel>
   <item rdf:about="https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D3%2D2">
    <title>Diary/2026-3-2</title>
    <link>https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D3%2D2</link>
    <description>!クリーンルーム
東大のクリーンルームの見学をさせてもらった．
連邦基準のクラス1，100，1000．
こういうところで日々実験するの大変そうだけど楽しそうだなあ．

</description>

    <dc:date>2026-03-02T15:47:45+09:00</dc:date>

   </item>
   <item rdf:about="https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D3%2D1">
    <title>Diary/2026-3-1</title>
    <link>https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D3%2D1</link>
    <description>!気づいたら
3月．今年も1/6が過ぎました．

</description>

    <dc:date>2026-03-02T00:09:57+09:00</dc:date>

   </item>
   <item rdf:about="https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D2%2D23">
    <title>Diary/2026-2-23</title>
    <link>https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D2%2D23</link>
    <description>!akonadiでカレンダみてみる
KOrganizerのバックエンドであAkonadiにSQLiteでアクセスできるようなので，
Python使ってアクセスしてみた．
とりあえずベーシックにはこんな感じ．
SQL文でデータ減らせるのが望ましいけど，複雑な条件書くのも面倒だよね，という感じ．
ちなみに，PartTableはblob形式で文字列ではないので注意．

 import os
 import sqlite3
 from icalendar import Calendar
 from datetime import datetime, date
 import pytz
 
 def main():
     db = f&apos;{os.environ[&quot;HOME&quot;]}/.local/share/akonadi/akonadi.db&apos;
     conn = sqlite3.connect(db)
     cur = conn.cursor()
 
     cur.execute(f&apos;&apos;&apos;
     SELECT p.id,
            CAST(pt.data AS TEXT)
     FROM PimItemTable p
     JOIN PartTable pt ON pt.pimItemId = p.id
     WHERE p.mimeTypeId = 3
           AND instr(pt.data, &apos;BEGIN:VCALENDAR&apos;) &gt; 0
     &apos;&apos;&apos;)
 
     count = 0
     for item in cur:
         count += 1
         k,v = item
         print(v)
 
     print(f&apos;#. of items = {count}&apos;)
 
 if __name__ == &apos;__main__&apos;:
     main()

ちょっとビューワ作ってみようかと思ったけど，
繰り返しの予定(RRULE)で，日付が変更になったり取消しがあったりするものの扱い(RECURRENCE-ID，EXDATE)や
複数の日に渡る終日の予定など，結構，扱いが面倒なものがあって，一旦ペンディング．

ちなみに，データの更新は，
 busctl --user call org.freedesktop.Akonadi.Agent.akonadi_google_resource_0 / org.freedesktop.Akonadi.Resource synchronize
 busctl --user call org.freedesktop.Akonadi.Agent.akonadi_google_resource_2 / org.freedesktop.Akonadi.Resource synchronize
とした．
ここで，引数の，
 org.freedesktop.Akonadi.Agent.akonadi_google_resource_0
と，
 org.freedesktop.Akonadi.Resource synchronize
は，
 busctl --user list | grep Akonadi
で得られた結果
 org.freedesktop.Akonadi.Agent.akonadi_google_resource_0      876669 akonadi_google_ miyo :1.854        session-c3.scope  c3      -
をみて，さらに，
 busctl --user introspect org.freedesktop.Akonadi.Agent.akonadi_google_resource_0 /
とすると，
 org.freedesktop.Akonadi.Resource      interface -         -            -
 .name                                 method    -         s            -
 .requestItemDelivery                  method    axaay     -            -
 .setName                              method    s         -            -
 .synchronize                          method    -         -            no-reply
 .synchronizeCollection                method    x         -            no-reply
 .synchronizeCollection                method    xb        -            no-reply
 .synchronizeCollectionAttributes      method    x         -            no-reply
 .synchronizeCollectionTree            method    -         -            no-reply
 .synchronizeRelations                 method    -         -            no-reply
 .synchronizeTags                      method    -         -            no-reply
 .attributesSynchronized               signal    x         -            -
 .collectionTreeSynchronized           signal    -         -            -
 .nameChanged                          signal    s         -            -
 .synchronized                         signal    -         -            -
と，して探し出す．

</description>

    <dc:date>2026-02-24T08:32:45+09:00</dc:date>

   </item>
   <item rdf:about="https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D2%2D22">
    <title>Diary/2026-2-22</title>
    <link>https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D2%2D22</link>
    <description>!自転車出勤
天気が良いようなので久しぶりに．
今日は，少し遠回りになるけど分かりやすい道を選んでのんびりと．
おかげで，会社についてすぐに仕事に取りかかれる程の疲労感．

</description>

    <dc:date>2026-02-22T18:34:25+09:00</dc:date>

   </item>
   <item rdf:about="https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D2%2D21">
    <title>Diary/2026-2-21</title>
    <link>https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D2%2D21</link>
    <description>!KOrganizer
個人で取得しているGoogleアカウントとQ社のGoogle Workspaceのカレンダを
切り替えるのが面倒と思いながらも，
Q社のGoogle Workspaceで独自のOAuthトークン取るのが面倒(仕事用なのでなんか違う気もする)
という状況で，両方のカレンダをうまく閲覧する解決策を思いついてなかった．
正確に言うとmacOSやiPadのカレンダアプリは便利だなと思いながら，
普段の生活環境がLinuxなのでどうにかならないかなと思っていた．
というところで，KDEのakonadiだと独自にOAuthトークンとらなくても
認証通せるようなので，akonadiとkorganizer環境を作ってみることに．
ホストはXUbuntu 24.04．インストールは，
 sudo apt install korganizer akonadi-backend-sqlite
でOK．
korgnaizerを起動して，Settings -&gt; Configure KOrganaizer...で設定ダイアログひらいて，
GeneralのCalendarsでGoogleカレンダを登録する．
とりあえず，どちらのカレンダも表示することができた．
しばらく生活してみるか．
しかし，OkularといいKOrganaizerといい，随分KDEアプリが増えてきた．
そのうち，デスクトップ環境をKDEに移行するかなあ．


ちなみに，akonadiのDBは，SQLiteなので，sqlite3で叩ける．
 $ sqlite3 ~/.local/share/akonadi/akonadi.db
 sqlite&gt; .database
 main: /home/miyo/.local/share/akonadi/akonadi.db r/w
 sqlite&gt; .tables
 CollectionAttributeTable          PimItemTagRelation              
 CollectionMimeTypeRelation        RelationTable                   
 CollectionPimItemRelation         RelationTypeTable               
 CollectionTable                   ResourceTable                   
 FlagTable                         SchemaVersionTable              
 MimeTypeTable                     TagAttributeTable               
 PartTable                         TagRemoteIdResourceRelationTable
 PartTypeTable                     TagTable                        
 PimItemFlagRelation               TagTypeTable                    
 PimItemTable  
 sqlite&gt; SELECT COUNT(*) FROM PimItemTable;
とか．楽しいかも．

</description>

    <dc:date>2026-02-21T21:20:18+09:00</dc:date>

   </item>
   <item rdf:about="https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D2%2D19">
    <title>Diary/2026-2-19</title>
    <link>https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D2%2D19</link>
    <description>!T2UB Nano
[[Ryzen 7 5825U|Diary/2025-10-14]]でセットアップしたPCでは，
UGREEN WiFiアダプタ(AX900)を使っていたけど，
どうも動作が不安定なことがあるのでtp-linkの[T2UB Nano|https://www.tp-link.com/jp/home-networking/computer-accessory/archer-t2ub-nano/]を試すことに．
ドライバは，https://github.com/lwfinger/rtw88 から．
 git clone https://github.com/lwfinger/rtw88
 cd rtw88
 make
 sudo make install
 sudo make install_fw
 sudo make sign-install
とした．Bluetoothもうまく動いたので[BSBT5D200BK|https://www.buffalo.jp/product/detail/bsbt5d200bk.html]もお役ご免に．とてもすばらしい．
lsusbの結果はこんな感じだった．
 Bus 003 Device 004: ID 0bda:c820 Realtek Semiconductor Corp. 802.11ac NIC
 Device Descriptor:
   bLength                18
   bDescriptorType         1
   bcdUSB               2.00
   bDeviceClass          239 Miscellaneous Device
   bDeviceSubClass         2 [unknown]
   bDeviceProtocol         1 Interface Association
   bMaxPacketSize0        64
   idVendor           0x0bda Realtek Semiconductor Corp.
   idProduct          0xc820 802.11ac NIC
   bcdDevice            2.00
   iManufacturer           1 Realtek
   iProduct                2 802.11ac NIC
   iSerial                 3 123456
   bNumConfigurations      1
   Configuration Descriptor:
   ...


</description>

    <dc:date>2026-02-20T20:02:51+09:00</dc:date>

   </item>
   <item rdf:about="https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D2%2D13">
    <title>Diary/2026-2-13</title>
    <link>https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D2%2D13</link>
    <description>!X13のバッテリ
2年半前くらいに購入した[[ThinkPad X13 gen4|Diary/2023-6-2]]のバッテリの減りが早い．
特に電池の持ちを気にせずに使っているときの持ち時間が3時間弱といったところ．
 upower -d
でダンプしてみたら，
 Device: /org/freedesktop/UPower/devices/battery_BAT0
   native-path:          BAT0
   vendor:               SMP
   model:                5B11H56370
   serial:               918
   power supply:         yes
   updated:              2026年02月13日 13時02分04秒 (5 seconds ago)
   has history:          yes
   has statistics:       yes
   battery
     present:             yes
     rechargeable:        yes
     state:               discharging
     warning-level:       none
     energy:              19.8 Wh
     energy-empty:        0 Wh
     energy-full:         32.63 Wh
     energy-full-design:  41.05 Wh
     energy-rate:         8.034 W
     voltage:             11.729 V
     charge-cycles:       474
     time to empty:       2.5 hours
     percentage:          61%
     capacity:            79.4884%
     technology:          lithium-polymer
     icon-name:          &apos;battery-full-symbolic&apos;
だった．電池の容量が80%に減ってるのか．
X13 Gen6はLenovoからバッテリ買えるようになったみたいだけど，
Gen4のはLenovoからは買えないんだよな．
5B11H56370で検索すると，いくつか見つかるけど...
100%になっても1.25倍，3時間が4時間．嬉しいには嬉しいけどモバイルバッテリがいらなくなる程ではないのね．
ちなみに心配していた底板のゴムは全然問題なく立派に残っている(心配していたことを忘れていた)．


ふと変遷を辿ってみると，X280を2018年9月に，X390を2019年7月に，X13を2023年6月に買ってる．
なんで，X280→X390の期間がこんなに短かかったのは，
液晶のはじの黄ばみが気になったのと，設置して使いたい用途が生じたので，これ幸いと買ったんだという記憶がある．
X280の前は，MacBook Airだったり，Asus Chi T90だったり，だったのか．
MacBook AirがRetinaになったころに，バタフライキーボードが嫌だなあ，どうしようかなあ，
と，色々思案してた時期か．MacBook AirにLinuxいれたりもしてたなあ．
8年前．随分前なような，そうでもないような．

</description>

    <dc:date>2026-02-19T19:56:15+09:00</dc:date>

   </item>
   <item rdf:about="https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D2%2D16">
    <title>Diary/2026-2-16</title>
    <link>https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D2%2D16</link>
    <description>!systemd-resolved
になってから，DNS設定が必要なときにはアドホックに対応していた
(/etc/resolv.confを一時的に書き換えたりしてた)のだけど，
VPNなんかでいろんな環境を利用することも増えてきたので，そろそろちゃんとした手順を覚えておきたい．
覚えるべきは resolvectl コマンド．
このコマンドの存在は，man systemd-resolved でもわかる．
簡単には，
 resolvectl status
で，
 Global
          Protocols: -LLMNR -mDNS -DNSOverTLS DNSSEC=no/unsupported
   resolv.conf mode: stub
 
 Link 2 (wlp0s20f3)
     Current Scopes: DNS
          Protocols: +DefaultRoute -LLMNR -mDNS -DNSOverTLS DNSSEC=no/unsupported
 Current DNS Server: 192.168.100.1
        DNS Servers: 192.168.100.1
 
 Link 3 (docker0)
     Current Scopes: none
          Protocols: -DefaultRoute -LLMNR -mDNS -DNSOverTLS DNSSEC=no/unsupported
 
 Link 5 (vboxnet0)
     Current Scopes: none
          Protocols: -DefaultRoute -LLMNR -mDNS -DNSOverTLS DNSSEC=no/unsupported
とかでてくる．
書き換えければ，たとえば，
 resolvectl dns 2 8.8.8.8
と，dnsコマンド使って，リンク先にDNSサーバーを設定できる 
 resolvectl status
で見てみると，
 Global
          Protocols: -LLMNR -mDNS -DNSOverTLS DNSSEC=no/unsupported
   resolv.conf mode: stub
 
 Link 2 (wlp0s20f3)
     Current Scopes: DNS
          Protocols: +DefaultRoute -LLMNR -mDNS -DNSOverTLS DNSSEC=no/unsupported
 Current DNS Server: 8.8.8.8
        DNS Servers: 8.8.8.8
 
 Link 3 (docker0)
     Current Scopes: none
          Protocols: -DefaultRoute -LLMNR -mDNS -DNSOverTLS DNSSEC=no/unsupported
 
 Link 5 (vboxnet0)
     Current Scopes: none
          Protocols: -DefaultRoute -LLMNR -mDNS -DNSOverTLS DNSSEC=no/unsupported
と，書き換わっていることがわかる．
同様に，domainコマンドでドメイン名(resolv.confのsearch)の設定ができる．

</description>

    <dc:date>2026-02-17T13:56:13+09:00</dc:date>

   </item>
   <item rdf:about="https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D2%2D15">
    <title>Diary/2026-2-15</title>
    <link>https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D2%2D15</link>
    <description>!休日
近くの公園に梅を見に行って，ちょっとした買物に行って，久しぶりにジョギングして，と．


{{ref_image IMG_20260215_151558_270.jpg}}

</description>

    <dc:date>2026-02-16T15:31:52+09:00</dc:date>

   </item>
   <item rdf:about="https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D2%2D14">
    <title>Diary/2026-2-14</title>
    <link>https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D2%2D14</link>
    <description>!久しぶりの
仕事をするために環境について思い出すところから．
...まだまだコンテクストスイッチのコストを下げる努力が必要だなあ．

!macOS
久しぶりに生活環境としてmacOS環境をセットアップ．
モノはMac mini M4，OSは，macOS Tahoe Version 26.3．
ゆるくセットアップということでemacsは，
https://emacsformacosx.com から，28.2 をダウンロード．
28.2だとlookupが使えるので．
skkで，
 ccc-update-buffer-local-cursor-color: Symbol’s function definition is void:
 facemenu-color-equal
とか言われるようになった．どうやら，facemenuを自動でロードしなくなったようなので，
 (require &apos;facemenu)
で明示的にロード．今のところ，これで困らなくなった模様．
あまり設定にこだわらないけど，
Mail.appでメールをまとめる，とか，日本語入力のLive Conversion，とか，そういうのはオフに．
企業の便利アプリが使えるのはmacOSのいいところよね，と．
...慣れちゃったら，ノートPCもmacOSにしたくなっちゃうかなー，どうかなー．

</description>

    <dc:date>2026-02-14T21:48:49+09:00</dc:date>

   </item>
   <item rdf:about="https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D2%2D8">
    <title>Diary/2026-2-8</title>
    <link>https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D2%2D8</link>
    <description>!雪
大変なことも多いけど...積もるとテンションがあがってしまう．
朝から選挙に行ったあと，まだ誰からも足跡を付けられてなかった公園をてくてく．


{{ref_image IMG_20260208_073806_441.jpg}}

</description>

    <dc:date>2026-02-08T16:42:40+09:00</dc:date>

   </item>
   <item rdf:about="https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D2%2D7">
    <title>Diary/2026-2-7</title>
    <link>https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D2%2D7</link>
    <description>!誕生日
おかげさまで45歳になれました．
ありがたいことです．

!渋谷ではたらく社長の告白
[渋谷ではたらく社長の告白|https://www.amazon.co.jp/gp/product/B00CBU28FC/]がKindle Unlimitedででてきたので読んでみた．
私が大学に入学する少し前の話．
こんなだったのかー，という感じで面白かった．

</description>

    <dc:date>2026-02-08T16:42:39+09:00</dc:date>

   </item>
   <item rdf:about="https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D2%2D5">
    <title>Diary/2026-2-5</title>
    <link>https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D2%2D5</link>
    <description>!ドバイ(4) / ICCE2026
キーノートはIndustry Sessionから．
IntelのCPU/NPU/iGPUのヘテロプロセッサでのAIの話は自動運転関係の話．
Intelの方には「FPGAは？」っていう質問ができてよかった．
発表者としては忘れられてはいない模様．

あとは自分の発表をつつがなく．
今回も，生の制御装置の話を電子情報系の人に面白がってもらえてよかった．

夜は懇親会．バスにゆられて．
砂漠の中になるレストランに．


ドバイの街中では限られたところでしかお酒を買え．で，その一つがここ african+eastern．
{{ref_image IMG_20260205_154014_152.jpg}}

普通のスーパー．
{{ref_image IMG_20260205_155059_387.jpg}}

{{ref_image IMG_20260205_155105_288.jpg}}

{{ref_image IMG_20260205_155130_599.jpg}}

{{ref_image IMG_20260205_155147_550.jpg}}

宿泊してたホテル．一階のバーにはお世話になりました．
{{ref_image IMG_20260205_165743_813.jpg}}

懇親会会場．砂漠までバスで送ってもらって，ぞろぞろ，と．
{{ref_image IMG_20260205_195201_058.jpg}}

中はいわゆるビュッフェ．肉がたくさん!!
{{ref_image IMG_20260205_195508_217.jpg}}

{{ref_image IMG_20260205_210323_839.jpg}}

特に貸し切りってわけではなくて，わいわいと．
{{ref_image IMG_20260205_195530_360.jpg}}

らくだの置きもの．本物も奥の方にいた．
{{ref_image IMG_20260205_195556_892.jpg}}

ステージではショーが．
{{ref_image IMG_20260205_200557_764.jpg}}

{{ref_image IMG_20260205_201132_737.jpg}}

{{ref_image IMG_20260205_201358_517.jpg}}

{{ref_image IMG_20260205_202006_502.jpg}}

{{ref_image IMG_20260205_203051_982.jpg}}

{{ref_image IMG_20260205_203509_003.jpg}}

{{ref_image IMG_20260205_205746_892.jpg}}

{{ref_image IMG_20260205_210204_738.jpg}}

{{ref_image IMG_20260205_211843_531.jpg}}

鷹かな？作り物かと思ったら本物だった．
{{ref_image IMG_20260205_202136_526.jpg}}

バーカウンタ．ビールはジョッキ二杯分くらいがAED65だった．
{{ref_image IMG_20260205_202627_322.jpg}}


</description>

    <dc:date>2026-02-07T21:20:10+09:00</dc:date>

   </item>
   <item rdf:about="https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D2%2D6">
    <title>Diary/2026-2-6</title>
    <link>https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D2%2D6</link>
    <description>!帰国
朝5時に起床して(無事に起きれてよかった)，電車で空港へ．
飛行時間は9時間だけど，時差があるので，家に着いたのは日が変わる頃．
特に何もトラブルなく帰国できてよかった．
帰りの飛行機で Now You See Me : Now You Don&apos;t を見て，
話が分からなすぎる...と落ち込んだのだけど，シリーズ3作目だったのか．


空港のチェックイン機で顔認証用の登録したら落ちた．この筐体，誰がやっても落ちてた．
{{ref_image IMG_20260206_063357_279.jpg}}

最後にビール．ホテルのバーもハイネケンだったけどドイツビールが強い？
{{ref_image IMG_20260206_072131_557.jpg}}

帰りのルート．こちらも，ほぼ真っ直ぐ．
{{ref_image IMG_20260206_203904_890.jpg}}

</description>

    <dc:date>2026-02-07T21:15:29+09:00</dc:date>

   </item>
   <item rdf:about="https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D2%2D3">
    <title>Diary/2026-2-3</title>
    <link>https://www.wasamon.net/miyo/index.cgi?page=Diary%2F2026%2D2%2D3</link>
    <description>!ドバイ(2) / アブダビ
アブダビにあるTIIを訪問．
タクシーで来たらいいんじゃない？と連絡もらったけど，
公共交通期間で．帰りのアブダビバスセンターまではUber使ったけど．
高速バスがAED25，ローカルの交通機関が大体AED5程度で安く行けたけど...時間はかかった．
TIIでは，量子に関わっているいろいろな方を紹介してもらって話をして，と，
大変貴重な機会をいただけて感謝．

メモとして残しておくと，行きは，
ホテルそばのOud MelthaからIbn Battutaへ電車で移動して，
Ibn Battuaにあるバス乗り場から高速バス(E101)で，Abu Dhabi Bus Centerへ．
これはNolカードが必要だった．料金としてはAED25．
Abu Dhabi Bus Centerからは160番のバスとK3のバスを乗りついで，と．
帰りは，Google Mapによると，
15分くらい歩いた先にあるバス停からAbu Dhabi Bus Centerまで一本ということなので従ってみた．
...が，このバスがいっぱいで全然乗れない．
空港からAbu Dhabi Bus Centerへのバスということで，さもありなんという感じ．
さらに30分歩いた別の系統のバスなら乗れるかな，と，歩いてみたけど，そちらもいっぱい．
しかたないのでUberで．AED80くらい．


バスの車窓から．割と砂漠．
{{ref_image IMG_20260203_095630_378.jpg}}

{{ref_image IMG_20260203_103518_066.jpg}}

アラビアンナイトにでてきそうな
{{ref_image IMG_20260203_120248_645.jpg}}

{{ref_image IMG_20260203_120300_279.jpg}}

アブダビに近づくと，また大きな建物が．
{{ref_image IMG_20260203_105221_551.jpg}}

高速バスを降りたら最後はローカルバスで．小さくて可愛い．
{{ref_image IMG_20260203_123347_137.jpg}}

Central Park
{{ref_image IMG_20260203_133502_810.jpg}}

{{ref_image IMG_20260203_133418_464.jpg}}

{{ref_image IMG_20260203_133807_465.jpg}}

TIIの入口．SIEMENSのロゴいりのビル．
{{ref_image IMG_20260203_134029_688.jpg}}

TIIのマップ
{{ref_image IMG_20260203_134126_979.jpg}}

TIIには(なぜか)エニグマが展示してあった．
{{ref_image IMG_20260203_134442_485.jpg}}

{{ref_image IMG_20260203_134535_993.jpg}}

Google曰く，ここからA2に乗ればバスセンターまで直通とのことだけど，混みすぎてて乗れず．
{{ref_image IMG_20260203_170847_741.jpg}}

別のバス停まで30分ほど歩いて，170番に乗ることを考えたけど混んでるバスを見送ってるうちに日がくれた．
{{ref_image IMG_20260203_175917_616.jpg}}


</description>

    <dc:date>2026-02-05T11:50:32+09:00</dc:date>

   </item>

</rdf:RDF>
