<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>It works for me</title>
	<atom:link href="https://www.blog.danishi.net/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.blog.danishi.net</link>
	<description></description>
	<lastBuildDate>Thu, 23 Apr 2026 11:52:47 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://www.blog.danishi.net/wp-content/uploads/2019/04/cropped-キャプチャ-1-32x32.png</url>
	<title>It works for me</title>
	<link>https://www.blog.danishi.net</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Claude Code Routineを使って自動生成日記システムを作った</title>
		<link>https://www.blog.danishi.net/2026/04/23/post-7409/</link>
		
		<dc:creator><![CDATA[danishi]]></dc:creator>
		<pubDate>Thu, 23 Apr 2026 11:50:53 +0000</pubDate>
				<category><![CDATA[やってみた]]></category>
		<category><![CDATA[Claude Code]]></category>
		<guid isPermaLink="false">https://www.blog.danishi.net/?p=7409</guid>

					<description><![CDATA[最近気に入って動かしている「lifelog」というしくみの話を残しておきます。 なぜ作ったか 毎日「昨日なに考えてたっけ」「先週の自分どこ行ってたっけ」がじわじわ抜け落ちていくのがもったいなくて、前々からライフログ的なも [&#8230;]]]></description>
										<content:encoded><![CDATA[
<figure class="wp-block-image size-large"><a href="https://www.blog.danishi.net/wp-content/uploads/2026/04/image.jpg"><img fetchpriority="high" decoding="async" width="1024" height="683" src="https://www.blog.danishi.net/wp-content/uploads/2026/04/image-1024x683.jpg" alt="" class="wp-image-7410" srcset="https://www.blog.danishi.net/wp-content/uploads/2026/04/image-1024x683.jpg 1024w, https://www.blog.danishi.net/wp-content/uploads/2026/04/image-300x200.jpg 300w, https://www.blog.danishi.net/wp-content/uploads/2026/04/image-768x512.jpg 768w, https://www.blog.danishi.net/wp-content/uploads/2026/04/image.jpg 1536w" sizes="(max-width: 1024px) 100vw, 1024px" /></a></figure>



<p>最近気に入って動かしている「lifelog」というしくみの話を残しておきます。<br></p>



<h2 class="wp-block-heading">なぜ作ったか</h2>



<p>毎日「昨日なに考えてたっけ」「先週の自分どこ行ってたっけ」がじわじわ抜け落ちていくのがもったいなくて、前々からライフログ的なものを残したいと思ってたんですね。<br>ただ、日記を手で書き続けるのは三日坊主確定なのでどうしたものかと。</p>



<p>最近 Claude Code にルーチン（スケジュール実行）機能が入ったので、これを土台にして「自動で昨日のログを拾って、自分の口調で振り返りまで書かせてしまえばいいのでは」と思いついたのが発端です。</p>



<h2 class="wp-block-heading">仕組み</h2>



<p>毎朝 6:00 (JST) に Claude Code のルーチンが起動して、以下の流れで前日分の日記を1本書き出します。</p>



<ol class="wp-block-list">
<li>前日の活動ログを MCP 経由で収集する</li>



<li>収集結果から「事実記録」パートを組み立てる</li>



<li>自分の口調・思考パターンを写したスキル（自分の分身スキル）で「振り返り」パートを書く</li>



<li><code>diary/YYYY/MM/YYYY-MM-DD.md</code> に保存して git push</li>
</ol>



<p>生成された日記はプライベートリポジトリにそのまま溜まっていくので、後から検索も差分追跡もできます。</p>



<h2 class="wp-block-heading">データソース</h2>



<p>使っているのは今のところ2つだけ。</p>



<h3 class="wp-block-heading">Limitless AI</h3>



<p>ペンダント型デバイスで1日のボイスログを拾ってくれるやつです。Limitless には MCP サーバーが公式提供されているので、Claude Code からそのまま叩けます。<br>「どこで何をしゃべっていたか」のサマリーが事実ベースで取れるのが強い。</p>



<h3 class="wp-block-heading">Google カレンダー</h3>



<p>その日の予定を事実記録に流し込みます。個人カレンダーに加えて家族カレンダー・妻のカレンダーも読みに行っているので、「この日は息子と公園に行ってた」「この日は妻の実家」みたいな文脈が自然と日記に残ります。<br>子どもの成長記録も兼ねるのでここは結構重要。</p>



<h2 class="wp-block-heading">ディレクトリ構成</h2>



<p>こんな感じでシンプルです。</p>



<pre class="EnlighterJSRAW" data-enlighter-language="generic" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">lifelog/
├── .claude/
│   └── skills/
│       └── me/
│           └── SKILL.md       # 自分の口調・思考パターンを再現するスキル
├── diary/
│   └── 2026/
│       └── 04/
│           └── 2026-04-16.md
├── CLAUDE.md
└── README.md</pre>



<h2 class="wp-block-heading">日記のフォーマット</h2>



<p>1ファイルの中身は、事実記録パートと振り返りパートの2層構成にしています。</p>



<pre class="EnlighterJSRAW" data-enlighter-language="generic" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group=""># 2026-04-16（木）

## 事実記録
### 4/16（木）のスケジュール
（前日の予定を時系列で）

### ボイスログサマリー
（Limitlessから要点抽出）

### 4/17（金）の予定
（当日の予定を時系列で）

---

## 振り返り（by me skill）
### 良かったこと
### 改善点
### 気づき
### 今日へのひとこと</pre>



<p>事実記録は淡々と。振り返りは me スキル（=自分のプロフィールや性格、文体をトレースしたスキル）経由で生成しているので、読み返すと「自分が書いたっぽい文章」になります。未来の自分が読んだときに他人事に感じない、というのはライフログを続ける上で結構大事な気がしていて。</p>



<h2 class="wp-block-heading">ルーチンの設定</h2>



<p><code>CLAUDE.md</code> にデータソース・保存先・テンプレート・コミットフローを全部書いておけば、あとは起動時のプロンプトはシンプルで済みます。「CLAUDE.md 読んで昨日の日記を生成してコミットプッシュして」くらい。</p>



<p>起動時の現在日時は <code>TZ='Asia/Tokyo' date '+%Y-%m-%d %H:%M:%S %Z'</code> で取る、というのだけルールとして明記しています。これをサボるとたまにモデル側の文脈日付を拾って日付ズレするので。</p>



<h2 class="wp-block-heading">Skill にフィードバックが効くのが地味に便利</h2>



<p>日記を書かせているうちに「この語尾ちがう」「この言い回しは自分は使わない」という揺らぎが出てくるので、それを me スキル（SKILL.md）の方に逐次反映しています。<br>日記を書かせれば書かせるほど、振り返りが自分の文体に寄っていくというフィードバックループになっていて、これが思いのほか楽しい。<br>ついでに</p>



<h2 class="wp-block-heading">運用してみて</h2>



<p>1週間ほど回してみて気づいたこと。</p>



<ul class="wp-block-list">
<li>ボイスログ × カレンダーだけでも「その日なにしていたか」はかなり復元できる</li>



<li>振り返りパートは、無理に毎日分量を出そうとしないほうが続く（自動生成でも無理やり感は伝わる）</li>



<li>コミット履歴として積み上がっていくのが思ったより満足感ある。過去のdiffを辿ると「あーこの時期こんなこと考えてたな」が見える</li>
</ul>



<h2 class="wp-block-heading">これから</h2>



<ul class="wp-block-list">
<li>週次・月次サマリーを別のルーチンで生成</li>



<li>もっといろんなデータを食わせてより自分のことを知っているリポジトリに育てていく</li>



<li>職務経歴書も作成して継続的に育てていく</li>
</ul>



<p>あたりを足していきたい。</p>



<p>で、まあこのブログもこの仕組みで作ったSkillで書かせています。</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>


<p><a href="https://amzn.to/4tyj5Li">実践Claude Code入門―現場で活用するためのAIコーディングの思考法</a></p>


<p></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>ブログを書く気になれないというブログ</title>
		<link>https://www.blog.danishi.net/2026/03/28/post-7399/</link>
		
		<dc:creator><![CDATA[danishi]]></dc:creator>
		<pubDate>Sat, 28 Mar 2026 14:19:36 +0000</pubDate>
				<category><![CDATA[未分類]]></category>
		<category><![CDATA[ブログ]]></category>
		<category><![CDATA[雑記]]></category>
		<guid isPermaLink="false">https://www.danishi.net/?p=7399</guid>

					<description><![CDATA[今までなんやかんや毎月なにか書くことを見つけて書いてきたけど、生成AIの進歩の影響かブログの形でアウトプットすることにモチベがわかなくなってきた。 「動くもの」と「伝えるもの」 振り返ると、最近のアウトプットはだいたい「 [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>今までなんやかんや毎月なにか書くことを見つけて書いてきたけど、生成AIの進歩の影響かブログの形でアウトプットすることにモチベがわかなくなってきた。</p>



<figure class="wp-block-image size-large"><a href="https://www.danishi.net/wp-content/uploads/2026/03/blog-eyecatch.jpg"><img decoding="async" width="1024" height="572" src="https://www.danishi.net/wp-content/uploads/2026/03/blog-eyecatch-1024x572.jpg" alt="" class="wp-image-7402" srcset="https://www.blog.danishi.net/wp-content/uploads/2026/03/blog-eyecatch-1024x572.jpg 1024w, https://www.blog.danishi.net/wp-content/uploads/2026/03/blog-eyecatch-300x167.jpg 300w, https://www.blog.danishi.net/wp-content/uploads/2026/03/blog-eyecatch-768x429.jpg 768w, https://www.blog.danishi.net/wp-content/uploads/2026/03/blog-eyecatch-1536x857.jpg 1536w, https://www.blog.danishi.net/wp-content/uploads/2026/03/blog-eyecatch-2048x1143.jpg 2048w, https://www.blog.danishi.net/wp-content/uploads/2026/03/blog-eyecatch-320x180.jpg 320w, https://www.blog.danishi.net/wp-content/uploads/2026/03/blog-eyecatch-530x296.jpg 530w, https://www.blog.danishi.net/wp-content/uploads/2026/03/blog-eyecatch-565x315.jpg 565w, https://www.blog.danishi.net/wp-content/uploads/2026/03/blog-eyecatch-710x396.jpg 710w, https://www.blog.danishi.net/wp-content/uploads/2026/03/blog-eyecatch-725x405.jpg 725w" sizes="(max-width: 1024px) 100vw, 1024px" /></a></figure>



<h2 class="wp-block-heading">「動くもの」と「伝えるもの」</h2>



<p>振り返ると、最近のアウトプットはだいたい「動くもの」になった。OSSのパッケージ、Claude Codeのスキルファイル、業務の自動化スクリプト。作って、動いて、使える。それで価値が完結する。</p>



<p>一方でブログは「伝えるもの」だ。書いて、公開して、誰かに読まれて、何かが伝わって、そこでやっと成立する。この「伝わるまでの距離」が、前より遠く感じるようになった。</p>



<p>なぜか。たぶんAIが間に立つようになったからだと思う。</p>



<h2 class="wp-block-heading">AIに聞けばわかることを、なぜ俺が書くのか</h2>



<p>正直に言うと、自分がこれまで書いてきたブログの大半は「やってみた」系だ。サービスを触って、手順をまとめて、ハマりどころを書く。そういう記事は確実に価値があった。少なくとも、数年前までは。</p>



<p>今はどうか。Claude、ChatGPT、Gemini——どれに聞いても、たいていの手順は出てくる。しかも読み手の状況に合わせて、カスタマイズされた回答が返ってくる。ブログ記事は「ある時点での一人の経験」だけど、AIは「今のあなたの状況」に答える。</p>



<p>自分が2時間かけて書いた記事より、AIに30秒で聞いた回答のほうが読み手にとって有用かもしれない。そう思った瞬間、キーボードを叩く手が止まる。</p>



<h2 class="wp-block-heading">じゃあブログは死んだのか</h2>



<p>そうとも言い切れない。</p>



<p>AIが答えられないことも確かにある。「なぜその技術を選んだのか」という判断の文脈。「やってみたらここが想定と違った」という現場の手触り。組織で導入する時の政治的な話。そういう「一次情報」は、当事者しか書けない。</p>



<p>でも、それを書くのはまた別の重さがある。手順書を書くのと、自分の判断や失敗を言語化するのでは、消費するエネルギーが全然違う。手順書はAIに負けたけど、エッセイ的な記事を書く体力は前より要る。</p>



<h2 class="wp-block-heading">結論は、ない</h2>



<p>正直、この問いに対する答えはまだ出ていない。</p>



<p>「AIの時代だからこそ人間の言葉で書くことに価値がある」そう言い切れるほどきれいな話でもない気がする。かといって「もうブログの時代は終わった」と断言するほどの確信もない。</p>



<p>分かっているのは、今この文章を書いている自分がいるということだけだ。ブログを書く気になれないと言いながら、こうしてブログを書いている。</p>



<p>ちなみにこの記事はClaudeが書いてる。「ブログを書くモチベがわかないと」と悩む文章をベースにに書かせている。この矛盾。でも、書き出しの気持ちは本物だし、ここまで読んで「わかる」と思ってくれた人がいるなら、誰が書いたかはたぶんそこまで重要じゃない。</p>



<p>いや、重要なのかもしれない。それすらもう分からない。</p>



<p>たぶんそれが、今の自分にとっての答えに一番近い。</p>



<p>しらんけど。</p>



<p></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Databricks認定試験の受験方法</title>
		<link>https://www.blog.danishi.net/2026/02/22/post-7384/</link>
		
		<dc:creator><![CDATA[danishi]]></dc:creator>
		<pubDate>Sat, 21 Feb 2026 15:01:34 +0000</pubDate>
				<category><![CDATA[受けてきた]]></category>
		<category><![CDATA[Databricks]]></category>
		<category><![CDATA[資格]]></category>
		<guid isPermaLink="false">https://www.blog.danishi.net/?p=7384</guid>

					<description><![CDATA[業務で使うことになりDatabricksの認定試験をいくつか受けてきたので受験方法と受けた試験の感想を。 Databricks認定試験について まずはどのような試験があるか。 https://www.databricks [&#8230;]]]></description>
										<content:encoded><![CDATA[
<figure class="wp-block-image size-large"><a href="https://www.blog.danishi.net/wp-content/uploads/2026/02/image.jpg"><img decoding="async" width="1024" height="572" src="https://www.blog.danishi.net/wp-content/uploads/2026/02/image-1024x572.jpg" alt="" class="wp-image-7391" srcset="https://www.blog.danishi.net/wp-content/uploads/2026/02/image-1024x572.jpg 1024w, https://www.blog.danishi.net/wp-content/uploads/2026/02/image-300x167.jpg 300w, https://www.blog.danishi.net/wp-content/uploads/2026/02/image-768x429.jpg 768w, https://www.blog.danishi.net/wp-content/uploads/2026/02/image.jpg 1376w" sizes="(max-width: 1024px) 100vw, 1024px" /></a></figure>



<p>業務で使うことになりDatabricksの認定試験をいくつか受けてきたので受験方法と受けた試験の感想を。</p>



<h2 class="wp-block-heading">Databricks認定試験について</h2>



<p>まずはどのような試験があるか。</p>



<p><a href="https://www.databricks.com/learn/training/certification#certifications">https://www.databricks.com/learn/training/certification#certifications</a></p>



<ul class="wp-block-list">
<li>データアナリスト
<ul class="wp-block-list">
<li><a href="https://www.databricks.com/learn/certification/data-analyst-associate" target="_blank" rel="noreferrer noopener">Databricks Certified Data Analyst Associate</a></li>
</ul>
</li>



<li>データエンジニア
<ul class="wp-block-list">
<li><a href="https://www.databricks.com/jp/learn/certification/data-engineer-associate" target="_blank" rel="noreferrer noopener">Databricks Certified Data Engineer Associate（日本語あり）</a></li>



<li><a href="https://www.databricks.com/jp/learn/certification/data-engineer-professional" target="_blank" rel="noreferrer noopener">Databricks Certified Data Engineer Professional（日本語あり）</a></li>
</ul>
</li>



<li>MLエンジニア
<ul class="wp-block-list">
<li><a href="https://www.databricks.com/jp/learn/certification/machine-learning-associate" target="_blank" rel="noreferrer noopener">Databricks Certified Machine Learning Associate（日本語あり）</a></li>



<li><a href="https://www.databricks.com/learn/certification/machine-learning-professional" target="_blank" rel="noreferrer noopener">Databricks Certified Machine Learning Professional</a></li>
</ul>
</li>



<li>生成AIエンジニア
<ul class="wp-block-list">
<li><a href="https://www.databricks.com/jp/learn/certification/genai-engineer-associate" target="_blank" rel="noreferrer noopener">Databricks Certified Generative AI Engineer Associate（日本語あり）</a></li>
</ul>
</li>



<li>その他
<ul class="wp-block-list">
<li><a href="https://www.databricks.com/learn/certification/apache-spark-developer-associate" target="_blank" rel="noreferrer noopener">Databricks Certified Associate Developer for Apache Spark</a></li>



<li>Databricks Certified Hadoop Migration Architect（2024年8月1日に終了）</li>
</ul>
</li>
</ul>



<h2 class="wp-block-heading">受験方法</h2>



<h3 class="wp-block-heading">DatabricksのWebassessorに登録する</h3>



<p><a href="https://www.webassessor.com/databricks">https://www.webassessor.com/databricks</a></p>



<p>Google Cloudの認定試験を受けたことのある人はおなじみです。操作性も全く変わらず。<br>対象試験をオンサイトかオンラインで予約して、受験費用を払えば受験まで待つだけです。</p>



<h3 class="wp-block-heading">受験</h3>



<p>今回はオンライン受験のみをうけました、オンライン受験の方法は下記記事と大体同じです。<br><div class="linkcard"><div class="lkc-internal-wrap"><a class="lkc-link no_icon" href="https://www.blog.danishi.net/2022/08/06/post-6149" data-lkc-id="11197"><div class="lkc-card"><div class="lkc-info"><div class="lkc-favicon"><img loading="lazy" decoding="async" src="https://www.google.com/s2/favicons?domain=www.blog.danishi.net" alt="" width="16" height="16" /></div><div class="lkc-domain">It works for me</div><div class="lkc-share"> <div class="lkc-sns-po">1 Pocket</div></div></div><div class="lkc-content"><figure class="lkc-thumbnail"><img decoding="async" class="lkc-thumbnail-img" src="//www.blog.danishi.net/wp-content/uploads/2020/08/Associate-Cloud-Engineer-150x150.png" width="100px" height="108px" alt="" /></figure><div class="lkc-title">Google Cloudの遠隔監視オンライン試験を受けてきた（2022年8月）</div><div class="lkc-url" title="https://www.blog.danishi.net/2022/08/06/post-6149">https://www.blog.danishi.net/2022/08/06/post-6149</div><div class="lkc-excerpt">丁度2年前受けたこの試験が再認定の時期になり受験してきました。これまでトラブルの声をちらほら聞いていたのでなんとなく避けていたのですが、今回はコロナが広がってるのもありオンラインでの受験に初挑戦してみました。結論。色々不安やよくわからないところはあったのですが試験事体は拍子抜けするほどあっさり終わりました。他の受験ブログなども参照したのですが、受験時期により若干手順が違うようで戸惑ったのでここに備忘したいと思います。試験前Webassessorから申し込みます。受験センターと手順はそう変わりませんが遠隔...</div></div><div class="clear"></div></div></a></div></div></p>



<p>が、Google Cloudのときと違って試験管とのオンラインチャットや身分証や部屋を見せたりする工程がなく、システムチェックだけですぐ始まりました。楽だー。</p>



<h3 class="wp-block-heading">受験結果</h3>



<p>こちらも嬉しいポイントで受験結果がその場ででます。<br>スコアレポートもすぐメールで届きます。</p>



<h3 class="wp-block-heading">認定証</h3>



<p>認定証は半日くらい待つとメールが届き<a href="https://credentials.databricks.com/">Accredible</a>に反映になります。<br>以前Google Cloudもこれだったのでアカウントがあれば流用できます。<br>ログインしていればPDFの認定証やバッチがダウンロードできます。</p>



<h2 class="wp-block-heading">受験の感想</h2>



<p>ここからは受けた３つの試験の感想です。受けた順に書いてます。</p>



<h3 class="wp-block-heading">Databricks Certified Generative AI Engineer Associate</h3>



<p><a href="https://www.databricks.com/jp/learn/certification/genai-engineer-associate">https://www.databricks.com/jp/learn/certification/genai-engineer-associate</a></p>



<pre class="wp-block-code"><code>Topic Level Scoring:
Design Applications: 100%
Data Preparation: 85%
Application Development: 71%
Assembling and Deploying Apps: 70%
Governance: 100%
Evaluation and Monitoring: 60%

Result: PASS</code></pre>



<p><a href="https://notebooklm.google.com/notebook/a3303c1e-6788-4983-b985-ad085ec9c9f6?pli=1">NotebookLM</a>を作って試験範囲の理解をしました。<br>Databricksの基礎くらいは覚えていかなきゃと思ったのでDatabricks Japan公式の<a href="https://amzn.to/4cCREKz" data-type="link" data-id="https://amzn.to/4cCREKz">こちら</a>の書籍を一読。<br><br>各クラウドベンダーの生成AI系の資格を持っていればおおよそ突破できると思いました。<br>Databricks固有の知識はあまり必要なく、プロンプトエンジニアリングの基礎がわかっており、簡単なRAGアプリケーションの構築やチューニングをやってればほぼ回答できる問題でした。</p>



<h3 class="wp-block-heading">Databricks Certified Data Engineer Associate</h3>



<p><a href="https://www.databricks.com/jp/learn/certification/data-engineer-associate">https://www.databricks.com/jp/learn/certification/data-engineer-associate</a></p>



<pre class="wp-block-code"><code>Topic Level Scoring:
Databricks Intelligence Platform: 50%
Development and Ingestion: 66%
Data Processing &amp; Transformations: 92%
Productionizing Data Pipelines: 87%
Data Governance &amp; Quality: 90%

Result: PASS</code></pre>



<p>こちらも<a href="https://notebooklm.google.com/notebook/4e5411ea-9089-481a-8dbf-497a6a705b8d?authuser=2">NotebookLM</a>を作って試験範囲の理解をしました。<br><br>これはちゃんとDatabricksの勉強をしないと取れる気がしなかったので。<br><a href="https://www.udemy.com/course/databricks-certified-data-engineer-associate">https://www.udemy.com/course/databricks-certified-data-engineer-associate</a></p>



<p>こちらのUdemyを使って勉強。ちゃんと講義を聞いてFree Editionでハンズオンしながら勉強することで知識が頭に入り突破できました。</p>



<p>Databricksのざっくりした知識と消去法で解けるのが多い印象でしたが、Spark関係はコードの問題がでるのでハンズオンもしっかりやっといたほうが盤石です。</p>



<h3 class="wp-block-heading">Databricks Certified Data Engineer Professional</h3>



<p><a href="https://www.databricks.com/jp/learn/certification/data-engineer-professional">https://www.databricks.com/jp/learn/certification/data-engineer-professional</a></p>



<pre class="wp-block-code"><code>Topic Level Scoring:
Developing Code for Data Processing using Python and SQL: 53%
Data Ingestion &amp; Acquisition: 100%
Data Transformation, Cleansing and Quality: 50%
Data Sharing and Federation: 100%
Monitoring and Alerting: 40%
Cost &amp; Performance Optimisation : 37%
Ensuring Data Security and Compliance: 83%
Data Governance: 75%
Debugging and Deploying: 66%
Data Modelling : 75%

Result: PASS</code></pre>



<p><a href="https://notebooklm.google.com/notebook/2b7f61a5-10e7-4e4b-ac88-e2e2c649c695?authuser=2">NotebookLM</a>作って試験範囲の理解。<br>アソシエイトと同じ人のUdemyの講義と問題集で学習。<br><a href="https://www.udemy.com/course/databricks-certified-data-engineer-professional/" target="_blank" rel="noreferrer noopener">https://www.udemy.com/course/databricks-certified-data-engineer-professional/</a><br><a href="https://www.udemy.com/course/practice-exams-databricks-data-engineer-professional-k/" target="_blank" rel="noreferrer noopener">https://www.udemy.com/course/practice-exams-databricks-data-engineer-professional-k/</a></p>



<p>アソシエイトより問題数も増え45問から59問に（きりわるい）、難易度と範囲が広がった感じはしましたが、個人的には暗記の辛いコードに関しての質問がアソシエイトより少なかった気がするので、知ってれば答えられる系の問題を取りこぼさなければなんとかなると思いました。</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>2025年振り返りと2026年の目標</title>
		<link>https://www.blog.danishi.net/2026/01/01/post-7360/</link>
		
		<dc:creator><![CDATA[danishi]]></dc:creator>
		<pubDate>Thu, 01 Jan 2026 03:00:00 +0000</pubDate>
				<category><![CDATA[書いてみた]]></category>
		<category><![CDATA[ブログ]]></category>
		<category><![CDATA[雑記]]></category>
		<guid isPermaLink="false">https://www.blog.danishi.net/?p=7360</guid>

					<description><![CDATA[あけましておめでとうございます。去年も色々ありました。毎年恒例振り返りと目標セットをしていきます。 まず去年の目標を鑑みたKPT。 次に来年の目標。 今年は燃え尽き症候群になりそうになりながらも、自分の信用貯金を一気に崩 [&#8230;]]]></description>
										<content:encoded><![CDATA[
<figure class="wp-block-image size-large"><a href="https://www.blog.danishi.net/wp-content/uploads/2025/12/Gemini_Generated_Image_cw4v8rcw4v8rcw4v.jpg"><img loading="lazy" decoding="async" width="1024" height="506" src="https://www.blog.danishi.net/wp-content/uploads/2025/12/Gemini_Generated_Image_cw4v8rcw4v8rcw4v-1024x506.jpg" alt="" class="wp-image-7367" srcset="https://www.blog.danishi.net/wp-content/uploads/2025/12/Gemini_Generated_Image_cw4v8rcw4v8rcw4v-1024x506.jpg 1024w, https://www.blog.danishi.net/wp-content/uploads/2025/12/Gemini_Generated_Image_cw4v8rcw4v8rcw4v-300x148.jpg 300w, https://www.blog.danishi.net/wp-content/uploads/2025/12/Gemini_Generated_Image_cw4v8rcw4v8rcw4v-768x380.jpg 768w, https://www.blog.danishi.net/wp-content/uploads/2025/12/Gemini_Generated_Image_cw4v8rcw4v8rcw4v-1536x760.jpg 1536w, https://www.blog.danishi.net/wp-content/uploads/2025/12/Gemini_Generated_Image_cw4v8rcw4v8rcw4v-2048x1013.jpg 2048w, https://www.blog.danishi.net/wp-content/uploads/2025/12/Gemini_Generated_Image_cw4v8rcw4v8rcw4v-530x262.jpg 530w, https://www.blog.danishi.net/wp-content/uploads/2025/12/Gemini_Generated_Image_cw4v8rcw4v8rcw4v-565x279.jpg 565w, https://www.blog.danishi.net/wp-content/uploads/2025/12/Gemini_Generated_Image_cw4v8rcw4v8rcw4v-710x351.jpg 710w, https://www.blog.danishi.net/wp-content/uploads/2025/12/Gemini_Generated_Image_cw4v8rcw4v8rcw4v-725x359.jpg 725w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></a></figure>



<p>あけましておめでとうございます。<br>去年も色々ありました。<br>毎年恒例振り返りと目標セットをしていきます。</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p>まず<a href="https://www.blog.danishi.net/2025/01/01/post-7107/">去年の目標</a>を鑑みたKPT。</p>



<ul class="wp-block-list">
<li>Keep
<ul class="wp-block-list">
<li>サウナ付きのジムに切替えたことでジムに行くのが楽しみになって行く頻度があがった。プールもあるジムなので強度の高い有酸素運動ができて去年よりは健康診断がマシになった。</li>



<li>生成AIのキャッチアップとアンテナは高いほうだが、コーディング方面では若干追いつけなくなってきた。</li>



<li>引き続きアワードや登壇機会は増え続けて箔が付いた。</li>
</ul>
</li>



<li>Probrem
<ul class="wp-block-list">
<li>禁煙全然駄目だった。そろそろ辞めたいのでまたちょこちょこ我慢し始めてる。</li>



<li>減酒全然無理だった。今年は飲み会減るはずなのでマシになるはず。</li>



<li>英語の勉強の強度があげられなかった、全く上達の兆しがみえない。</li>



<li>生成AIの影響もあり、アウトプットのやる気があんまりでなくなってきた。</li>



<li>自分でコントロールしきれないものをコントロールしなくてはいけないというジレンマでかなり精神が落ちた。</li>
</ul>
</li>



<li>Try
<ul class="wp-block-list">
<li>キャリアを考える機会があり、行動にも移した。全く思ってもいなかった方向に転がったがいい選択だったと信じて、前に進み続ける。</li>



<li>家庭は円満ではあるが、パートナーの家事育児負担が高い。その分自分は稼ぎまくる。少ない時間でのコミュニケーションを大事にしていく。</li>
</ul>
</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p>次に来年の目標。</p>



<ul class="wp-block-list">
<li>より健康になる。40歳が見えてきたので身体面でのパフォーマンスを低下させないように。</li>



<li>英語の勉強はAIの進歩で出来なくても困らなくなってきつつあるが、コンプレックスとキャリアの選択肢を広げるために続ける。</li>



<li>生成AI時代に生き残るためのビジネス立ち上げに参画できた。新人に戻った気持ちで謙虚に、しかし自分の持ち味は出しながら新しいチャレンジに邁進し、今までの自分では出来なかったまだ見ぬ地点に到達する。</li>



<li>生成AIだけでなく、まだチャレンジしていなかった技術領域の知識も貪欲にキャッチアップし続ける。</li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<figure class="wp-block-image size-full"><a href="https://www.blog.danishi.net/wp-content/uploads/2025/12/image.jpg"><img loading="lazy" decoding="async" width="1024" height="559" src="https://www.blog.danishi.net/wp-content/uploads/2025/12/image.jpg" alt="" class="wp-image-7375" srcset="https://www.blog.danishi.net/wp-content/uploads/2025/12/image.jpg 1024w, https://www.blog.danishi.net/wp-content/uploads/2025/12/image-300x164.jpg 300w, https://www.blog.danishi.net/wp-content/uploads/2025/12/image-768x419.jpg 768w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></a></figure>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p>今年は燃え尽き症候群になりそうになりながらも、自分の信用貯金を一気に崩して新しいチャレンジへの切符を得ることができた年になりました。<br>目下コンフォートゾーンからですぎてパニックゾーンに片足突っ込んでる状況ですが、先が読めない時代、まだまだ自分を成長させる方向に傾けて行こうと思います。</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>


<iframe src="https://rcm-jp.amazon.co.jp/e/cm?t=danishi0a-22&o=9&p=8&l=as1&asins=B0FSD77C74&fc1=000000&IS2=1&lt1=_blank&m=amazon&lc1=0000FF&bc1=000000&bg1=FFFFFF&f=ifr" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>2025年買ってよかったもの</title>
		<link>https://www.blog.danishi.net/2025/12/21/post-7133/</link>
		
		<dc:creator><![CDATA[danishi]]></dc:creator>
		<pubDate>Sun, 21 Dec 2025 06:03:23 +0000</pubDate>
				<category><![CDATA[買ってみた]]></category>
		<category><![CDATA[ブログ]]></category>
		<guid isPermaLink="false">https://www.blog.danishi.net/?p=7133</guid>

					<description><![CDATA[カメラ付き耳かき 新感覚で耳かきができる。これじゃないと一生耳に残ってたんじゃないかってやつが取れた。しょっちゅうは使わないけどたまにやると楽しいし家族で共有できる。 iPad mini iPad Proのでかいのも持っ [&#8230;]]]></description>
										<content:encoded><![CDATA[
<figure class="wp-block-image size-full"><a href="https://www.blog.danishi.net/wp-content/uploads/2025/12/unnamed.jpg"><img loading="lazy" decoding="async" width="1024" height="506" src="https://www.blog.danishi.net/wp-content/uploads/2025/12/unnamed.jpg" alt="" class="wp-image-7363" srcset="https://www.blog.danishi.net/wp-content/uploads/2025/12/unnamed.jpg 1024w, https://www.blog.danishi.net/wp-content/uploads/2025/12/unnamed-300x148.jpg 300w, https://www.blog.danishi.net/wp-content/uploads/2025/12/unnamed-768x380.jpg 768w, https://www.blog.danishi.net/wp-content/uploads/2025/12/unnamed-530x262.jpg 530w, https://www.blog.danishi.net/wp-content/uploads/2025/12/unnamed-565x279.jpg 565w, https://www.blog.danishi.net/wp-content/uploads/2025/12/unnamed-710x351.jpg 710w, https://www.blog.danishi.net/wp-content/uploads/2025/12/unnamed-725x358.jpg 725w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></a></figure>



<h2 class="wp-block-heading"><a href="https://amzn.to/493wmCB">カメラ付き耳かき</a></h2>



<p>新感覚で耳かきができる。これじゃないと一生耳に残ってたんじゃないかってやつが取れた。<br>しょっちゅうは使わないけどたまにやると楽しいし家族で共有できる。</p>



<h2 class="wp-block-heading"><a href="https://amzn.to/3Lf2Ul7">iPad mini</a></h2>



<p>iPad Proのでかいのも持っているが、これをかってから全然こっちのほうが使う。<br>家でのごろ寝タブレットにも、旅行のお供にもちょうどいい大きさ。</p>



<h2 class="wp-block-heading"><a href="https://amzn.to/4qlebiP">たこチン君</a></h2>



<p>ロケットニュースさんの記事で知った。冷凍たこ焼き好きなので重宝している。</p>



<figure class="wp-block-embed is-type-wp-embed is-provider-24 wp-block-embed-24"><div class="wp-block-embed__wrapper">
<blockquote class="wp-embedded-content" data-secret="S2Kk2Iqdh9"><a href="https://rocketnews24.com/2025/03/25/2429238/">1300円でどう変わる？ 冷凍たこ焼きをおいしくするという「たこチン君」を使ってみた結果</a></blockquote><iframe loading="lazy" class="wp-embedded-content" sandbox="allow-scripts" security="restricted"  title="&#8220;1300円でどう変わる？ 冷凍たこ焼きをおいしくするという「たこチン君」を使ってみた結果&#8221; &#8212; ロケットニュース24" src="https://rocketnews24.com/2025/03/25/2429238/embed/#?secret=oSeBPdVN3d#?secret=S2Kk2Iqdh9" data-secret="S2Kk2Iqdh9" width="500" height="282" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe>
</div></figure>



<h2 class="wp-block-heading"><a href="https://amzn.to/4q7FPQN">レコルコ</a></h2>



<p>ほったらかしで激ウマスープやカレーが作れる。小さいので一人暮らしの狭いキッチンでも使えそう。<br>ただし公式のレシピ本が値段の割にペラペラで残念。</p>



<h2 class="wp-block-heading"><a href="https://amzn.to/4p6HOTY">Apple Watch Ultra 3</a></h2>



<p>でかいが電池持ちは正義。<br>今まで2本持ちで寝るときの睡眠トラッキングと使い分けてたが、1.5日に1時間ほど充電するだけでいいので1本持ちで運用できるように。<br>丈夫さを信じてサウナでもつけっぱなしにしているが今のところびくともしないように思う。<br>できるだけつけっぱなし運用がしたい人にこそ向いてると思う。<br>あと普通のApple Watchに対して優越感が持てるぞ！</p>



<h2 class="wp-block-heading">Limitless Pendant</h2>



<p>途中までめちゃめちゃ重宝してたけど、Metaに買収されてデータポリシーが変わってからは使ってない&#8230;。<br>Apple Watchに似たようなの実装してくれー。</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>新資格 AWS Certified Generative AI Developer &#8211; Professional 試験対策</title>
		<link>https://www.blog.danishi.net/2025/11/22/post-7347/</link>
		
		<dc:creator><![CDATA[danishi]]></dc:creator>
		<pubDate>Sat, 22 Nov 2025 04:13:13 +0000</pubDate>
				<category><![CDATA[調べてみた]]></category>
		<category><![CDATA[AWS]]></category>
		<category><![CDATA[AWS認定]]></category>
		<category><![CDATA[資格]]></category>
		<guid isPermaLink="false">https://www.blog.danishi.net/?p=7347</guid>

					<description><![CDATA[AWSにAIのプロフェッショナル資格が追加されました。AWS Certified AI Practitioner、AWS Certified Machine Learning Engineer &#8211; Assoc [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p><div class="linkcard"><div class="lkc-external-wrap"><a class="lkc-link no_icon" href="https://aws.amazon.com/jp/certification/certified-generative-ai-developer-professional/" data-lkc-id="29341" target="_blank" rel="external noopener"><div class="lkc-card"><div class="lkc-info"><div class="lkc-favicon"><img loading="lazy" decoding="async" src="https://www.google.com/s2/favicons?domain=aws.amazon.com" alt="" width="16" height="16" /></div><div class="lkc-domain">Amazon Web Services, Inc.</div></div><div class="lkc-content"><figure class="lkc-thumbnail"><img decoding="async" class="lkc-thumbnail-img" src="https://s.wordpress.com/mshots/v1/https%3A%2F%2Faws.amazon.com%2Fjp%2Fcertification%2Fcertified-generative-ai-developer-professional%2F?w=100" width="100px" height="108px" alt="" /></figure><div class="lkc-title">certified-generative-ai-developer-professional</div><div class="lkc-url" title="https://aws.amazon.com/jp/certification/certified-generative-ai-developer-professional/">https://aws.amazon.com/jp/certification/certified-generative-ai-developer-professional/</div><div class="lkc-excerpt">AWS Certified Generative AI Developer - Professional は、Bedrock などの AWS サービスを使用した、本番環境に対応する AI ソリューションの構築とデプロイに関する高度な技術的専門知識を示します。2 年以上のクラウドの経験があり、キャリアアップを高めたいと考えている開発者に最適です。AI イニシアチブに投資する組織にとって、この認定は、概念実証の枠を超えて、セキュリティとコスト効率を維持しながら具体的なビジネス成果をもたらす本番環境グレードの生成 AI ソリューションを構築できる開発者を特定および検証するため...</div></div><div class="clear"></div></div></a></div></div><br><br>AWSにAIのプロフェッショナル資格が追加されました。<br>AWS Certified AI Practitioner、AWS Certified Machine Learning Engineer &#8211; Associate、AWS Certified Data Engineer &#8211; Associateの上位資格に該当するものと思われます。<br><br>なお、この資格は2026 Japan All AWS Certifications Engineersのクライテリアには必須じゃないようです。<br><div class="linkcard"><div class="lkc-external-wrap"><a class="lkc-link no_icon" href="https://aws.amazon.com/jp/blogs/psa/2026-japan-all-aws-certifications-engineers-criteria/" data-lkc-id="29342" target="_blank" rel="external noopener"><div class="lkc-card"><div class="lkc-info"><div class="lkc-favicon"><img loading="lazy" decoding="async" src="https://www.google.com/s2/favicons?domain=aws.amazon.com" alt="" width="16" height="16" /></div><div class="lkc-domain">Amazon Web Services</div></div><div class="lkc-content"><figure class="lkc-thumbnail"><img decoding="async" class="lkc-thumbnail-img" src="//www.blog.danishi.net/wp-content/uploads/pz-linkcard/cache/b821175e534ef3d761d94e33c40523496e16f9040c134df50c03c88ead71807d.jpeg" width="100px" height="108px" alt="" /></figure><div class="lkc-title">2026 Japan All AWS Certifications Engineers クライテリアのお知らせ | Amazon W...</div><div class="lkc-url" title="https://aws.amazon.com/jp/blogs/psa/2026-japan-all-aws-certifications-engineers-criteria/">https://aws.amazon.com/jp/blogs/psa/2026-japan-all-aws-certifications-engineers-criteria/</div><div class="lkc-excerpt">本記事は AWS T&amp;C グローバル パートナー ソリューション本部 本部長 山田による寄稿です。 今 </div></div><div class="clear"></div></div></a></div></div><br><br>現在ベータ試験が受験可能なので早速申し込みました。<br>試験勉強がてら<a href="https://notebooklm.google.com/notebook/846791c4-1286-4ca5-b0ae-c601b6b08800">NotebookLM</a>を作成しました。<br><br>12月16日に最速で受けてくるので結果が出次第また追記します。</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<figure class="wp-block-image size-full"><a href="https://www.blog.danishi.net/wp-content/uploads/2025/11/image.png"><img loading="lazy" decoding="async" width="786" height="471" src="https://www.blog.danishi.net/wp-content/uploads/2025/11/image.png" alt="" class="wp-image-7358" srcset="https://www.blog.danishi.net/wp-content/uploads/2025/11/image.png 786w, https://www.blog.danishi.net/wp-content/uploads/2025/11/image-300x180.png 300w, https://www.blog.danishi.net/wp-content/uploads/2025/11/image-768x460.png 768w" sizes="auto, (max-width: 786px) 100vw, 786px" /></a></figure>



<p>結構危なかったですが合格できました！<br>去年のre:InventまでのBedrockでできることをしっかり抑えて行けば大丈夫そうな気がしました。</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>


<iframe src="https://rcm-jp.amazon.co.jp/e/cm?t=danishi0a-22&o=9&p=8&l=as1&asins=4815626448&fc1=000000&IS2=1&lt1=_blank&m=amazon&lc1=0000FF&bc1=000000&bg1=FFFFFF&f=ifr" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>プロンプトでシステムが組み上がる世界の最終系に思いを馳せる</title>
		<link>https://www.blog.danishi.net/2025/10/26/post-7334/</link>
		
		<dc:creator><![CDATA[danishi]]></dc:creator>
		<pubDate>Sun, 26 Oct 2025 11:02:36 +0000</pubDate>
				<category><![CDATA[考えてみた]]></category>
		<category><![CDATA[生成AI]]></category>
		<guid isPermaLink="false">https://www.blog.danishi.net/?p=7334</guid>

					<description><![CDATA[先日、初めてアマプラで「ザ・フライ」を見た。 映画の内容はそれはもう面白かったのだが、作中で科学者のセスが使うコンピューターは1986年の作品ながら、自然言語の指示を理解し、作りたいプログラムを作り見たいデータを探し出す [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>先日、初めてアマプラで「ザ・フライ」を見た。<br><iframe src="https://rcm-jp.amazon.co.jp/e/cm?t=danishi0a-22&o=9&p=8&l=as1&asins=B013D8Z0VY&fc1=000000&IS2=1&lt1=_blank&m=amazon&lc1=0000FF&bc1=000000&bg1=FFFFFF&f=ifr" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe><br>映画の内容はそれはもう面白かったのだが、作中で科学者のセスが使うコンピューターは1986年の作品ながら、自然言語の指示を理解し、作りたいプログラムを作り見たいデータを探し出す。<br>今でいうAIエージェントのような動きをしており、別の意味で驚いてしまった。<br><br>最近の生成AIアプリケーションは凄まじく、特にフロントエンドの領域ならFigma Makeなどはプロンプト指示だけでLPサイトの完成とデプロイまで行けてしまう。もうそんじょそこらのWeb制作会社不要じゃないかみたいなところまできている。<br><br>しかもFigma Makeは認証やデータベースが必要そうな指示をプロンプトに加えると、Spabaseとの連携を行いバックエンドサービスまで作ってくれる。<br><br>こういったことが究極まで進むと、ユーザーがシステム仕様のプロンプトを入力することで<br>フロントエンドからバックエンドの認証、検索、キャッシュサービスやデータベースまで一気通貫で出来上がる。<br>障害が起きればAIによってリカバリや修復がおこなわれシステムインフラは自己改善され続ける。<br><br>みたいな感じになっていくのだろうか。<br>※そんなイメージをnano bananaで書かせてみた図</p>



<figure class="wp-block-image size-large"><a href="https://www.blog.danishi.net/wp-content/uploads/2025/10/image.jpg"><img loading="lazy" decoding="async" width="1024" height="585" src="https://www.blog.danishi.net/wp-content/uploads/2025/10/image-1024x585.jpg" alt="" class="wp-image-7335" srcset="https://www.blog.danishi.net/wp-content/uploads/2025/10/image-1024x585.jpg 1024w, https://www.blog.danishi.net/wp-content/uploads/2025/10/image-300x171.jpg 300w, https://www.blog.danishi.net/wp-content/uploads/2025/10/image-768x439.jpg 768w, https://www.blog.danishi.net/wp-content/uploads/2025/10/image.jpg 1344w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></a></figure>



<p>このノーコードシステム開発ツールの究極みたいなことができるようになれば、システムを作らせたい人は全く自分で開発もクラウドインフラを調達しなくて良い。裏側がAWSだろうがGoogle Cloudだろうがオンプレk8sだろうが気にする必要はなくなる。</p>



<p>プロンプトだけで仕様を決めていけるし、仕様は都度AIに聞けばいいし一人情シスでも全く問題ないだろう。</p>



<p>このサービスをどこが作って、どのようなSLAや値付けで売ってくるかで変わりそうだけど、来年くらいにはこれっぽいものが登場してくるんじゃないかと思う。<br><br>最終的にシステム屋に残される仕事はビジネスそのものをデザインしたり、AIに要件や仕様を伝えられない人の代わりに伝えてあげる、AIの成果物を現実に照らし合わせて評価する。<br>そんな仕事だけになるのではないか、そしてそれができるのは今の日本IT業界で働くひとの中でも1割切ってるような気がするんだな。</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>


<iframe src="https://rcm-jp.amazon.co.jp/e/cm?t=danishi0a-22&o=9&p=8&l=as1&asins=4865944559&fc1=000000&IS2=1&lt1=_blank&m=amazon&lc1=0000FF&bc1=000000&bg1=FFFFFF&f=ifr" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Microsoft認定 Azure AI Fundamentalsに合格しました</title>
		<link>https://www.blog.danishi.net/2025/09/21/post-7321/</link>
		
		<dc:creator><![CDATA[danishi]]></dc:creator>
		<pubDate>Sat, 20 Sep 2025 23:48:42 +0000</pubDate>
				<category><![CDATA[受けてきた]]></category>
		<category><![CDATA[Azure]]></category>
		<category><![CDATA[Microsoft認定]]></category>
		<category><![CDATA[資格]]></category>
		<guid isPermaLink="false">https://www.blog.danishi.net/?p=7321</guid>

					<description><![CDATA[先月に引き続きAzure認定資格を受験してきました。 こちらの参考書をさっと読んで、AzureのAIサービスの名前だけ頭に入れて受験。 AWSやGoogle Cloudの最近新設されたAI初級者資格をもってるのでかなり簡 [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p><div class="linkcard"><div class="lkc-external-wrap"><a class="lkc-link no_icon" href="https://learn.microsoft.com/ja-jp/credentials/certifications/azure-ai-fundamentals/" data-lkc-id="29338" target="_blank" rel="external noopener"><div class="lkc-card"><div class="lkc-info"><div class="lkc-favicon"><img loading="lazy" decoding="async" src="https://www.google.com/s2/favicons?domain=learn.microsoft.com" alt="" width="16" height="16" /></div><div class="lkc-domain">learn.microsoft.com</div></div><div class="lkc-content"><figure class="lkc-thumbnail"><img decoding="async" class="lkc-thumbnail-img" src="//www.blog.danishi.net/wp-content/uploads/pz-linkcard/cache/4fac7452f522bab58b85621b5aa65d603a9d2e65399c06c1d7188572e8590e01.jpeg" width="100px" height="108px" alt="" /></figure><div class="lkc-title">Microsoft 認定: Azure AI の基礎 - Certifications</div><div class="lkc-url" title="https://learn.microsoft.com/ja-jp/credentials/certifications/azure-ai-fundamentals/">https://learn.microsoft.com/ja-jp/credentials/certifications/azure-ai-fundamentals/</div><div class="lkc-excerpt">AI ソリューションを作成するための Microsoft Azure のソフトウェアとサービスの開発に関連する基本的な AI の概念を示します。</div></div><div class="clear"></div></div></a></div></div><br><br>先月に引き続きAzure認定資格を受験してきました。<br><div class="linkcard"><div class="lkc-internal-wrap"><a class="lkc-link no_icon" href="https://www.blog.danishi.net/2025/08/17/post-7297" data-lkc-id="29339"><div class="lkc-card"><div class="lkc-info"><div class="lkc-favicon"><img loading="lazy" decoding="async" src="https://www.google.com/s2/favicons?domain=www.blog.danishi.net" alt="" width="16" height="16" /></div><div class="lkc-domain">It works for me</div></div><div class="lkc-content"><figure class="lkc-thumbnail"><img decoding="async" class="lkc-thumbnail-img" src="//www.blog.danishi.net/wp-content/uploads/2025/08/az-900-150x150.webp" width="100px" height="108px" alt="" /></figure><div class="lkc-title">Microsoft認定 Azure Fundamentalsに合格しました</div><div class="lkc-url" title="https://www.blog.danishi.net/2025/08/17/post-7297">https://www.blog.danishi.net/2025/08/17/post-7297</div><div class="lkc-excerpt">最近資格試験受けてないなーと思ったので、今までとったことのないAzureの資格にチャレンジしてみました。Azureは業務経験はほぼなく、個人ですこーしだけ触ったことがある程度。こちらの参考書をさっと読んだあと、他のクラウドサービスとの対比表を眺めてサービス名を頭に入れていくだけの大体2時間くらいの勉強で合格することができました。クラウドコンピューティングの前提知識がそのまま活かせて、AzureはAWSやGoogle Cloudよりサービスの名前が割とそのまんまなので他クラウドの経験がある人は同じような勉強法ですぐ合格できる...</div></div><div class="clear"></div></div></a></div></div></p>


<iframe src="https://rcm-jp.amazon.co.jp/e/cm?t=danishi0a-22&o=9&p=8&l=as1&asins=B0DHB7NBL7&fc1=000000&IS2=1&lt1=_blank&m=amazon&lc1=0000FF&bc1=000000&bg1=FFFFFF&f=ifr" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe>


<p>こちらの参考書をさっと読んで、AzureのAIサービスの名前だけ頭に入れて受験。<br><br>AWSやGoogle Cloudの最近新設されたAI初級者資格をもってるのでかなり簡単でした。<br>Azureのサービスより機械学習や生成AIの基礎知識を多く聞かれます。<br><br>Fundamentals資格は更新期限がないのでとってみましたが、それ以上になると更新期限が一年と他クラウドに比べてかなり厳しいので業務でやらない限りはこのあたりで打ち止めかな&#8230;。</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>


<iframe src="https://rcm-jp.amazon.co.jp/e/cm?t=danishi0a-22&o=9&p=8&l=as1&asins=B0F51FB7BB&fc1=000000&IS2=1&lt1=_blank&m=amazon&lc1=0000FF&bc1=000000&bg1=FFFFFF&f=ifr" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Microsoft認定 Azure Fundamentalsに合格しました</title>
		<link>https://www.blog.danishi.net/2025/08/17/post-7297/</link>
		
		<dc:creator><![CDATA[danishi]]></dc:creator>
		<pubDate>Sun, 17 Aug 2025 02:06:09 +0000</pubDate>
				<category><![CDATA[受けてきた]]></category>
		<category><![CDATA[Azure]]></category>
		<category><![CDATA[Microsoft認定]]></category>
		<category><![CDATA[資格]]></category>
		<guid isPermaLink="false">https://www.danishi.net/?p=7297</guid>

					<description><![CDATA[最近資格試験受けてないなーと思ったので、今までとったことのないAzureの資格にチャレンジしてみました。 Azureは業務経験はほぼなく、個人ですこーしだけ触ったことがある程度。 こちらの参考書をさっと読んだあと、他のク [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p><div class="linkcard"><div class="lkc-external-wrap"><a class="lkc-link no_icon" href="https://learn.microsoft.com/ja-jp/credentials/certifications/azure-fundamentals/" data-lkc-id="29334" target="_blank" rel="external noopener"><div class="lkc-card"><div class="lkc-info"><div class="lkc-favicon"><img loading="lazy" decoding="async" src="https://www.google.com/s2/favicons?domain=learn.microsoft.com" alt="" width="16" height="16" /></div><div class="lkc-domain">learn.microsoft.com</div></div><div class="lkc-content"><figure class="lkc-thumbnail"><img decoding="async" class="lkc-thumbnail-img" src="//www.blog.danishi.net/wp-content/uploads/pz-linkcard/cache/4fac7452f522bab58b85621b5aa65d603a9d2e65399c06c1d7188572e8590e01.jpeg" width="100px" height="108px" alt="" /></figure><div class="lkc-title">Microsoft 認定: Azure Fundamentals - Certifications</div><div class="lkc-url" title="https://learn.microsoft.com/ja-jp/credentials/certifications/azure-fundamentals/">https://learn.microsoft.com/ja-jp/credentials/certifications/azure-fundamentals/</div><div class="lkc-excerpt">クラウドの概念、Azure のコア サービス、および Azure の管理とガバナンスの機能とツールに関する基本的な知識を示します。</div></div><div class="clear"></div></div></a></div></div><br><br>最近資格試験受けてないなーと思ったので、今までとったことのないAzureの資格にチャレンジしてみました。<br><br>Azureは業務経験はほぼなく、個人ですこーしだけ触ったことがある程度。</p>


<iframe src="https://rcm-jp.amazon.co.jp/e/cm?t=danishi0a-22&o=9&p=8&l=as1&asins=B0C93VPLL5&fc1=000000&IS2=1&lt1=_blank&m=amazon&lc1=0000FF&bc1=000000&bg1=FFFFFF&f=ifr" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe>


<p>こちらの参考書をさっと読んだあと、他のクラウドサービスとの対比表を眺めてサービス名を頭に入れていくだけの大体2時間くらいの勉強で合格することができました。<br><br><div class="linkcard"><div class="lkc-external-wrap"><a class="lkc-link no_icon" href="https://learn.microsoft.com/ja-jp/azure/architecture/aws-professional/" data-lkc-id="29335" target="_blank" rel="external noopener"><div class="lkc-card"><div class="lkc-info"><div class="lkc-favicon"><img loading="lazy" decoding="async" src="https://www.google.com/s2/favicons?domain=learn.microsoft.com" alt="" width="16" height="16" /></div><div class="lkc-domain">learn.microsoft.com</div></div><div class="lkc-content"><figure class="lkc-thumbnail"><img decoding="async" class="lkc-thumbnail-img" src="//www.blog.danishi.net/wp-content/uploads/pz-linkcard/cache/4fac7452f522bab58b85621b5aa65d603a9d2e65399c06c1d7188572e8590e01.jpeg" width="100px" height="108px" alt="" /></figure><div class="lkc-title">AWS プロフェッショナルのための Azure - Azure Architecture Center</div><div class="lkc-url" title="https://learn.microsoft.com/ja-jp/azure/architecture/aws-professional/">https://learn.microsoft.com/ja-jp/azure/architecture/aws-professional/</div><div class="lkc-excerpt">Microsoft Azure プラットフォーム、アカウント、サービスの基本について説明します。 AWS プラットフォームと Azure プラットフォームの主な類似点と相違点について説明します。</div></div><div class="clear"></div></div></a></div></div><br><div class="linkcard"><div class="lkc-external-wrap"><a class="lkc-link no_icon" href="https://learn.microsoft.com/ja-jp/azure/architecture/gcp-professional/services" data-lkc-id="29336" target="_blank" rel="external noopener"><div class="lkc-card"><div class="lkc-info"><div class="lkc-favicon"><img loading="lazy" decoding="async" src="https://www.google.com/s2/favicons?domain=learn.microsoft.com" alt="" width="16" height="16" /></div><div class="lkc-domain">learn.microsoft.com</div></div><div class="lkc-content"><figure class="lkc-thumbnail"><img decoding="async" class="lkc-thumbnail-img" src="//www.blog.danishi.net/wp-content/uploads/pz-linkcard/cache/4fac7452f522bab58b85621b5aa65d603a9d2e65399c06c1d7188572e8590e01.jpeg" width="100px" height="108px" alt="" /></figure><div class="lkc-title">Google Cloud と Azure のサービスの比較 - Azure Architecture Center</div><div class="lkc-url" title="https://learn.microsoft.com/ja-jp/azure/architecture/gcp-professional/services">https://learn.microsoft.com/ja-jp/azure/architecture/gcp-professional/services</div><div class="lkc-excerpt">Google Cloud と Microsoft Azure のサービスを比較します。 すべての Google Cloud サービスや Azure サービスが一覧に示されているわけではありません。また、比較されている各サービスが機能ごとに厳密に等価であるわけではありません。</div></div><div class="clear"></div></div></a></div></div><br><div class="linkcard"><div class="lkc-external-wrap"><a class="lkc-link no_icon" href="https://cloud.google.com/docs/get-started/aws-azure-gcp-service-comparison?hl=ja" data-lkc-id="29337" target="_blank" rel="external noopener"><div class="lkc-card"><div class="lkc-info"><div class="lkc-favicon"><img loading="lazy" decoding="async" src="https://www.google.com/s2/favicons?domain=cloud.google.com" alt="" width="16" height="16" /></div><div class="lkc-domain">Google Cloud</div></div><div class="lkc-content"><figure class="lkc-thumbnail"><img decoding="async" class="lkc-thumbnail-img" src="//www.blog.danishi.net/wp-content/uploads/pz-linkcard/cache/199c25fb30902f478789793b1a9e47a90ba36e96751d4364d415ca793065c3a9.jpeg" width="100px" height="108px" alt="" /></figure><div class="lkc-title">AWS サービスや Azure サービスと Google Cloud を比較する  |  Get started</div><div class="lkc-url" title="https://cloud.google.com/docs/get-started/aws-azure-gcp-service-comparison?hl=ja">https://cloud.google.com/docs/get-started/aws-azure-gcp-service-comparison?hl=ja</div></div><div class="clear"></div></div></a></div></div><br><br>クラウドコンピューティングの前提知識がそのまま活かせて、AzureはAWSやGoogle Cloudよりサービスの名前が割とそのまんまなので他クラウドの経験がある人は同じような勉強法ですぐ合格できると思いました。<br>ただし、そんな身構える必要はないですが出題形式はAWS、Google Cloudに比べてバリエーションがありました。記述式はなかった記憶ですが、単純な択一、複数選択以外の形式もあります。<br><br>折角なので<a href="https://learn.microsoft.com/ja-jp/credentials/certifications/azure-ai-fundamentals/" target="_blank" rel="noreferrer noopener">AI-900</a>の方も近いうちに取得しようと思います。</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>


<iframe src="https://rcm-jp.amazon.co.jp/e/cm?t=danishi0a-22&o=9&p=8&l=as1&asins=B0F51FB7BB&fc1=000000&IS2=1&lt1=_blank&m=amazon&lc1=0000FF&bc1=000000&bg1=FFFFFF&f=ifr" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Vertex AIでVirtual Try-Onを試してみる</title>
		<link>https://www.blog.danishi.net/2025/08/14/post-7291/</link>
		
		<dc:creator><![CDATA[danishi]]></dc:creator>
		<pubDate>Thu, 14 Aug 2025 13:55:53 +0000</pubDate>
				<category><![CDATA[やってみた]]></category>
		<category><![CDATA[Google Cloud]]></category>
		<category><![CDATA[Google Colab]]></category>
		<category><![CDATA[Vertex AI]]></category>
		<category><![CDATA[生成AI]]></category>
		<category><![CDATA[画像生成]]></category>
		<guid isPermaLink="false">https://www.blog.danishi.net/?p=7291</guid>

					<description><![CDATA[公式から配布されているColabノートブックを和訳しながら進めてみる。 モデルは専用のものが用意されており「virtual-try-on-preview-08-04」をGoogle Gen AI SDK経由で使う。 Im [&#8230;]]]></description>
										<content:encoded><![CDATA[
<figure class="wp-block-image size-large"><a href="https://www.blog.danishi.net/wp-content/uploads/2025/08/virtual_try_on.jpg"><img loading="lazy" decoding="async" width="1024" height="559" src="https://www.blog.danishi.net/wp-content/uploads/2025/08/virtual_try_on-1024x559.jpg" alt="" class="wp-image-7295" srcset="https://www.blog.danishi.net/wp-content/uploads/2025/08/virtual_try_on-1024x559.jpg 1024w, https://www.blog.danishi.net/wp-content/uploads/2025/08/virtual_try_on-300x164.jpg 300w, https://www.blog.danishi.net/wp-content/uploads/2025/08/virtual_try_on-768x419.jpg 768w, https://www.blog.danishi.net/wp-content/uploads/2025/08/virtual_try_on.jpg 1408w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></a></figure>



<p><div class="linkcard"><div class="lkc-external-wrap"><a class="lkc-link no_icon" href="https://cloud.google.com/vertex-ai/generative-ai/docs/image/generate-virtual-try-on-images?hl=en" data-lkc-id="29333" target="_blank" rel="external noopener"><div class="lkc-card"><div class="lkc-info"><div class="lkc-favicon"><img loading="lazy" decoding="async" src="https://www.google.com/s2/favicons?domain=cloud.google.com" alt="" width="16" height="16" /></div><div class="lkc-domain">Google Cloud</div></div><div class="lkc-content"><figure class="lkc-thumbnail"><img decoding="async" class="lkc-thumbnail-img" src="https://s.wordpress.com/mshots/v1/https%3A%2F%2Fcloud.google.com%2Fvertex-ai%2Fgenerative-ai%2Fdocs%2Fimage%2Fgenerate-virtual-try-on-images%3Fhl%3Den?w=100" width="100px" height="108px" alt="" /></figure><div class="lkc-title">Generate Virtual Try-On Images  |  Generative AI on Vertex AI  |  Google Cloud</div><div class="lkc-url" title="https://cloud.google.com/vertex-ai/generative-ai/docs/image/generate-virtual-try-on-images?hl=en">https://cloud.google.com/vertex-ai/generative-ai/docs/image/generate-virtual-try-on-images?hl=en</div><div class="lkc-excerpt">Generate images of people to try-on clothing products</div></div><div class="clear"></div></div></a></div></div><br><br>公式から配布されている<a href="https://colab.research.google.com/github/GoogleCloudPlatform/generative-ai/blob/main/vision/getting-started/virtual_try_on.ipynb">Colabノートブック</a>を和訳しながら進めてみる。</p>



<p>モデルは専用のものが用意されており「<a href="https://cloud.google.com/vertex-ai/generative-ai/docs/models/imagen/virtual-try-on-preview-08-04">virtual-try-on-preview-08-04</a>」をGoogle Gen AI SDK経由で使う。</p>



<p>Imagenで生成したこちらのモデルに</p>



<figure class="wp-block-image size-full is-resized"><a href="https://www.blog.danishi.net/wp-content/uploads/2025/08/image.png"><img loading="lazy" decoding="async" width="400" height="400" src="https://www.blog.danishi.net/wp-content/uploads/2025/08/image.png" alt="" class="wp-image-7292" style="width:399px;height:auto" srcset="https://www.blog.danishi.net/wp-content/uploads/2025/08/image.png 400w, https://www.blog.danishi.net/wp-content/uploads/2025/08/image-300x300.png 300w, https://www.blog.danishi.net/wp-content/uploads/2025/08/image-150x150.png 150w" sizes="auto, (max-width: 400px) 100vw, 400px" /></a></figure>



<p>このドレスを着せる</p>



<figure class="wp-block-image size-large is-resized"><img decoding="async" src="https://storage.googleapis.com/cloud-samples-data/generative-ai/image/dress.jpg" alt="" style="width:419px;height:auto"/></figure>



<div class="hcb_wrap"><pre class="prism line-numbers lang-python" data-lang="Python"><code>from google import genai
from google.genai.types import (
    GenerateImagesConfig,
    Image,
    ProductImage,
    RecontextImageConfig,
    RecontextImageSource,
)

client = genai.Client(vertexai=True, project=PROJECT_ID, location=LOCATION)

virtual_try_on = &quot;virtual-try-on-preview-08-04&quot;

response = client.models.recontext_image(
    model=virtual_try_on,
    source=RecontextImageSource(
        person_image=image.generated_images[0].image,
        product_images=[
            ProductImage(
                product_image=Image(
                    gcs_uri=&quot;gs://cloud-samples-data/generative-ai/image/dress.jpg&quot;
                )
            )
        ],
    ),
    config=RecontextImageConfig(
        base_steps=32,
        number_of_images=1,
        safety_filter_level=&quot;BLOCK_LOW_AND_ABOVE&quot;,
        person_generation=&quot;ALLOW_ADULT&quot;,
    ),
)
display_image(response.generated_images[0].image)</code></pre></div>



<figure class="wp-block-image size-full"><a href="https://www.blog.danishi.net/wp-content/uploads/2025/08/image-1.png"><img loading="lazy" decoding="async" width="400" height="400" src="https://www.blog.danishi.net/wp-content/uploads/2025/08/image-1.png" alt="" class="wp-image-7293" srcset="https://www.blog.danishi.net/wp-content/uploads/2025/08/image-1.png 400w, https://www.blog.danishi.net/wp-content/uploads/2025/08/image-1-300x300.png 300w, https://www.blog.danishi.net/wp-content/uploads/2025/08/image-1-150x150.png 150w" sizes="auto, (max-width: 400px) 100vw, 400px" /></a></figure>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p>価格は画像一枚につき$0.12<br><a href="https://cloud.google.com/vertex-ai/generative-ai/pricing?hl=en#imagen-models">https://cloud.google.com/vertex-ai/generative-ai/pricing?hl=en#imagen-models</a><br>和訳後のノートブックの全文は<a href="https://colab.research.google.com/drive/1WOGHyw9G3McPGy3oDVx1edt0zfcnBuB6?usp=sharing">こちら</a>。</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>


<iframe src="https://rcm-jp.amazon.co.jp/e/cm?t=danishi0a-22&o=9&p=8&l=as1&asins=B0D78DB382&fc1=000000&IS2=1&lt1=_blank&m=amazon&lc1=0000FF&bc1=000000&bg1=FFFFFF&f=ifr" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe>]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
