Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 | ---
import Layout from '../layouts/Layout.astro';
import config from '../config/index.json';
const profilePageSchema = {
'@context': 'https://schema.org',
'@type': 'ProfilePage',
'@id': `${config.siteUrl}/about/#profilepage`,
mainEntity: { '@id': `${config.siteUrl}/#person` },
dateCreated: '2019-09-01T00:00:00+09:00',
dateModified: '2026-03-20T00:00:00+09:00',
name: 'About - tubone24',
description: 'tubone24(Yu Otsubo)のプロフィール。AIエージェント開発、Webアプリケーション開発、クラウドインフラストラクチャのソフトウェアエンジニア。',
breadcrumb: {
'@type': 'BreadcrumbList',
itemListElement: [
{ '@type': 'ListItem', position: 1, item: { '@id': config.siteUrl, name: 'ホーム' } },
{ '@type': 'ListItem', position: 2, name: 'About' },
],
},
};
---
<Layout
title="About - tubone24"
description="tubone24(Yu Otsubo)のプロフィール。AIエージェント開発、Webアプリケーション開発、クラウドインフラストラクチャのソフトウェアエンジニア。"
ogpPath="/og/about.png"
canonicalUrl="https://tubone-project24.xyz/about/"
isPostPage={true}
>
<script type="application/ld+json" set:html={JSON.stringify(profilePageSchema)} />
<div class="container" style="margin-top: 2rem; margin-bottom: 2rem;">
<div class="row justify-content-center">
<div class="col-lg-8 col-md-10 col-sm-12">
<!-- プロフィールセクション -->
<section class="content-white-inner about-section">
<div class="profile-header">
<picture>
<source srcset="/assets/avater.webp" type="image/webp" />
<img
src="/assets/avater.png"
alt="tubone24のアバター"
class="profile-avatar"
width="160"
height="160"
loading="eager"
/>
</picture>
<div class="profile-info">
<h1>Yu Otsubo <span class="profile-handle">(tubone24)</span></h1>
<p class="profile-role">Software Engineer</p>
</div>
</div>
<p class="profile-bio">
AIエージェント開発、Webアプリケーション開発、クラウドインフラに関する技術を探求するソフトウェアエンジニアです。
日々の開発で得た学びや発見を、技術ブログ「tubone BOYAKI」を通じて共有しています。
新しい技術に触れることが好きで、実際に手を動かして検証したことを中心に記事を書いています。
</p>
</section>
<!-- ターミナル風プロフィールカード -->
<section class="content-white-inner about-section">
<h2>Profile Card</h2>
<div class="terminal-card" id="terminal-card">
<div class="terminal-header">
<span class="terminal-dot red"></span>
<span class="terminal-dot yellow"></span>
<span class="terminal-dot green"></span>
<span class="terminal-title">tubone24 — profile</span>
</div>
<div class="terminal-body" id="terminal-body">
<div class="terminal-line"><span class="t-gray">$</span> <span class="t-green">npx</span> <span class="t-white">tubone24</span></div>
<div class="terminal-line"> </div>
<div class="terminal-line"> <span class="t-white-bold">Yu Otsubo</span> / <span class="t-white">tubone24</span></div>
<div class="terminal-line"> </div>
<div class="terminal-line"> <span class="t-label">Work:</span> <span class="t-white">Software Engineer</span><span class="t-cyan">@</span><span class="t-green-bright">KAG</span></div>
<div class="terminal-line"> <span class="t-label">Expertise:</span> <span class="t-white">AI Agent, Web Dev, Cloud Infra, DevOps, Python</span></div>
<div class="terminal-line"> </div>
<div class="terminal-line"> <span class="t-label">Twitter:</span> <a href="https://twitter.com/tubone24" target="_blank" rel="noopener noreferrer" class="t-gray">https://twitter.com/</a><a href="https://twitter.com/tubone24" target="_blank" rel="noopener noreferrer" class="t-cyan">tubone24</a></div>
<div class="terminal-line"> <span class="t-label">Facebook:</span> <a href="https://facebook.com/yu.otsubo" target="_blank" rel="noopener noreferrer" class="t-gray">https://facebook.com/</a><a href="https://facebook.com/yu.otsubo" target="_blank" rel="noopener noreferrer" class="t-blue">yu.otsubo</a></div>
<div class="terminal-line"> <span class="t-label">Instagram:</span> <a href="https://www.instagram.com/mugimugi.cutedog/" target="_blank" rel="noopener noreferrer" class="t-gray">https://instagram.com/</a><a href="https://www.instagram.com/mugimugi.cutedog/" target="_blank" rel="noopener noreferrer" class="t-magenta">mugimugi.cutedog</a></div>
<div class="terminal-line"> <span class="t-label">GitHub:</span> <a href="https://github.com/tubone24" target="_blank" rel="noopener noreferrer" class="t-gray">https://github.com/</a><a href="https://github.com/tubone24" target="_blank" rel="noopener noreferrer" class="t-green">tubone24</a></div>
<div class="terminal-line"> <span class="t-label">Portfolio:</span> <a href="https://portfolio.tubone-project24.xyz" target="_blank" rel="noopener noreferrer" class="t-cyan">https://portfolio.tubone-project24.xyz</a></div>
<div class="terminal-line"> <span class="t-label">Blog:</span> <a href="https://tubone-project24.xyz" target="_blank" rel="noopener noreferrer" class="t-cyan">https://tubone-project24.xyz</a></div>
<div class="terminal-line"> <span class="t-label">Contact:</span> <a href="https://portfolio.tubone-project24.xyz/#contact" target="_blank" rel="noopener noreferrer" class="t-cyan">https://portfolio.tubone-project24.xyz/#contact</a></div>
<div class="terminal-line"> </div>
<div class="terminal-line"> <span class="t-label">Card:</span> <span class="t-red">npx</span> <span class="t-white">tubone24</span></div>
<div class="terminal-cursor" id="terminal-cursor">▊</div>
</div>
</div>
</section>
<!-- 著書セクション -->
<section class="content-white-inner about-section">
<h2>著書</h2>
<div class="books-grid">
<div class="book-item">
<img src="/images/books/yasashii-mcp.jpeg" alt="やさしいMCP入門 書影" width="180" height="255" loading="lazy" class="book-cover" />
<div class="book-info">
<h3>やさしいMCP入門</h3>
<p class="book-description">Model Context Protocol(MCP)の基礎から実践までを解説した入門書。</p>
</div>
</div>
<div class="book-item">
<img src="/images/books/ai-agent-dev.jpeg" alt="AIエージェント開発/運用入門 書影" width="180" height="255" loading="lazy" class="book-cover" />
<div class="book-info">
<h3>AIエージェント開発/運用入門</h3>
<p class="book-description">AIエージェントの設計・開発・運用に関する実践的なガイドブック。</p>
</div>
</div>
</div>
</section>
<!-- むぎ(愛犬)紹介セクション -->
<section class="content-white-inner about-section">
<h2>むぎ(愛犬)</h2>
<div class="mugi-section">
<img src="/images/mugi/IMG_0166.jpg" alt="むぎ" width="240" height="240" loading="lazy" class="mugi-photo" />
<div class="mugi-info">
<p>
むぎはtubone24の愛犬です。日々の癒しを与えてくれる大切な家族の一員。
むぎの日常はInstagramで公開しています。
</p>
<a href="https://www.instagram.com/mugimugi.cutedog/" target="_blank" rel="noopener noreferrer" class="mugi-instagram-link">
@mugimugi.cutedog on Instagram
</a>
</div>
</div>
</section>
</div>
</div>
</div>
</Layout>
<style>
.about-section {
margin-bottom: 2rem;
padding: 2rem;
}
.profile-header {
display: flex;
align-items: center;
gap: 1.5rem;
margin-bottom: 1.5rem;
}
.profile-avatar {
border-radius: 50%;
width: 160px;
height: 160px;
object-fit: cover;
border: 3px solid #e0e0e0;
cursor: default;
}
.profile-info h1 {
margin-bottom: 0.25rem;
font-size: 1.75rem;
}
.profile-handle {
color: #6c757d;
font-size: 1.25rem;
font-weight: 400;
}
.profile-role {
color: #6c757d;
font-size: 1.1rem;
margin-bottom: 0;
}
.profile-bio {
font-size: 1rem;
line-height: 1.8;
color: #333;
}
h2 {
font-size: 1.5rem;
margin-bottom: 1rem;
padding-bottom: 0.5rem;
border-bottom: 2px solid #33b546;
}
/* ターミナル風プロフィールカード */
.terminal-card {
background: #1e1e1e;
border: 2px solid #33b546;
border-radius: 12px;
overflow: hidden;
font-family: 'SFMono-Regular', 'Menlo', 'Monaco', 'Consolas', 'Liberation Mono', monospace;
}
.terminal-header {
background: #2d2d2d;
padding: 8px 12px;
display: flex;
align-items: center;
gap: 6px;
}
.terminal-dot {
width: 12px;
height: 12px;
border-radius: 50%;
display: inline-block;
}
.terminal-dot.red { background: #ff5f56; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green { background: #27c93f; }
.terminal-title {
color: #999;
font-size: 0.8rem;
margin-left: 8px;
}
.terminal-body {
padding: 1.5rem;
margin: 0;
color: #d4d4d4;
font-size: 0.85rem;
line-height: 1.6;
overflow-x: auto;
background: transparent;
border: none;
font-family: 'SFMono-Regular', 'Menlo', 'Monaco', 'Consolas', 'Liberation Mono', monospace;
white-space: pre;
}
.terminal-line {
opacity: 0;
transform: translateY(4px);
transition: opacity 0.15s ease, transform 0.15s ease;
}
.terminal-line.visible {
opacity: 1;
transform: translateY(0);
}
.terminal-cursor {
display: inline-block;
color: #33b546;
animation: blink 0.8s step-end infinite;
font-size: 1rem;
line-height: 1;
}
@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0; }
}
.t-white-bold { color: #fff; font-weight: bold; }
.t-white { color: #e0e0e0; }
.t-label { color: #fff; font-weight: bold; }
.t-cyan { color: #56b6c2; }
.t-cyan a, a.t-cyan { color: #56b6c2; text-decoration: none; }
.t-cyan a:hover, a.t-cyan:hover { text-decoration: underline; }
.t-green-bright { color: #98c379; }
.t-green { color: #98c379; }
.t-green a, a.t-green { color: #98c379; text-decoration: none; }
.t-green a:hover, a.t-green:hover { text-decoration: underline; }
.t-blue { color: #61afef; }
.t-blue a, a.t-blue { color: #61afef; text-decoration: none; }
.t-blue a:hover, a.t-blue:hover { text-decoration: underline; }
.t-magenta { color: #c678dd; }
.t-magenta a, a.t-magenta { color: #c678dd; text-decoration: none; }
.t-magenta a:hover, a.t-magenta:hover { text-decoration: underline; }
.t-gray { color: #7f8c8d; }
.t-gray a, a.t-gray { color: #7f8c8d; text-decoration: none; }
.t-red { color: #e06c75; }
/* 著書セクション */
.books-grid {
display: flex;
flex-wrap: wrap;
gap: 2rem;
}
.book-item {
display: flex;
gap: 1.25rem;
flex: 1;
min-width: 280px;
}
.book-cover {
width: 180px;
height: auto;
border-radius: 4px;
box-shadow: 0 2px 8px rgba(0,0,0,0.15);
object-fit: cover;
background: #f0f0f0;
}
.book-info h3 {
font-size: 1.1rem;
margin-bottom: 0.5rem;
}
.book-info .book-description {
font-size: 0.9rem;
color: #555;
line-height: 1.6;
}
/* むぎ(愛犬)セクション */
.mugi-section {
display: flex;
align-items: flex-start;
gap: 1.5rem;
}
.mugi-photo {
width: 240px;
height: 240px;
border-radius: 12px;
object-fit: cover;
background: #f0f0f0;
border: 3px solid #e0e0e0;
}
.mugi-info {
flex: 1;
}
.mugi-info p {
font-size: 1rem;
line-height: 1.8;
color: #333;
margin-bottom: 1rem;
}
.mugi-instagram-link {
display: inline-block;
padding: 0.5rem 1.25rem;
background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
color: #fff;
border-radius: 12px;
text-decoration: none;
font-weight: bold;
transition: opacity 0.2s;
}
.mugi-instagram-link:hover {
opacity: 0.85;
color: #fff;
}
/* レスポンシブ対応 */
@media (max-width: 576px) {
.profile-header {
flex-direction: column;
text-align: center;
}
.profile-avatar {
width: 120px;
height: 120px;
}
.profile-info h1 {
font-size: 1.4rem;
}
.about-section {
padding: 1.25rem;
}
.terminal-body {
font-size: 0.7rem;
padding: 1rem;
}
.books-grid {
flex-direction: column;
}
.book-item {
flex-direction: column;
align-items: center;
text-align: center;
}
.mugi-section {
flex-direction: column;
align-items: center;
text-align: center;
}
.mugi-photo {
width: 200px;
height: 200px;
}
}
</style>
<script is:inline>
function initAltBadges() {
var containers = document.querySelectorAll('.content-white-inner');
for (var i = 0; i < containers.length; i++) {
var images = containers[i].querySelectorAll('img');
for (var j = 0; j < images.length; j++) {
var img = images[j];
var alt = img.getAttribute('alt');
if (!alt || alt.trim() === '') continue;
if (img.classList.contains('profile-avatar')) continue;
if (img.parentElement && img.parentElement.classList.contains('alt-badge-figure')) continue;
var figure = document.createElement('figure');
figure.className = 'alt-badge-figure';
img.parentNode.insertBefore(figure, img);
figure.appendChild(img);
var btn = document.createElement('button');
btn.className = 'alt-badge-btn';
btn.type = 'button';
btn.setAttribute('aria-label', '画像の説明テキストを表示');
btn.textContent = 'ALT';
figure.appendChild(btn);
var dialog = document.createElement('dialog');
dialog.className = 'alt-badge-dialog';
var textP = document.createElement('p');
textP.className = 'alt-badge-dialog__text';
textP.textContent = alt;
dialog.appendChild(textP);
var form = document.createElement('form');
form.method = 'dialog';
var closeBtn = document.createElement('button');
closeBtn.type = 'submit';
closeBtn.className = 'alt-badge-dialog__close';
closeBtn.textContent = '閉じる';
form.appendChild(closeBtn);
dialog.appendChild(form);
figure.appendChild(dialog);
}
}
}
document.addEventListener('click', function(e) {
var btn = e.target.closest('.alt-badge-btn');
if (btn) {
e.preventDefault();
e.stopPropagation();
var dialog = btn.parentElement.querySelector('.alt-badge-dialog');
if (dialog) {
dialog.showModal();
}
return;
}
});
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', initAltBadges);
} else {
initAltBadges();
}
setTimeout(initAltBadges, 2000);
</script>
<script is:inline>
function openLightbox(imgSrc, imgAlt) {
var existing = document.querySelector('.content-lightbox');
if (existing) existing.remove();
var overlay = document.createElement('div');
overlay.className = 'content-lightbox';
overlay.setAttribute('role', 'dialog');
overlay.setAttribute('aria-label', '画像プレビュー');
var inner = document.createElement('div');
inner.className = 'content-lightbox-inner';
var closeBtn = document.createElement('button');
closeBtn.className = 'content-lightbox-close';
closeBtn.setAttribute('aria-label', '閉じる');
closeBtn.textContent = '\u00d7';
closeBtn.addEventListener('click', function() { closeLightbox(); });
var img = document.createElement('img');
img.src = imgSrc;
img.alt = imgAlt || '';
img.addEventListener('click', function() { closeLightbox(); });
inner.appendChild(closeBtn);
inner.appendChild(img);
overlay.appendChild(inner);
document.body.appendChild(overlay);
document.body.style.overflow = 'hidden';
requestAnimationFrame(function() {
overlay.classList.add('content-lightbox--visible');
});
overlay.addEventListener('click', function(e) {
if (e.target === overlay) closeLightbox();
});
}
function closeLightbox() {
var overlay = document.querySelector('.content-lightbox');
if (!overlay) return;
overlay.classList.remove('content-lightbox--visible');
setTimeout(function() {
overlay.remove();
document.body.style.overflow = '';
}, 200);
}
document.addEventListener('keydown', function(e) {
if (e.key === 'Escape') closeLightbox();
});
document.addEventListener('click', function(e) {
var img = e.target.closest('.content-white-inner img');
if (!img) return;
if (img.classList.contains('profile-avatar')) return;
if (e.target.closest('.alt-badge-btn')) return;
e.preventDefault();
e.stopPropagation();
var src = img.getAttribute('src') || '';
src = src.replace(/-640(\.\w+)$/, '$1');
openLightbox(src, img.getAttribute('alt'));
});
</script>
<script is:inline>
(function() {
var card = document.getElementById('terminal-card');
if (!card) return;
var lines = card.querySelectorAll('.terminal-line');
var cursor = document.getElementById('terminal-cursor');
var animated = false;
function animateLines() {
if (animated) return;
animated = true;
var delay = 0;
for (var i = 0; i < lines.length; i++) {
(function(line, d) {
setTimeout(function() {
line.classList.add('visible');
}, d);
})(lines[i], delay);
// 空行は短め、内容行はやや長め
delay += lines[i].textContent.trim() === '' ? 40 : 80;
}
// アニメーション完了後にカーソル点滅を3秒後に消す
setTimeout(function() {
if (cursor) cursor.style.display = 'none';
}, delay + 3000);
}
// IntersectionObserverでスクロールしてカードが見えたら発火
if ('IntersectionObserver' in window) {
var observer = new IntersectionObserver(function(entries) {
entries.forEach(function(entry) {
if (entry.isIntersecting) {
animateLines();
observer.unobserve(card);
}
});
}, { threshold: 0.3 });
observer.observe(card);
} else {
// フォールバック: 即時表示
animateLines();
}
})();
</script>
|