スキップしてメイン コンテンツに移動

What is the AID worker of UNICEF?

 I apologize for the confusion in my previous response. There is no such thing as an "AID worker" in UNICEF. However, there are **aid workers** who work for UNICEF. These workers are responsible for providing humanitarian aid to people in need, especially children, during emergencies such as natural disasters, conflicts, and pandemics ¹. 


UNICEF staff work in some of the world's most challenging environments to reach the most disadvantaged children ¹. They respond to global humanitarian crises that include natural disasters, human-caused crises, health-related emergencies and pandemics, and the negative effects of climate change ¹. On average, UNICEF responds to more than 200 emergencies that affect an estimated 535 million children every year ¹. 


If you are interested in working in an emergency country, there are a range of employment opportunities available. You can find more information about working in humanitarian emergencies on the UNICEF Careers website ¹.


I hope this helps! Let me know if you have any other questions.


ソース: Bing との会話 2024/1/14

(1) Working in humanitarian emergencies | UNICEF Careers. https://www.unicef.org/careers/working-humanitarian-emergencies.

(2) Syria: Senior aid worker and UNICEF partner killed while on duty. https://www.unicef.org/mena/press-releases/syria-senior-aid-worker-and-unicef-partner-killed-while-duty.

(3) Six humanitarians killed in ‘obscene’ attacks in one week. https://news.un.org/en/story/2020/11/1077022.

(4) UNICEF job categories | UNICEF Careers. https://www.unicef.org/careers/unicef-job-categories.

コメント

このブログの人気の投稿

さくらインターネットのレンタルサーバにMysqlの大きいdumpファイルのインポート

 さくらインターネットのレンタルサーバはFreeBSDをつかっています。 LAMP の環境が揃っています。 基本的にFTPアカウントが発行されて、Webベースでファイルの転送もデータベースの作成および管理(phpMyAdmin)ができます。 しかし、phpMyAdminは、dumpファイルをインポートする場合、最大16MBのファイルしかアプロードできません。 明確的にSSHアカウントは提示されていないが、実際にSSHでの接続も可能だと確認しました。しかし、SSHで接続してもmysqlでリモートMysqlサーバへの接続はできなかったようです。 そこで、dumpファイルの中身はSQL文なので、 A5m2 というSQLクライアントからインポートすることを試しました。 もちろん、自宅のパソコンから直接Mysqlサーバを接続できるとは思いませんが、一応試してみました。案の定、当たり前に制限がかけられています。 で、よく考えるとレンタルサーバからアクセスできるから、そのIPは許可されているだろうと思います。 なので、SSHトンネルを Bitvise SSH Client で掘ろうと考えていました。 BitviseのSSH設定はそんなに難しくないので、割愛しますが、 C2Sのタブの設定は下記の通りです。 listen interface => 127.0.0.1 List Port => 3306 (ローカルにMysqlが稼働している場合、3326とかに設定してください) Destination Host => レンタルサーバが提供しているMysqlサーバ mysql~.~.ac.jp Dest. Port => 3306 A5m2のデータベース設定は、Mysql直接接続で、IPを127.0.0.1にすれば、接続できるはずです。 それから、Dumpファイルを読み込んで「先頭からすべて」実行をすれば、いまのところ500MB位のファイルでも実行できました。だが、1.2GBのファイルは読み込みの途中にエラーになったが、ファイルが大きい過ぎたか、それともUTF8コードの問題なのか調査中です。結果がわかった次第追記します。

Redmine 4.1.1-5 Textile の外部リンクを新しいタブで開く

\Bitnami\redmine-4.1.1-5\apps\redmine\htdocs\lib\redmine\wiki_formatting\textile にある、redcloth3.rb の850行目を下記のように   target='_blank' を追加して、Redmineを再起動してください。             "#{pre}<a#{atts}#{external} target='_blank' >#{text}</a>#{post}"

plantuml node procedure アーキテクチャ図の部品化

 最近よくアーキテクチャ図を描くようになりました。 一々Node名とリンクやIP、データベースの設定するのもいいのですが、 Node数が多すぎると大変な作業になります。そこで、plantumlのprocedureを作れました。 他の部品も同じ方法で作れますので、興味ある方はご参考ください。 SVG画像 @startuml !procedure $node($alias, $name="mynode",$ip="", $database="", $namelink="", $dbtype="", $dblink="", $fontsize=14, $color="#bafcc8") !include skinparam node { backgroundColor $color FontSize $size } !if ($namelink != "") !$name = "[[" + $namelink + " " + $name + "]]" !endif !if ($ip != "") !$name = $name + "\n(" + $ip + ")" !endif node "$name" <<$archimate/technology-node>> as $alias { !if ($database != "") !$dbalias = $alias + "DB" !if ($dblink != "") !$database = "[[" + $dblink + " " + $databas...