diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-11-02 22:50:56 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-11-02 22:50:56 +0900 |
| commit | 0ed772e1c2691f545ee08221893ac98266322ac5 (patch) | |
| tree | fc89bc0aa6f378d1575fe2a78a1b7c534d828505 | |
| parent | 0af80494361ec9b71e004e2c83c43170666acbd9 (diff) | |
| download | nsfisis.dev-0ed772e1c2691f545ee08221893ac98266322ac5.tar.gz nsfisis.dev-0ed772e1c2691f545ee08221893ac98266322ac5.tar.zst nsfisis.dev-0ed772e1c2691f545ee08221893ac98266322ac5.zip | |
feat(nuldoc): Update site header 2
186 files changed, 834 insertions, 468 deletions
diff --git a/services/nuldoc/nuldoc-src/commands/build.ts b/services/nuldoc/nuldoc-src/commands/build.ts index 8250e04a..a19029aa 100644 --- a/services/nuldoc/nuldoc-src/commands/build.ts +++ b/services/nuldoc/nuldoc-src/commands/build.ts @@ -94,7 +94,7 @@ async function buildPostListPage(posts: PostPage[], config: Config) { const postFeedPage = await generateFeedPageFromEntries( "/posts/", "posts", - `投稿一覧|${config.blog.siteName}`, + `投稿一覧|${config.sites.blog.siteName}`, posts, "blog", config, @@ -140,7 +140,7 @@ async function buildSlideListPage(slides: SlidePage[], config: Config) { const slideFeedPage = await generateFeedPageFromEntries( slideListPage.href, "slides", - `スライド一覧|${config.blog.siteName}`, + `スライド一覧|${config.sites.slides.siteName}`, slides, "slides", config, @@ -174,7 +174,7 @@ async function buildFeedOfAllContents( const feed = await generateFeedPageFromEntries( "/", "all", - config.blog.siteName, + config.sites.default.siteName, [...posts, ...slides], "default", config, @@ -195,7 +195,7 @@ async function buildTagPages( const tagFeedPage = await generateFeedPageFromEntries( tagPage.href, `tag-${tag}`, - `タグ「${getTagLabel(config, tag)}」一覧|${config.blog.siteName}`, + `タグ「${getTagLabel(config, tag)}」一覧|${config.sites[site].siteName}`, pages, site, config, diff --git a/services/nuldoc/nuldoc-src/components/AboutGlobalHeader.tsx b/services/nuldoc/nuldoc-src/components/AboutGlobalHeader.tsx index 4671a019..2df7296c 100644 --- a/services/nuldoc/nuldoc-src/components/AboutGlobalHeader.tsx +++ b/services/nuldoc/nuldoc-src/components/AboutGlobalHeader.tsx @@ -5,7 +5,7 @@ export default function GlobalHeader({ config }: { config: Config }) { <header className="header"> <div className="site-logo"> <a href={`https://${config.sites.default.fqdn}/`}> - {config.blog.siteName} + nsfisis.dev </a> </div> </header> diff --git a/services/nuldoc/nuldoc-src/components/BlogGlobalHeader.tsx b/services/nuldoc/nuldoc-src/components/BlogGlobalHeader.tsx index 026c54fb..1f7fe6ee 100644 --- a/services/nuldoc/nuldoc-src/components/BlogGlobalHeader.tsx +++ b/services/nuldoc/nuldoc-src/components/BlogGlobalHeader.tsx @@ -5,9 +5,12 @@ export default function GlobalHeader({ config }: { config: Config }) { <header className="header"> <div className="site-logo"> <a href={`https://${config.sites.default.fqdn}/`}> - {config.blog.siteName} + nsfisis.dev </a> </div> + <div className="site-name"> + {config.sites.blog.siteName} + </div> <nav className="nav"> <ul> <li> diff --git a/services/nuldoc/nuldoc-src/components/DefaultGlobalHeader.tsx b/services/nuldoc/nuldoc-src/components/DefaultGlobalHeader.tsx index 4671a019..2df7296c 100644 --- a/services/nuldoc/nuldoc-src/components/DefaultGlobalHeader.tsx +++ b/services/nuldoc/nuldoc-src/components/DefaultGlobalHeader.tsx @@ -5,7 +5,7 @@ export default function GlobalHeader({ config }: { config: Config }) { <header className="header"> <div className="site-logo"> <a href={`https://${config.sites.default.fqdn}/`}> - {config.blog.siteName} + nsfisis.dev </a> </div> </header> diff --git a/services/nuldoc/nuldoc-src/components/GlobalFooter.tsx b/services/nuldoc/nuldoc-src/components/GlobalFooter.tsx index 6a8d8f6d..9374aa77 100644 --- a/services/nuldoc/nuldoc-src/components/GlobalFooter.tsx +++ b/services/nuldoc/nuldoc-src/components/GlobalFooter.tsx @@ -3,7 +3,7 @@ import { Config } from "../config.ts"; export default function GlobalFooter({ config }: { config: Config }) { return ( <footer className="footer"> - {`© ${config.site.copyrightYear} ${config.blog.author}`} + {`© ${config.site.copyrightYear} ${config.site.author}`} </footer> ); } diff --git a/services/nuldoc/nuldoc-src/components/PageLayout.tsx b/services/nuldoc/nuldoc-src/components/PageLayout.tsx index 78a5cde2..b32f2290 100644 --- a/services/nuldoc/nuldoc-src/components/PageLayout.tsx +++ b/services/nuldoc/nuldoc-src/components/PageLayout.tsx @@ -9,6 +9,7 @@ type Props = { metaTitle: string; metaAtomFeedHref?: string; requiresSyntaxHighlight?: boolean; + site: "default" | "about" | "blog" | "slides"; config: Config; children: JSXNode; }; @@ -21,6 +22,7 @@ export default function PageLayout( metaTitle, metaAtomFeedHref, requiresSyntaxHighlight: _, + site, config, children, }: Props, @@ -30,10 +32,10 @@ export default function PageLayout( <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="author" content={config.blog.author} /> + <meta name="author" content={config.site.author} /> <meta name="copyright" - content={`© ${metaCopyrightYear} ${config.blog.author}`} + content={`© ${metaCopyrightYear} ${config.site.author}`} /> <meta name="description" content={metaDescription} /> {metaKeywords && metaKeywords.length !== 0 && @@ -41,7 +43,7 @@ export default function PageLayout( <meta property="og:type" content="article" /> <meta property="og:title" content={metaTitle} /> <meta property="og:description" content={metaDescription} /> - <meta property="og:site_name" content={config.blog.siteName} /> + <meta property="og:site_name" content={config.sites[site].siteName} /> <meta property="og:locale" content="ja_JP" /> {/* https://b.hatena.ne.jp/help/entry/nocomment */} <meta name="Hatena::Bookmark" content="nocomment" /> diff --git a/services/nuldoc/nuldoc-src/components/SlidesGlobalHeader.tsx b/services/nuldoc/nuldoc-src/components/SlidesGlobalHeader.tsx index f7727eac..4d932407 100644 --- a/services/nuldoc/nuldoc-src/components/SlidesGlobalHeader.tsx +++ b/services/nuldoc/nuldoc-src/components/SlidesGlobalHeader.tsx @@ -5,7 +5,7 @@ export default function GlobalHeader({ config }: { config: Config }) { <header className="header"> <div className="site-logo"> <a href={`https://${config.sites.default.fqdn}/`}> - {config.blog.siteName} + nsfisis.dev </a> </div> <nav className="nav"> diff --git a/services/nuldoc/nuldoc-src/config.ts b/services/nuldoc/nuldoc-src/config.ts index e6af58ca..95d79415 100644 --- a/services/nuldoc/nuldoc-src/config.ts +++ b/services/nuldoc/nuldoc-src/config.ts @@ -14,25 +14,28 @@ const ConfigSchema = z.object({ }), }), site: z.object({ + author: z.string(), copyrightYear: z.number(), }), sites: z.object({ default: z.object({ fqdn: z.string(), + siteName: z.string(), }), about: z.object({ fqdn: z.string(), + siteName: z.string(), }), blog: z.object({ fqdn: z.string(), + siteName: z.string(), }), slides: z.object({ fqdn: z.string(), + siteName: z.string(), }), }), blog: z.object({ - author: z.string(), - siteName: z.string(), postsPerPage: z.number().default(10), tagLabels: z.record(z.string(), z.string()), }), diff --git a/services/nuldoc/nuldoc-src/generators/atom.ts b/services/nuldoc/nuldoc-src/generators/atom.ts index bcd9ba03..dc62da9a 100644 --- a/services/nuldoc/nuldoc-src/generators/atom.ts +++ b/services/nuldoc/nuldoc-src/generators/atom.ts @@ -60,7 +60,7 @@ export async function generateFeedPageFromEntries( }); const feedPath = `${alternateLink}${BASE_NAME}`; const feed: Feed = { - author: config.blog.author, + author: config.site.author, icon: `https://${config.sites[site].fqdn}/favicon.svg`, id: `tag:${ config.sites[site].fqdn diff --git a/services/nuldoc/nuldoc-src/pages/AboutPage.tsx b/services/nuldoc/nuldoc-src/pages/AboutPage.tsx index 010692dd..d0397c1c 100644 --- a/services/nuldoc/nuldoc-src/pages/AboutPage.tsx +++ b/services/nuldoc/nuldoc-src/pages/AboutPage.tsx @@ -15,7 +15,8 @@ export default function AboutPage( <PageLayout metaCopyrightYear={config.site.copyrightYear} metaDescription="このサイトの著者について" - metaTitle={`About|${config.blog.siteName}`} + metaTitle={`About|${config.sites.about.siteName}`} + site="about" config={config} > <body className="single"> diff --git a/services/nuldoc/nuldoc-src/pages/HomePage.tsx b/services/nuldoc/nuldoc-src/pages/HomePage.tsx index ae1d069f..a2cbdd15 100644 --- a/services/nuldoc/nuldoc-src/pages/HomePage.tsx +++ b/services/nuldoc/nuldoc-src/pages/HomePage.tsx @@ -7,9 +7,10 @@ export default function HomePage(config: Config) { return ( <PageLayout metaCopyrightYear={config.site.copyrightYear} - metaDescription="nsfisis のブログサイト" - metaTitle={config.blog.siteName} + metaDescription="nsfisis のサイト" + metaTitle={config.sites.default.siteName} metaAtomFeedHref={`https://${config.sites.default.fqdn}/atom.xml`} + site="default" config={config} > <body className="single"> diff --git a/services/nuldoc/nuldoc-src/pages/NotFoundPage.tsx b/services/nuldoc/nuldoc-src/pages/NotFoundPage.tsx index ac105e80..11ce518c 100644 --- a/services/nuldoc/nuldoc-src/pages/NotFoundPage.tsx +++ b/services/nuldoc/nuldoc-src/pages/NotFoundPage.tsx @@ -14,7 +14,8 @@ export default function NotFoundPage( <PageLayout metaCopyrightYear={config.site.copyrightYear} metaDescription="リクエストされたページが見つかりません" - metaTitle={`Page Not Found|${config.blog.siteName}`} + metaTitle={`Page Not Found|${config.sites[site].siteName}`} + site={site} config={config} > <body className="single"> diff --git a/services/nuldoc/nuldoc-src/pages/PostListPage.tsx b/services/nuldoc/nuldoc-src/pages/PostListPage.tsx index 549eb979..5ed9696d 100644 --- a/services/nuldoc/nuldoc-src/pages/PostListPage.tsx +++ b/services/nuldoc/nuldoc-src/pages/PostListPage.tsx @@ -15,7 +15,8 @@ export default function PostListPage( const pageTitle = "投稿一覧"; const pageInfoSuffix = ` (${currentPage}ページ目)`; - const metaTitle = `${pageTitle}${pageInfoSuffix}|${config.blog.siteName}`; + const metaTitle = + `${pageTitle}${pageInfoSuffix}|${config.sites.blog.siteName}`; const metaDescription = `投稿した記事の一覧${pageInfoSuffix}`; return ( @@ -24,6 +25,7 @@ export default function PostListPage( metaDescription={metaDescription} metaTitle={metaTitle} metaAtomFeedHref={`https://${config.sites.blog.fqdn}/posts/atom.xml`} + site="blog" config={config} > <body className="list"> diff --git a/services/nuldoc/nuldoc-src/pages/PostPage.tsx b/services/nuldoc/nuldoc-src/pages/PostPage.tsx index 60b28116..beebdb37 100644 --- a/services/nuldoc/nuldoc-src/pages/PostPage.tsx +++ b/services/nuldoc/nuldoc-src/pages/PostPage.tsx @@ -17,8 +17,9 @@ export default function PostPage( metaCopyrightYear={getPostPublishedDate(doc).year} metaDescription={doc.description} metaKeywords={doc.tags.map((slug) => getTagLabel(config, slug))} - metaTitle={`${doc.title}|${config.blog.siteName}`} + metaTitle={`${doc.title}|${config.sites.blog.siteName}`} requiresSyntaxHighlight + site="blog" config={config} > <body className="single"> diff --git a/services/nuldoc/nuldoc-src/pages/SlideListPage.tsx b/services/nuldoc/nuldoc-src/pages/SlideListPage.tsx index 0b8d853d..dc216eb7 100644 --- a/services/nuldoc/nuldoc-src/pages/SlideListPage.tsx +++ b/services/nuldoc/nuldoc-src/pages/SlideListPage.tsx @@ -17,8 +17,9 @@ export default function SlideListPage( <PageLayout metaCopyrightYear={config.site.copyrightYear} metaDescription="登壇したイベントで使用したスライドの一覧" - metaTitle={`${pageTitle}|${config.blog.siteName}`} + metaTitle={`${pageTitle}|${config.sites.slides.siteName}`} metaAtomFeedHref={`https://${config.sites.slides.fqdn}/slides/atom.xml`} + site="slides" config={config} > <body className="list"> diff --git a/services/nuldoc/nuldoc-src/pages/SlidePage.tsx b/services/nuldoc/nuldoc-src/pages/SlidePage.tsx index 3c8dce3d..53944dfe 100644 --- a/services/nuldoc/nuldoc-src/pages/SlidePage.tsx +++ b/services/nuldoc/nuldoc-src/pages/SlidePage.tsx @@ -16,8 +16,9 @@ export default function SlidePage( metaCopyrightYear={getPostPublishedDate(slide).year} metaDescription={slide.title} metaKeywords={slide.tags.map((slug) => getTagLabel(config, slug))} - metaTitle={`${slide.event} (${slide.talkType})|${config.blog.siteName}`} + metaTitle={`${slide.event} (${slide.talkType})|${config.sites.slides.siteName}`} requiresSyntaxHighlight + site="slides" config={config} > <body className="single"> diff --git a/services/nuldoc/nuldoc-src/pages/TagListPage.tsx b/services/nuldoc/nuldoc-src/pages/TagListPage.tsx index c33f3494..3ee58f30 100644 --- a/services/nuldoc/nuldoc-src/pages/TagListPage.tsx +++ b/services/nuldoc/nuldoc-src/pages/TagListPage.tsx @@ -16,7 +16,8 @@ export default function TagListPage( <PageLayout metaCopyrightYear={config.site.copyrightYear} metaDescription="タグの一覧" - metaTitle={`${pageTitle}|${config.blog.siteName}`} + metaTitle={`${pageTitle}|${config.sites[site].siteName}`} + site={site} config={config} > <body className="list"> diff --git a/services/nuldoc/nuldoc-src/pages/TagPage.tsx b/services/nuldoc/nuldoc-src/pages/TagPage.tsx index 49f689e7..6c641725 100644 --- a/services/nuldoc/nuldoc-src/pages/TagPage.tsx +++ b/services/nuldoc/nuldoc-src/pages/TagPage.tsx @@ -22,10 +22,11 @@ export default function TagPage( metaCopyrightYear={getPostPublishedDate(pages[pages.length - 1]).year} metaDescription={`タグ「${tagLabel}」のついた記事またはスライドの一覧`} metaKeywords={[tagLabel]} - metaTitle={`${pageTitle}|${config.blog.siteName}`} + metaTitle={`${pageTitle}|${config.sites[site].siteName}`} metaAtomFeedHref={`https://${ config.sites[site].fqdn }/tags/${tagSlug}/atom.xml`} + site={site} config={config} > <body className="list"> diff --git a/services/nuldoc/nuldoc.toml b/services/nuldoc/nuldoc.toml index d8b5943c..5c9d60ae 100644 --- a/services/nuldoc/nuldoc.toml +++ b/services/nuldoc/nuldoc.toml @@ -7,23 +7,26 @@ staticDir = "/static" indentWidth = 2 [site] +author = "nsfisis" copyrightYear = 2021 [sites.default] fqdn = "nsfisis.dev" +siteName = "nsfisis.dev" [sites.about] fqdn = "about.nsfisis.dev" +siteName = "nsfisis.dev" [sites.blog] fqdn = "blog.nsfisis.dev" +siteName = "REPL: Rest-Eat-Program Loop" [sites.slides] fqdn = "slides.nsfisis.dev" +siteName = "nsfisis.dev" [blog] -author = "nsfisis" -siteName = "REPL: Rest-Eat-Program Loop" postsPerPage = 10 [blog.tagLabels] diff --git a/services/nuldoc/public/about/404.html b/services/nuldoc/public/about/404.html index 633b3ed9..4e48ba79 100644 --- a/services/nuldoc/public/about/404.html +++ b/services/nuldoc/public/about/404.html @@ -7,19 +7,19 @@ <meta name="copyright" content="© 2021 nsfisis"> <meta name="description" content="リクエストされたページが見つかりません"> <meta property="og:type" content="article"> - <meta property="og:title" content="Page Not Found|REPL: Rest-Eat-Program Loop"> + <meta property="og:title" content="Page Not Found|nsfisis.dev"> <meta property="og:description" content="リクエストされたページが見つかりません"> - <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> + <meta property="og:site_name" content="nsfisis.dev"> <meta property="og:locale" content="ja_JP"> <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> - <title>Page Not Found|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <title>Page Not Found|nsfisis.dev</title> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> </div> </header> <main class="main"> diff --git a/services/nuldoc/public/about/index.html b/services/nuldoc/public/about/index.html index af5fd853..bf797482 100644 --- a/services/nuldoc/public/about/index.html +++ b/services/nuldoc/public/about/index.html @@ -7,19 +7,19 @@ <meta name="copyright" content="© 2021 nsfisis"> <meta name="description" content="このサイトの著者について"> <meta property="og:type" content="article"> - <meta property="og:title" content="About|REPL: Rest-Eat-Program Loop"> + <meta property="og:title" content="About|nsfisis.dev"> <meta property="og:description" content="このサイトの著者について"> - <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> + <meta property="og:site_name" content="nsfisis.dev"> <meta property="og:locale" content="ja_JP"> <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> - <title>About|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <title>About|nsfisis.dev</title> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> </div> </header> <main class="main"> diff --git a/services/nuldoc/public/about/style.css b/services/nuldoc/public/about/style.css index d20faf46..8101fb6b 100644 --- a/services/nuldoc/public/about/style.css +++ b/services/nuldoc/public/about/style.css @@ -54,6 +54,12 @@ body > footer { color: #fff; } +.site-name { + font-size: 1.3rem; + font-weight: bold; + color: #fff; +} + .nav { padding: 0; margin: 0.5rem 0 0; diff --git a/services/nuldoc/public/blog/404.html b/services/nuldoc/public/blog/404.html index db64cf99..095f8384 100644 --- a/services/nuldoc/public/blog/404.html +++ b/services/nuldoc/public/blog/404.html @@ -14,12 +14,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>Page Not Found|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2/index.html b/services/nuldoc/public/blog/posts/2/index.html index 2323d7b4..322bf93c 100644 --- a/services/nuldoc/public/blog/posts/2/index.html +++ b/services/nuldoc/public/blog/posts/2/index.html @@ -15,12 +15,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/posts/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>投稿一覧 (2ページ目)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2021-03-05/my-first-post/index.html b/services/nuldoc/public/blog/posts/2021-03-05/my-first-post/index.html index 132ebbb3..426661ca 100644 --- a/services/nuldoc/public/blog/posts/2021-03-05/my-first-post/index.html +++ b/services/nuldoc/public/blog/posts/2021-03-05/my-first-post/index.html @@ -14,12 +14,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>My First Post|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2021-03-30/phperkaigi-2021/index.html b/services/nuldoc/public/blog/posts/2021-03-30/phperkaigi-2021/index.html index aff56880..eeb1a40a 100644 --- a/services/nuldoc/public/blog/posts/2021-03-30/phperkaigi-2021/index.html +++ b/services/nuldoc/public/blog/posts/2021-03-30/phperkaigi-2021/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHPerKaigi 2021|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes/index.html b/services/nuldoc/public/blog/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes/index.html index 1f928bd6..92220a23 100644 --- a/services/nuldoc/public/blog/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes/index.html +++ b/services/nuldoc/public/blog/posts/2021-10-02/cpp-you-can-use-keywords-in-attributes/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【C++】 属性構文の属性名にはキーワードが使える|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2021-10-02/python-unbound-local-error/index.html b/services/nuldoc/public/blog/posts/2021-10-02/python-unbound-local-error/index.html index df6b0946..4a57431a 100644 --- a/services/nuldoc/public/blog/posts/2021-10-02/python-unbound-local-error/index.html +++ b/services/nuldoc/public/blog/posts/2021-10-02/python-unbound-local-error/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【Python】 クロージャとUnboundLocalError: local variable 'x' referenced before assignment|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2021-10-02/ruby-detect-running-implementation/index.html b/services/nuldoc/public/blog/posts/2021-10-02/ruby-detect-running-implementation/index.html index 58309aab..3174807e 100644 --- a/services/nuldoc/public/blog/posts/2021-10-02/ruby-detect-running-implementation/index.html +++ b/services/nuldoc/public/blog/posts/2021-10-02/ruby-detect-running-implementation/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【Ruby】 自身を実行している処理系の種類を判定する|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2021-10-02/ruby-then-keyword-and-case-in/index.html b/services/nuldoc/public/blog/posts/2021-10-02/ruby-then-keyword-and-case-in/index.html index 77473839..6e49bd61 100644 --- a/services/nuldoc/public/blog/posts/2021-10-02/ruby-then-keyword-and-case-in/index.html +++ b/services/nuldoc/public/blog/posts/2021-10-02/ruby-then-keyword-and-case-in/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【Ruby】 then キーワードと case in|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2021-10-02/rust-where-are-primitive-types-from/index.html b/services/nuldoc/public/blog/posts/2021-10-02/rust-where-are-primitive-types-from/index.html index c3681341..ba6ab5c8 100644 --- a/services/nuldoc/public/blog/posts/2021-10-02/rust-where-are-primitive-types-from/index.html +++ b/services/nuldoc/public/blog/posts/2021-10-02/rust-where-are-primitive-types-from/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>Rust のプリミティブ型はどこからやって来るか|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre/index.html b/services/nuldoc/public/blog/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre/index.html index 1ab9d9d1..10848d39 100644 --- a/services/nuldoc/public/blog/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre/index.html +++ b/services/nuldoc/public/blog/posts/2021-10-02/vim-difference-between-autocmd-bufwrite-and-bufwritepre/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【Vim】 autocmd events の BufWrite/BufWritePre の違い|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2021-10-02/vim-swap-order-of-selected-lines/index.html b/services/nuldoc/public/blog/posts/2021-10-02/vim-swap-order-of-selected-lines/index.html index 564b1612..534e8f72 100644 --- a/services/nuldoc/public/blog/posts/2021-10-02/vim-swap-order-of-selected-lines/index.html +++ b/services/nuldoc/public/blog/posts/2021-10-02/vim-swap-order-of-selected-lines/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>Vimで選択した行の順番を入れ替える|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2022-04-09/phperkaigi-2022-tokens/index.html b/services/nuldoc/public/blog/posts/2022-04-09/phperkaigi-2022-tokens/index.html index 83ceb579..327b363f 100644 --- a/services/nuldoc/public/blog/posts/2022-04-09/phperkaigi-2022-tokens/index.html +++ b/services/nuldoc/public/blog/posts/2022-04-09/phperkaigi-2022-tokens/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHPerKaigi 2022 トークン問題の解説|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2022-04-24/term-banner-write-tool-showing-banner-in-terminal/index.html b/services/nuldoc/public/blog/posts/2022-04-24/term-banner-write-tool-showing-banner-in-terminal/index.html index 55464de4..4b524ffa 100644 --- a/services/nuldoc/public/blog/posts/2022-04-24/term-banner-write-tool-showing-banner-in-terminal/index.html +++ b/services/nuldoc/public/blog/posts/2022-04-24/term-banner-write-tool-showing-banner-in-terminal/index.html @@ -14,12 +14,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>term-banner: ターミナルにバナーを表示するツールを書いた|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2022-05-01/phperkaigi-2022/index.html b/services/nuldoc/public/blog/posts/2022-05-01/phperkaigi-2022/index.html index 6c0bcaec..6cf87978 100644 --- a/services/nuldoc/public/blog/posts/2022-05-01/phperkaigi-2022/index.html +++ b/services/nuldoc/public/blog/posts/2022-05-01/phperkaigi-2022/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHPerKaigi 2022|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2022-08-27/php-conference-okinawa-code-golf/index.html b/services/nuldoc/public/blog/posts/2022-08-27/php-conference-okinawa-code-golf/index.html index 6f6ceaf6..f0c822cd 100644 --- a/services/nuldoc/public/blog/posts/2022-08-27/php-conference-okinawa-code-golf/index.html +++ b/services/nuldoc/public/blog/posts/2022-08-27/php-conference-okinawa-code-golf/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP カンファレンス沖縄で出題されたコードゴルフの問題を解いてみた|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2022-08-31/support-for-communty-is-employee-benefits/index.html b/services/nuldoc/public/blog/posts/2022-08-31/support-for-communty-is-employee-benefits/index.html index 76f85378..5f5cc7bb 100644 --- a/services/nuldoc/public/blog/posts/2022-08-31/support-for-communty-is-employee-benefits/index.html +++ b/services/nuldoc/public/blog/posts/2022-08-31/support-for-communty-is-employee-benefits/index.html @@ -14,12 +14,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>弊社の PHP Foundation への寄付に寄せて|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2022-09-29/write-fizzbuzz-in-php-2-letters-per-line/index.html b/services/nuldoc/public/blog/posts/2022-09-29/write-fizzbuzz-in-php-2-letters-per-line/index.html index 99970d30..fe172be5 100644 --- a/services/nuldoc/public/blog/posts/2022-09-29/write-fizzbuzz-in-php-2-letters-per-line/index.html +++ b/services/nuldoc/public/blog/posts/2022-09-29/write-fizzbuzz-in-php-2-letters-per-line/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【PHP】 fizzbuzz を書く。1行あたり2文字で。|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2022-10-23/phperkaigi-2023-unused-token-quiz-1/index.html b/services/nuldoc/public/blog/posts/2022-10-23/phperkaigi-2023-unused-token-quiz-1/index.html index 766b9fcb..d2804003 100644 --- a/services/nuldoc/public/blog/posts/2022-10-23/phperkaigi-2023-unused-token-quiz-1/index.html +++ b/services/nuldoc/public/blog/posts/2022-10-23/phperkaigi-2023-unused-token-quiz-1/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHPerKaigi 2023: ボツになったトークン問題 その 1|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2022-10-28/setup-server-for-this-site/index.html b/services/nuldoc/public/blog/posts/2022-10-28/setup-server-for-this-site/index.html index 63dd7b85..f9be735c 100644 --- a/services/nuldoc/public/blog/posts/2022-10-28/setup-server-for-this-site/index.html +++ b/services/nuldoc/public/blog/posts/2022-10-28/setup-server-for-this-site/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【備忘録】 このサイト用の VPS をセットアップしたときのメモ|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2022-11-19/phperkaigi-2023-unused-token-quiz-2/index.html b/services/nuldoc/public/blog/posts/2022-11-19/phperkaigi-2023-unused-token-quiz-2/index.html index 938c61fa..2238ad5e 100644 --- a/services/nuldoc/public/blog/posts/2022-11-19/phperkaigi-2023-unused-token-quiz-2/index.html +++ b/services/nuldoc/public/blog/posts/2022-11-19/phperkaigi-2023-unused-token-quiz-2/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHPerKaigi 2023: ボツになったトークン問題 その 2|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2023-01-10/phperkaigi-2023-unused-token-quiz-3/index.html b/services/nuldoc/public/blog/posts/2023-01-10/phperkaigi-2023-unused-token-quiz-3/index.html index 56f3328a..f9b87987 100644 --- a/services/nuldoc/public/blog/posts/2023-01-10/phperkaigi-2023-unused-token-quiz-3/index.html +++ b/services/nuldoc/public/blog/posts/2023-01-10/phperkaigi-2023-unused-token-quiz-3/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHPerKaigi 2023: ボツになったトークン問題 その 3|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2023-03-10/rewrite-this-blog-generator/index.html b/services/nuldoc/public/blog/posts/2023-03-10/rewrite-this-blog-generator/index.html index 022189ed..3936a3d5 100644 --- a/services/nuldoc/public/blog/posts/2023-03-10/rewrite-this-blog-generator/index.html +++ b/services/nuldoc/public/blog/posts/2023-03-10/rewrite-this-blog-generator/index.html @@ -14,12 +14,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>このブログのジェネレータを書き直した|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2023-04-01/implementation-of-minimal-png-image-encoder/index.html b/services/nuldoc/public/blog/posts/2023-04-01/implementation-of-minimal-png-image-encoder/index.html index d9be0541..a6b0388c 100644 --- a/services/nuldoc/public/blog/posts/2023-04-01/implementation-of-minimal-png-image-encoder/index.html +++ b/services/nuldoc/public/blog/posts/2023-04-01/implementation-of-minimal-png-image-encoder/index.html @@ -14,12 +14,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PNG 画像の最小構成エンコーダを実装する|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2023-04-04/phperkaigi-2023-report/index.html b/services/nuldoc/public/blog/posts/2023-04-04/phperkaigi-2023-report/index.html index d5805f1f..02f093aa 100644 --- a/services/nuldoc/public/blog/posts/2023-04-04/phperkaigi-2023-report/index.html +++ b/services/nuldoc/public/blog/posts/2023-04-04/phperkaigi-2023-report/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHPerKaigi 2023 参加レポ|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2023-06-25/phpconfuk-2023-report/index.html b/services/nuldoc/public/blog/posts/2023-06-25/phpconfuk-2023-report/index.html index 105837d6..950ef631 100644 --- a/services/nuldoc/public/blog/posts/2023-06-25/phpconfuk-2023-report/index.html +++ b/services/nuldoc/public/blog/posts/2023-06-25/phpconfuk-2023-report/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP カンファレンス福岡 2023 参加レポ|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2023-10-02/compile-php-runtime-to-wasm/index.html b/services/nuldoc/public/blog/posts/2023-10-02/compile-php-runtime-to-wasm/index.html index e8137374..d84b104b 100644 --- a/services/nuldoc/public/blog/posts/2023-10-02/compile-php-runtime-to-wasm/index.html +++ b/services/nuldoc/public/blog/posts/2023-10-02/compile-php-runtime-to-wasm/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP の処理系を Emscripten で WebAssembly にコンパイルする|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2023-10-13/i-entered-the-open-university-of-japan/index.html b/services/nuldoc/public/blog/posts/2023-10-13/i-entered-the-open-university-of-japan/index.html index 5edd7c45..b91ccc08 100644 --- a/services/nuldoc/public/blog/posts/2023-10-13/i-entered-the-open-university-of-japan/index.html +++ b/services/nuldoc/public/blog/posts/2023-10-13/i-entered-the-open-university-of-japan/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>放送大学に入学しました|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2023-12-03/isucon-13/index.html b/services/nuldoc/public/blog/posts/2023-12-03/isucon-13/index.html index 46e39d07..edd399ee 100644 --- a/services/nuldoc/public/blog/posts/2023-12-03/isucon-13/index.html +++ b/services/nuldoc/public/blog/posts/2023-12-03/isucon-13/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>ISUCON 13 に参加した|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2023-12-31/2023-reflections/index.html b/services/nuldoc/public/blog/posts/2023-12-31/2023-reflections/index.html index be202f6b..8f8a85f2 100644 --- a/services/nuldoc/public/blog/posts/2023-12-31/2023-reflections/index.html +++ b/services/nuldoc/public/blog/posts/2023-12-31/2023-reflections/index.html @@ -14,12 +14,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>2023年の振り返り|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2024-01-10/neovim-insert-namespace-declaration-to-empty-php-file/index.html b/services/nuldoc/public/blog/posts/2024-01-10/neovim-insert-namespace-declaration-to-empty-php-file/index.html index 0ba01409..bdcb20dc 100644 --- a/services/nuldoc/public/blog/posts/2024-01-10/neovim-insert-namespace-declaration-to-empty-php-file/index.html +++ b/services/nuldoc/public/blog/posts/2024-01-10/neovim-insert-namespace-declaration-to-empty-php-file/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【Neovim】 空の PHP ファイルに namespace 宣言を挿入する|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2024-02-03/install-wireguard-on-personal-server/index.html b/services/nuldoc/public/blog/posts/2024-02-03/install-wireguard-on-personal-server/index.html index 5bc67cd6..f01228f3 100644 --- a/services/nuldoc/public/blog/posts/2024-02-03/install-wireguard-on-personal-server/index.html +++ b/services/nuldoc/public/blog/posts/2024-02-03/install-wireguard-on-personal-server/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【備忘録】 個人用サーバに WireGuard を導入する|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2024-02-10/yapcjapan-2024-report/index.html b/services/nuldoc/public/blog/posts/2024-02-10/yapcjapan-2024-report/index.html index 8ad41941..10182db4 100644 --- a/services/nuldoc/public/blog/posts/2024-02-10/yapcjapan-2024-report/index.html +++ b/services/nuldoc/public/blog/posts/2024-02-10/yapcjapan-2024-report/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>YAPC::Hiroshima 2024 参加レポ|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2024-02-22/phpkansai-2024-report/index.html b/services/nuldoc/public/blog/posts/2024-02-22/phpkansai-2024-report/index.html index 1ed9fa81..f23867ca 100644 --- a/services/nuldoc/public/blog/posts/2024-02-22/phpkansai-2024-report/index.html +++ b/services/nuldoc/public/blog/posts/2024-02-22/phpkansai-2024-report/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHPカンファレンス関西 2024 参加レポ|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2024-03-17/phperkaigi-2024-report/index.html b/services/nuldoc/public/blog/posts/2024-03-17/phperkaigi-2024-report/index.html index b29c222b..eb8af8c3 100644 --- a/services/nuldoc/public/blog/posts/2024-03-17/phperkaigi-2024-report/index.html +++ b/services/nuldoc/public/blog/posts/2024-03-17/phperkaigi-2024-report/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHPerKaigi 2024 参加レポ|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2024-03-20/my-bucket-list/index.html b/services/nuldoc/public/blog/posts/2024-03-20/my-bucket-list/index.html index 9d4a23d4..fb4639fa 100644 --- a/services/nuldoc/public/blog/posts/2024-03-20/my-bucket-list/index.html +++ b/services/nuldoc/public/blog/posts/2024-03-20/my-bucket-list/index.html @@ -14,12 +14,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>死ぬまでに作る自作○○一覧あるいは人生の TODO リスト|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2024-04-14/phpcon-odawara-2024-report/index.html b/services/nuldoc/public/blog/posts/2024-04-14/phpcon-odawara-2024-report/index.html index e89a07a1..c09519c8 100644 --- a/services/nuldoc/public/blog/posts/2024-04-14/phpcon-odawara-2024-report/index.html +++ b/services/nuldoc/public/blog/posts/2024-04-14/phpcon-odawara-2024-report/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP カンファレンス小田原 2024 参加レポ|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2024-04-21/pipefail-option-in-gitlab-ci-cd/index.html b/services/nuldoc/public/blog/posts/2024-04-21/pipefail-option-in-gitlab-ci-cd/index.html index 04d8a97f..3986f750 100644 --- a/services/nuldoc/public/blog/posts/2024-04-21/pipefail-option-in-gitlab-ci-cd/index.html +++ b/services/nuldoc/public/blog/posts/2024-04-21/pipefail-option-in-gitlab-ci-cd/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【GitLab】 GitLab CI/CD 上での bash/sh は pipefail が有効になっている|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2024-04-29/zsh-file-completion-for-composer-custom-commands/index.html b/services/nuldoc/public/blog/posts/2024-04-29/zsh-file-completion-for-composer-custom-commands/index.html index fa821cca..8160702d 100644 --- a/services/nuldoc/public/blog/posts/2024-04-29/zsh-file-completion-for-composer-custom-commands/index.html +++ b/services/nuldoc/public/blog/posts/2024-04-29/zsh-file-completion-for-composer-custom-commands/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【Zsh】 Composer のカスタムコマンドに対する Zsh 補完で引数にファイルを補完させる|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2024-05-11/phpconkagawa-2024-report/index.html b/services/nuldoc/public/blog/posts/2024-05-11/phpconkagawa-2024-report/index.html index afc8fcab..1487bdd4 100644 --- a/services/nuldoc/public/blog/posts/2024-05-11/phpconkagawa-2024-report/index.html +++ b/services/nuldoc/public/blog/posts/2024-05-11/phpconkagawa-2024-report/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP カンファレンス香川 2024 参加レポ|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2024-06-19/scalamatsuri-2024-report/index.html b/services/nuldoc/public/blog/posts/2024-06-19/scalamatsuri-2024-report/index.html index 90db05e9..6cf28324 100644 --- a/services/nuldoc/public/blog/posts/2024-06-19/scalamatsuri-2024-report/index.html +++ b/services/nuldoc/public/blog/posts/2024-06-19/scalamatsuri-2024-report/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>ScalaMatsuri 2024 参加レポ|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2024-07-19/reparojson-fix-only-json-formatter/index.html b/services/nuldoc/public/blog/posts/2024-07-19/reparojson-fix-only-json-formatter/index.html index 76943ca7..a5556168 100644 --- a/services/nuldoc/public/blog/posts/2024-07-19/reparojson-fix-only-json-formatter/index.html +++ b/services/nuldoc/public/blog/posts/2024-07-19/reparojson-fix-only-json-formatter/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>reparojson: 文法エラーを直すだけの JSON フォーマッタを作った|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2024-08-19/go-template-access-outer-scope-pipeline-within-with-or-range/index.html b/services/nuldoc/public/blog/posts/2024-08-19/go-template-access-outer-scope-pipeline-within-with-or-range/index.html index f14cf0ac..9ff52556 100644 --- a/services/nuldoc/public/blog/posts/2024-08-19/go-template-access-outer-scope-pipeline-within-with-or-range/index.html +++ b/services/nuldoc/public/blog/posts/2024-08-19/go-template-access-outer-scope-pipeline-within-with-or-range/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【Go】 text/template の with や range の内側から外側の "." にアクセスする|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2024-09-28/mncore-challenge-1/index.html b/services/nuldoc/public/blog/posts/2024-09-28/mncore-challenge-1/index.html index 1694b826..5111d243 100644 --- a/services/nuldoc/public/blog/posts/2024-09-28/mncore-challenge-1/index.html +++ b/services/nuldoc/public/blog/posts/2024-09-28/mncore-challenge-1/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>MN-Core Challenge #1 参加レポ|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2024-12-04/cohackpp-report/index.html b/services/nuldoc/public/blog/posts/2024-12-04/cohackpp-report/index.html index 7339530b..a72e33bc 100644 --- a/services/nuldoc/public/blog/posts/2024-12-04/cohackpp-report/index.html +++ b/services/nuldoc/public/blog/posts/2024-12-04/cohackpp-report/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>紅白ぺぱ合戦に参加&LTしました|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2024-12-33/2024-reflections/index.html b/services/nuldoc/public/blog/posts/2024-12-33/2024-reflections/index.html index 641fc810..9c8685a1 100644 --- a/services/nuldoc/public/blog/posts/2024-12-33/2024-reflections/index.html +++ b/services/nuldoc/public/blog/posts/2024-12-33/2024-reflections/index.html @@ -14,12 +14,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>2024年の振り返り|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2025-01-08/phperkaigi-2023-tokens-q1/index.html b/services/nuldoc/public/blog/posts/2025-01-08/phperkaigi-2023-tokens-q1/index.html index b6e1009f..4b9591d4 100644 --- a/services/nuldoc/public/blog/posts/2025-01-08/phperkaigi-2023-tokens-q1/index.html +++ b/services/nuldoc/public/blog/posts/2025-01-08/phperkaigi-2023-tokens-q1/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHPerKaigi 2023 トークン問題解説 (1/5)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2025-01-26/yaml-breaking-changes-between-v1-1-and-v1-2/index.html b/services/nuldoc/public/blog/posts/2025-01-26/yaml-breaking-changes-between-v1-1-and-v1-2/index.html index 4c30ded7..4fd1ebd2 100644 --- a/services/nuldoc/public/blog/posts/2025-01-26/yaml-breaking-changes-between-v1-1-and-v1-2/index.html +++ b/services/nuldoc/public/blog/posts/2025-01-26/yaml-breaking-changes-between-v1-1-and-v1-2/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【YAML】YAML 1.1 と YAML 1.2 の主な破壊的変更|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2025-02-24/phpcon-nagoya-2025-report/index.html b/services/nuldoc/public/blog/posts/2025-02-24/phpcon-nagoya-2025-report/index.html index 6bad287a..2588210a 100644 --- a/services/nuldoc/public/blog/posts/2025-02-24/phpcon-nagoya-2025-report/index.html +++ b/services/nuldoc/public/blog/posts/2025-02-24/phpcon-nagoya-2025-report/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>PHP カンファレンス名古屋 2025 参加レポ|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2025-03-27/zip-function-like-command-paste-command/index.html b/services/nuldoc/public/blog/posts/2025-03-27/zip-function-like-command-paste-command/index.html index 9ba0c126..81719287 100644 --- a/services/nuldoc/public/blog/posts/2025-03-27/zip-function-like-command-paste-command/index.html +++ b/services/nuldoc/public/blog/posts/2025-03-27/zip-function-like-command-paste-command/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>zip 関数のようなコマンド paste|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2025-03-28/http-1-1-send-multiple-same-headers/index.html b/services/nuldoc/public/blog/posts/2025-03-28/http-1-1-send-multiple-same-headers/index.html index f92441b1..193a432c 100644 --- a/services/nuldoc/public/blog/posts/2025-03-28/http-1-1-send-multiple-same-headers/index.html +++ b/services/nuldoc/public/blog/posts/2025-03-28/http-1-1-send-multiple-same-headers/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【HTTP】HTTP/1.1 で同じヘッダを2回送るとどうなるか|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2025-04-20/trick-2025-most-ruby-on-ruby-award/index.html b/services/nuldoc/public/blog/posts/2025-04-20/trick-2025-most-ruby-on-ruby-award/index.html index bead1c53..9668c972 100644 --- a/services/nuldoc/public/blog/posts/2025-04-20/trick-2025-most-ruby-on-ruby-award/index.html +++ b/services/nuldoc/public/blog/posts/2025-04-20/trick-2025-most-ruby-on-ruby-award/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>RubyKaigi 2025 の TRICK で入賞した|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2025-04-24/composer-patches-v2-does-not-require-gnu-patch-even-on-macos/index.html b/services/nuldoc/public/blog/posts/2025-04-24/composer-patches-v2-does-not-require-gnu-patch-even-on-macos/index.html index 9220cf90..ed329fe3 100644 --- a/services/nuldoc/public/blog/posts/2025-04-24/composer-patches-v2-does-not-require-gnu-patch-even-on-macos/index.html +++ b/services/nuldoc/public/blog/posts/2025-04-24/composer-patches-v2-does-not-require-gnu-patch-even-on-macos/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>【Composer】 composer-patches v2 では macOS でも GNU patch のインストールが不要になる (予定)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2025-05-05/make-tiny-self-hosted-c-compiler/index.html b/services/nuldoc/public/blog/posts/2025-05-05/make-tiny-self-hosted-c-compiler/index.html index 113f6dca..53253f7e 100644 --- a/services/nuldoc/public/blog/posts/2025-05-05/make-tiny-self-hosted-c-compiler/index.html +++ b/services/nuldoc/public/blog/posts/2025-05-05/make-tiny-self-hosted-c-compiler/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>セルフホスト可能な C コンパイラを作った|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2025-06-14/baba-is-you/index.html b/services/nuldoc/public/blog/posts/2025-06-14/baba-is-you/index.html index 9c2ef865..ade77043 100644 --- a/services/nuldoc/public/blog/posts/2025-06-14/baba-is-you/index.html +++ b/services/nuldoc/public/blog/posts/2025-06-14/baba-is-you/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>最高のパズルゲーム Baba Is You をやれ|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2025-07-15/partial-surrender-to-ebooks/index.html b/services/nuldoc/public/blog/posts/2025-07-15/partial-surrender-to-ebooks/index.html index c5b64838..c29f6822 100644 --- a/services/nuldoc/public/blog/posts/2025-07-15/partial-surrender-to-ebooks/index.html +++ b/services/nuldoc/public/blog/posts/2025-07-15/partial-surrender-to-ebooks/index.html @@ -14,12 +14,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>電子書籍への部分的降伏|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/2025-10-31/representing-single-value-with-half-open-float-interval/index.html b/services/nuldoc/public/blog/posts/2025-10-31/representing-single-value-with-half-open-float-interval/index.html index f2557169..d52f3b22 100644 --- a/services/nuldoc/public/blog/posts/2025-10-31/representing-single-value-with-half-open-float-interval/index.html +++ b/services/nuldoc/public/blog/posts/2025-10-31/representing-single-value-with-half-open-float-interval/index.html @@ -15,12 +15,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>浮動小数点数の半開区間で単一値を表現する|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/3/index.html b/services/nuldoc/public/blog/posts/3/index.html index 0f2207f8..503212a3 100644 --- a/services/nuldoc/public/blog/posts/3/index.html +++ b/services/nuldoc/public/blog/posts/3/index.html @@ -15,12 +15,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/posts/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>投稿一覧 (3ページ目)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/4/index.html b/services/nuldoc/public/blog/posts/4/index.html index 8982a17f..f07ad65d 100644 --- a/services/nuldoc/public/blog/posts/4/index.html +++ b/services/nuldoc/public/blog/posts/4/index.html @@ -15,12 +15,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/posts/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>投稿一覧 (4ページ目)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/5/index.html b/services/nuldoc/public/blog/posts/5/index.html index 343f298f..251b2cfb 100644 --- a/services/nuldoc/public/blog/posts/5/index.html +++ b/services/nuldoc/public/blog/posts/5/index.html @@ -15,12 +15,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/posts/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>投稿一覧 (5ページ目)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/6/index.html b/services/nuldoc/public/blog/posts/6/index.html index a435d3d5..2a1c1c05 100644 --- a/services/nuldoc/public/blog/posts/6/index.html +++ b/services/nuldoc/public/blog/posts/6/index.html @@ -15,12 +15,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/posts/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>投稿一覧 (6ページ目)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/posts/index.html b/services/nuldoc/public/blog/posts/index.html index 5a955d0f..5c44f198 100644 --- a/services/nuldoc/public/blog/posts/index.html +++ b/services/nuldoc/public/blog/posts/index.html @@ -15,12 +15,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/posts/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>投稿一覧 (1ページ目)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/style.css b/services/nuldoc/public/blog/style.css index d20faf46..8101fb6b 100644 --- a/services/nuldoc/public/blog/style.css +++ b/services/nuldoc/public/blog/style.css @@ -54,6 +54,12 @@ body > footer { color: #fff; } +.site-name { + font-size: 1.3rem; + font-weight: bold; + color: #fff; +} + .nav { padding: 0; margin: 0.5rem 0 0; diff --git a/services/nuldoc/public/blog/tags/c/index.html b/services/nuldoc/public/blog/tags/c/index.html index 7aaf89d1..0e7c60a5 100644 --- a/services/nuldoc/public/blog/tags/c/index.html +++ b/services/nuldoc/public/blog/tags/c/index.html @@ -16,12 +16,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/c/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「C」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/tags/ci-cd/index.html b/services/nuldoc/public/blog/tags/ci-cd/index.html index b3c22498..6fc4fa9d 100644 --- a/services/nuldoc/public/blog/tags/ci-cd/index.html +++ b/services/nuldoc/public/blog/tags/ci-cd/index.html @@ -16,12 +16,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/ci-cd/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「CI/CD」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/tags/cohackpp/index.html b/services/nuldoc/public/blog/tags/cohackpp/index.html index 02743e5e..fb1dcce2 100644 --- a/services/nuldoc/public/blog/tags/cohackpp/index.html +++ b/services/nuldoc/public/blog/tags/cohackpp/index.html @@ -16,12 +16,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/cohackpp/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「紅白ぺぱ合戦」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/tags/composer/index.html b/services/nuldoc/public/blog/tags/composer/index.html index e9f7f5c8..64041844 100644 --- a/services/nuldoc/public/blog/tags/composer/index.html +++ b/services/nuldoc/public/blog/tags/composer/index.html @@ -16,12 +16,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/composer/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「Composer」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/tags/conference/index.html b/services/nuldoc/public/blog/tags/conference/index.html index 4671f01d..3667d819 100644 --- a/services/nuldoc/public/blog/tags/conference/index.html +++ b/services/nuldoc/public/blog/tags/conference/index.html @@ -16,12 +16,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/conference/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「カンファレンス」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/tags/cpp/index.html b/services/nuldoc/public/blog/tags/cpp/index.html index 76e6c737..68e19a24 100644 --- a/services/nuldoc/public/blog/tags/cpp/index.html +++ b/services/nuldoc/public/blog/tags/cpp/index.html @@ -16,12 +16,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/cpp/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「C++」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/tags/cpp17/index.html b/services/nuldoc/public/blog/tags/cpp17/index.html index b25dc53f..3f2482ba 100644 --- a/services/nuldoc/public/blog/tags/cpp17/index.html +++ b/services/nuldoc/public/blog/tags/cpp17/index.html @@ -16,12 +16,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/cpp17/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「C++ 17」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/tags/float/index.html b/services/nuldoc/public/blog/tags/float/index.html index 3fb0d759..ba6d4d59 100644 --- a/services/nuldoc/public/blog/tags/float/index.html +++ b/services/nuldoc/public/blog/tags/float/index.html @@ -16,12 +16,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/float/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「浮動小数点数」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/tags/game/index.html b/services/nuldoc/public/blog/tags/game/index.html index c71511a9..33af8b89 100644 --- a/services/nuldoc/public/blog/tags/game/index.html +++ b/services/nuldoc/public/blog/tags/game/index.html @@ -16,12 +16,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/game/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「ゲーム」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/tags/gitlab/index.html b/services/nuldoc/public/blog/tags/gitlab/index.html index 8e8a9b60..9b44442a 100644 --- a/services/nuldoc/public/blog/tags/gitlab/index.html +++ b/services/nuldoc/public/blog/tags/gitlab/index.html @@ -16,12 +16,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/gitlab/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「GitLab」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/tags/go/index.html b/services/nuldoc/public/blog/tags/go/index.html index 692d4519..5b46644a 100644 --- a/services/nuldoc/public/blog/tags/go/index.html +++ b/services/nuldoc/public/blog/tags/go/index.html @@ -16,12 +16,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/go/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「Go」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/tags/http/index.html b/services/nuldoc/public/blog/tags/http/index.html index e5ff28ee..b1e3c6dc 100644 --- a/services/nuldoc/public/blog/tags/http/index.html +++ b/services/nuldoc/public/blog/tags/http/index.html @@ -16,12 +16,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/http/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「HTTP」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/tags/index.html b/services/nuldoc/public/blog/tags/index.html index 6af9f3ec..eca94ac0 100644 --- a/services/nuldoc/public/blog/tags/index.html +++ b/services/nuldoc/public/blog/tags/index.html @@ -14,12 +14,15 @@ <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/tags/isucon/index.html b/services/nuldoc/public/blog/tags/isucon/index.html index aaeadadf..5f669c36 100644 --- a/services/nuldoc/public/blog/tags/isucon/index.html +++ b/services/nuldoc/public/blog/tags/isucon/index.html @@ -16,12 +16,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/isucon/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「ISUCON」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/tags/macos/index.html b/services/nuldoc/public/blog/tags/macos/index.html index 52424260..f67e14ed 100644 --- a/services/nuldoc/public/blog/tags/macos/index.html +++ b/services/nuldoc/public/blog/tags/macos/index.html @@ -16,12 +16,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/macos/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「macOS」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/tags/mncore-challenge/index.html b/services/nuldoc/public/blog/tags/mncore-challenge/index.html index df40129f..79327852 100644 --- a/services/nuldoc/public/blog/tags/mncore-challenge/index.html +++ b/services/nuldoc/public/blog/tags/mncore-challenge/index.html @@ -16,12 +16,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/mncore-challenge/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「MN-Core Challenge」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/tags/neovim/index.html b/services/nuldoc/public/blog/tags/neovim/index.html index 754be8d1..dd7c9ab8 100644 --- a/services/nuldoc/public/blog/tags/neovim/index.html +++ b/services/nuldoc/public/blog/tags/neovim/index.html @@ -16,12 +16,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/neovim/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「Neovim」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/tags/note-to-self/index.html b/services/nuldoc/public/blog/tags/note-to-self/index.html index 2f7a283c..d37c7b00 100644 --- a/services/nuldoc/public/blog/tags/note-to-self/index.html +++ b/services/nuldoc/public/blog/tags/note-to-self/index.html @@ -16,12 +16,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/note-to-self/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「備忘録」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/tags/ouj/index.html b/services/nuldoc/public/blog/tags/ouj/index.html index d785c641..2ebf1ea8 100644 --- a/services/nuldoc/public/blog/tags/ouj/index.html +++ b/services/nuldoc/public/blog/tags/ouj/index.html @@ -16,12 +16,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/ouj/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「放送大学」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/tags/perl/index.html b/services/nuldoc/public/blog/tags/perl/index.html index 5f8b6ab1..d64d7d50 100644 --- a/services/nuldoc/public/blog/tags/perl/index.html +++ b/services/nuldoc/public/blog/tags/perl/index.html @@ -16,12 +16,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/perl/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「Perl」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/tags/php/index.html b/services/nuldoc/public/blog/tags/php/index.html index f590314c..67eb02fe 100644 --- a/services/nuldoc/public/blog/tags/php/index.html +++ b/services/nuldoc/public/blog/tags/php/index.html @@ -16,12 +16,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/php/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「PHP」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/tags/phpcon-nagoya/index.html b/services/nuldoc/public/blog/tags/phpcon-nagoya/index.html index dd829306..387f9561 100644 --- a/services/nuldoc/public/blog/tags/phpcon-nagoya/index.html +++ b/services/nuldoc/public/blog/tags/phpcon-nagoya/index.html @@ -16,12 +16,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/phpcon-nagoya/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「PHP カンファレンス名古屋」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/tags/phpcon-odawara/index.html b/services/nuldoc/public/blog/tags/phpcon-odawara/index.html index f19d76db..43066cad 100644 --- a/services/nuldoc/public/blog/tags/phpcon-odawara/index.html +++ b/services/nuldoc/public/blog/tags/phpcon-odawara/index.html @@ -16,12 +16,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/phpcon-odawara/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「PHP カンファレンス小田原」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/tags/phpconfuk/index.html b/services/nuldoc/public/blog/tags/phpconfuk/index.html index be720fa5..ce18a20a 100644 --- a/services/nuldoc/public/blog/tags/phpconfuk/index.html +++ b/services/nuldoc/public/blog/tags/phpconfuk/index.html @@ -16,12 +16,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/phpconfuk/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「PHP カンファレンス福岡」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/tags/phpconkagawa/index.html b/services/nuldoc/public/blog/tags/phpconkagawa/index.html index ea91bf71..8ea68f1e 100644 --- a/services/nuldoc/public/blog/tags/phpconkagawa/index.html +++ b/services/nuldoc/public/blog/tags/phpconkagawa/index.html @@ -16,12 +16,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/phpconkagawa/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「PHP カンファレンス香川」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/tags/phpconokinawa/index.html b/services/nuldoc/public/blog/tags/phpconokinawa/index.html index 1075a28a..525d689d 100644 --- a/services/nuldoc/public/blog/tags/phpconokinawa/index.html +++ b/services/nuldoc/public/blog/tags/phpconokinawa/index.html @@ -16,12 +16,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/phpconokinawa/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「PHP カンファレンス沖縄」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/tags/phperkaigi/index.html b/services/nuldoc/public/blog/tags/phperkaigi/index.html index 3802adc0..1a3cae23 100644 --- a/services/nuldoc/public/blog/tags/phperkaigi/index.html +++ b/services/nuldoc/public/blog/tags/phperkaigi/index.html @@ -16,12 +16,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/phperkaigi/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「PHPerKaigi」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/tags/phpkansai/index.html b/services/nuldoc/public/blog/tags/phpkansai/index.html index 75a8bd0a..0ee714c0 100644 --- a/services/nuldoc/public/blog/tags/phpkansai/index.html +++ b/services/nuldoc/public/blog/tags/phpkansai/index.html @@ -16,12 +16,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/phpkansai/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「PHP カンファレンス関西」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/tags/piet/index.html b/services/nuldoc/public/blog/tags/piet/index.html index ce281b3d..4664d234 100644 --- a/services/nuldoc/public/blog/tags/piet/index.html +++ b/services/nuldoc/public/blog/tags/piet/index.html @@ -16,12 +16,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/piet/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「Piet」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/tags/python/index.html b/services/nuldoc/public/blog/tags/python/index.html index 2fc865b3..a6e9dccf 100644 --- a/services/nuldoc/public/blog/tags/python/index.html +++ b/services/nuldoc/public/blog/tags/python/index.html @@ -16,12 +16,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/python/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「Python」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/tags/python3/index.html b/services/nuldoc/public/blog/tags/python3/index.html index c9f25915..f7293251 100644 --- a/services/nuldoc/public/blog/tags/python3/index.html +++ b/services/nuldoc/public/blog/tags/python3/index.html @@ -16,12 +16,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/python3/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「Python 3」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/tags/ruby/index.html b/services/nuldoc/public/blog/tags/ruby/index.html index 5db4411b..98c9824e 100644 --- a/services/nuldoc/public/blog/tags/ruby/index.html +++ b/services/nuldoc/public/blog/tags/ruby/index.html @@ -16,12 +16,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/ruby/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「Ruby」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/tags/ruby3/index.html b/services/nuldoc/public/blog/tags/ruby3/index.html index 4524c6cf..5dab5abb 100644 --- a/services/nuldoc/public/blog/tags/ruby3/index.html +++ b/services/nuldoc/public/blog/tags/ruby3/index.html @@ -16,12 +16,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/ruby3/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「Ruby 3」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/tags/rubykaigi/index.html b/services/nuldoc/public/blog/tags/rubykaigi/index.html index aa46febf..90a1b946 100644 --- a/services/nuldoc/public/blog/tags/rubykaigi/index.html +++ b/services/nuldoc/public/blog/tags/rubykaigi/index.html @@ -16,12 +16,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/rubykaigi/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「RubyKaigi」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/tags/rust/index.html b/services/nuldoc/public/blog/tags/rust/index.html index 2d4e2a34..fb1a275f 100644 --- a/services/nuldoc/public/blog/tags/rust/index.html +++ b/services/nuldoc/public/blog/tags/rust/index.html @@ -16,12 +16,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/rust/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「Rust」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/tags/scala/index.html b/services/nuldoc/public/blog/tags/scala/index.html index 3ece9122..b8230951 100644 --- a/services/nuldoc/public/blog/tags/scala/index.html +++ b/services/nuldoc/public/blog/tags/scala/index.html @@ -16,12 +16,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/scala/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「Scala」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/tags/scalamatsuri/index.html b/services/nuldoc/public/blog/tags/scalamatsuri/index.html index f3094083..f329a72a 100644 --- a/services/nuldoc/public/blog/tags/scalamatsuri/index.html +++ b/services/nuldoc/public/blog/tags/scalamatsuri/index.html @@ -16,12 +16,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/scalamatsuri/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「ScalaMatsuri」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/tags/trick/index.html b/services/nuldoc/public/blog/tags/trick/index.html index dac98300..9ef70cf3 100644 --- a/services/nuldoc/public/blog/tags/trick/index.html +++ b/services/nuldoc/public/blog/tags/trick/index.html @@ -16,12 +16,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/trick/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「TRICK」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/tags/vim/index.html b/services/nuldoc/public/blog/tags/vim/index.html index fa97b2c0..cc9e67be 100644 --- a/services/nuldoc/public/blog/tags/vim/index.html +++ b/services/nuldoc/public/blog/tags/vim/index.html @@ -16,12 +16,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/vim/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「Vim」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/tags/wasm/index.html b/services/nuldoc/public/blog/tags/wasm/index.html index 55ae8847..48f5a458 100644 --- a/services/nuldoc/public/blog/tags/wasm/index.html +++ b/services/nuldoc/public/blog/tags/wasm/index.html @@ -16,12 +16,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/wasm/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「WebAssembly」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/tags/wireguard/index.html b/services/nuldoc/public/blog/tags/wireguard/index.html index ac19c3e3..0c18987b 100644 --- a/services/nuldoc/public/blog/tags/wireguard/index.html +++ b/services/nuldoc/public/blog/tags/wireguard/index.html @@ -16,12 +16,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/wireguard/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「WireGuard」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/tags/yaml/index.html b/services/nuldoc/public/blog/tags/yaml/index.html index c27cf617..d1bd59bb 100644 --- a/services/nuldoc/public/blog/tags/yaml/index.html +++ b/services/nuldoc/public/blog/tags/yaml/index.html @@ -16,12 +16,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/yaml/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「YAML」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/tags/yapc/index.html b/services/nuldoc/public/blog/tags/yapc/index.html index d436e9c4..6d97bca0 100644 --- a/services/nuldoc/public/blog/tags/yapc/index.html +++ b/services/nuldoc/public/blog/tags/yapc/index.html @@ -16,12 +16,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/yapc/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「YAPC」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/blog/tags/zsh/index.html b/services/nuldoc/public/blog/tags/zsh/index.html index 022f1449..1beb53c6 100644 --- a/services/nuldoc/public/blog/tags/zsh/index.html +++ b/services/nuldoc/public/blog/tags/zsh/index.html @@ -16,12 +16,15 @@ <link rel="alternate" type="application/atom+xml" href="https://blog.nsfisis.dev/tags/zsh/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> <title>タグ「Zsh」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> + </div> + <div class="site-name"> + REPL: Rest-Eat-Program Loop </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/default/404.html b/services/nuldoc/public/default/404.html index 633b3ed9..4e48ba79 100644 --- a/services/nuldoc/public/default/404.html +++ b/services/nuldoc/public/default/404.html @@ -7,19 +7,19 @@ <meta name="copyright" content="© 2021 nsfisis"> <meta name="description" content="リクエストされたページが見つかりません"> <meta property="og:type" content="article"> - <meta property="og:title" content="Page Not Found|REPL: Rest-Eat-Program Loop"> + <meta property="og:title" content="Page Not Found|nsfisis.dev"> <meta property="og:description" content="リクエストされたページが見つかりません"> - <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> + <meta property="og:site_name" content="nsfisis.dev"> <meta property="og:locale" content="ja_JP"> <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> - <title>Page Not Found|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <title>Page Not Found|nsfisis.dev</title> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> </div> </header> <main class="main"> diff --git a/services/nuldoc/public/default/atom.xml b/services/nuldoc/public/default/atom.xml index 03a533e4..de43f7e1 100644 --- a/services/nuldoc/public/default/atom.xml +++ b/services/nuldoc/public/default/atom.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <feed xmlns="http://www.w3.org/2005/Atom"> <id>tag:nsfisis.dev,2021:all</id> - <title>REPL: Rest-Eat-Program Loop</title> + <title>nsfisis.dev</title> <link rel="alternate" href="https://nsfisis.dev/"></link> <link rel="self" href="https://nsfisis.dev/atom.xml"></link> <author> diff --git a/services/nuldoc/public/default/index.html b/services/nuldoc/public/default/index.html index 9570f3b5..7c53c919 100644 --- a/services/nuldoc/public/default/index.html +++ b/services/nuldoc/public/default/index.html @@ -5,22 +5,22 @@ <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="author" content="nsfisis"> <meta name="copyright" content="© 2021 nsfisis"> - <meta name="description" content="nsfisis のブログサイト"> + <meta name="description" content="nsfisis のサイト"> <meta property="og:type" content="article"> - <meta property="og:title" content="REPL: Rest-Eat-Program Loop"> - <meta property="og:description" content="nsfisis のブログサイト"> - <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> + <meta property="og:title" content="nsfisis.dev"> + <meta property="og:description" content="nsfisis のサイト"> + <meta property="og:site_name" content="nsfisis.dev"> <meta property="og:locale" content="ja_JP"> <meta name="Hatena::Bookmark" content="nocomment"> <link rel="alternate" type="application/atom+xml" href="https://nsfisis.dev/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> - <title>REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <title>nsfisis.dev</title> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> </div> </header> <main class="main"> diff --git a/services/nuldoc/public/default/style.css b/services/nuldoc/public/default/style.css index d20faf46..8101fb6b 100644 --- a/services/nuldoc/public/default/style.css +++ b/services/nuldoc/public/default/style.css @@ -54,6 +54,12 @@ body > footer { color: #fff; } +.site-name { + font-size: 1.3rem; + font-weight: bold; + color: #fff; +} + .nav { padding: 0; margin: 0.5rem 0 0; diff --git a/services/nuldoc/public/slides/404.html b/services/nuldoc/public/slides/404.html index de9da125..056975cd 100644 --- a/services/nuldoc/public/slides/404.html +++ b/services/nuldoc/public/slides/404.html @@ -7,19 +7,19 @@ <meta name="copyright" content="© 2021 nsfisis"> <meta name="description" content="リクエストされたページが見つかりません"> <meta property="og:type" content="article"> - <meta property="og:title" content="Page Not Found|REPL: Rest-Eat-Program Loop"> + <meta property="og:title" content="Page Not Found|nsfisis.dev"> <meta property="og:description" content="リクエストされたページが見つかりません"> - <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> + <meta property="og:site_name" content="nsfisis.dev"> <meta property="og:locale" content="ja_JP"> <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> - <title>Page Not Found|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <title>Page Not Found|nsfisis.dev</title> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/slides/slides/2023-01-18/phpstudy-tokyo-148/index.html b/services/nuldoc/public/slides/slides/2023-01-18/phpstudy-tokyo-148/index.html index 4a3c093c..cfbc4207 100644 --- a/services/nuldoc/public/slides/slides/2023-01-18/phpstudy-tokyo-148/index.html +++ b/services/nuldoc/public/slides/slides/2023-01-18/phpstudy-tokyo-148/index.html @@ -8,19 +8,19 @@ <meta name="description" content="明日のあなたの役に立たない PHP コーディング技法~polyglot~"> <meta name="keywords" content="PHP,PHP 勉強会@東京"> <meta property="og:type" content="article"> - <meta property="og:title" content="PHP 勉強会@東京 第148 回 (LT)|REPL: Rest-Eat-Program Loop"> + <meta property="og:title" content="PHP 勉強会@東京 第148 回 (LT)|nsfisis.dev"> <meta property="og:description" content="明日のあなたの役に立たない PHP コーディング技法~polyglot~"> - <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> + <meta property="og:site_name" content="nsfisis.dev"> <meta property="og:locale" content="ja_JP"> <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> - <title>PHP 勉強会@東京 第148 回 (LT)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <title>PHP 勉強会@東京 第148 回 (LT)|nsfisis.dev</title> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/slides/slides/2023-02-15/phpstudy-tokyo-149/index.html b/services/nuldoc/public/slides/slides/2023-02-15/phpstudy-tokyo-149/index.html index 25b5fce6..5d742de4 100644 --- a/services/nuldoc/public/slides/slides/2023-02-15/phpstudy-tokyo-149/index.html +++ b/services/nuldoc/public/slides/slides/2023-02-15/phpstudy-tokyo-149/index.html @@ -8,19 +8,19 @@ <meta name="description" content="PHPerKaigi 2023 のトークン問題でボツにした問題を供養する"> <meta name="keywords" content="PHP,PHP 勉強会@東京"> <meta property="og:type" content="article"> - <meta property="og:title" content="PHP 勉強会@東京 第149 回 (LT)|REPL: Rest-Eat-Program Loop"> + <meta property="og:title" content="PHP 勉強会@東京 第149 回 (LT)|nsfisis.dev"> <meta property="og:description" content="PHPerKaigi 2023 のトークン問題でボツにした問題を供養する"> - <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> + <meta property="og:site_name" content="nsfisis.dev"> <meta property="og:locale" content="ja_JP"> <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> - <title>PHP 勉強会@東京 第149 回 (LT)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <title>PHP 勉強会@東京 第149 回 (LT)|nsfisis.dev</title> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/slides/slides/2023-03-15/phpstudy-tokyo-150/index.html b/services/nuldoc/public/slides/slides/2023-03-15/phpstudy-tokyo-150/index.html index 06087ac9..93059860 100644 --- a/services/nuldoc/public/slides/slides/2023-03-15/phpstudy-tokyo-150/index.html +++ b/services/nuldoc/public/slides/slides/2023-03-15/phpstudy-tokyo-150/index.html @@ -8,19 +8,19 @@ <meta name="description" content="明日のあなたの役に立たない PHP コーディング技法~細長い FizzBuzz を書く~"> <meta name="keywords" content="PHP,PHP 勉強会@東京"> <meta property="og:type" content="article"> - <meta property="og:title" content="PHP 勉強会@東京 第150 回 (LT)|REPL: Rest-Eat-Program Loop"> + <meta property="og:title" content="PHP 勉強会@東京 第150 回 (LT)|nsfisis.dev"> <meta property="og:description" content="明日のあなたの役に立たない PHP コーディング技法~細長い FizzBuzz を書く~"> - <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> + <meta property="og:site_name" content="nsfisis.dev"> <meta property="og:locale" content="ja_JP"> <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> - <title>PHP 勉強会@東京 第150 回 (LT)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <title>PHP 勉強会@東京 第150 回 (LT)|nsfisis.dev</title> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/slides/slides/2023-03-24/phperkaigi-2023/index.html b/services/nuldoc/public/slides/slides/2023-03-24/phperkaigi-2023/index.html index eefe2d8d..4de3da1c 100644 --- a/services/nuldoc/public/slides/slides/2023-03-24/phperkaigi-2023/index.html +++ b/services/nuldoc/public/slides/slides/2023-03-24/phperkaigi-2023/index.html @@ -8,19 +8,19 @@ <meta name="description" content="詳説「参照」PHP の参照を完全に理解する"> <meta name="keywords" content="カンファレンス,PHP,PHPerKaigi"> <meta property="og:type" content="article"> - <meta property="og:title" content="PHPerKaigi 2023 (レギュラートーク)|REPL: Rest-Eat-Program Loop"> + <meta property="og:title" content="PHPerKaigi 2023 (レギュラートーク)|nsfisis.dev"> <meta property="og:description" content="詳説「参照」PHP の参照を完全に理解する"> - <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> + <meta property="og:site_name" content="nsfisis.dev"> <meta property="og:locale" content="ja_JP"> <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> - <title>PHPerKaigi 2023 (レギュラートーク)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <title>PHPerKaigi 2023 (レギュラートーク)|nsfisis.dev</title> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/slides/slides/2023-03-25/phperkaigi-2023-tokens/index.html b/services/nuldoc/public/slides/slides/2023-03-25/phperkaigi-2023-tokens/index.html index df136e31..9c270fd3 100644 --- a/services/nuldoc/public/slides/slides/2023-03-25/phperkaigi-2023-tokens/index.html +++ b/services/nuldoc/public/slides/slides/2023-03-25/phperkaigi-2023-tokens/index.html @@ -8,19 +8,19 @@ <meta name="description" content="PHPer チャレンジ解説 (デジタルサーカス株式会社)"> <meta name="keywords" content="カンファレンス,PHP,PHPerKaigi"> <meta property="og:type" content="article"> - <meta property="og:title" content="PHPerKaigi 2023 (トークン解説セッション)|REPL: Rest-Eat-Program Loop"> + <meta property="og:title" content="PHPerKaigi 2023 (トークン解説セッション)|nsfisis.dev"> <meta property="og:description" content="PHPer チャレンジ解説 (デジタルサーカス株式会社)"> - <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> + <meta property="og:site_name" content="nsfisis.dev"> <meta property="og:locale" content="ja_JP"> <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> - <title>PHPerKaigi 2023 (トークン解説セッション)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <title>PHPerKaigi 2023 (トークン解説セッション)|nsfisis.dev</title> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/slides/slides/2023-04-12/phpstudy-tokyo-151/index.html b/services/nuldoc/public/slides/slides/2023-04-12/phpstudy-tokyo-151/index.html index a2e0f8bb..68c2bdd9 100644 --- a/services/nuldoc/public/slides/slides/2023-04-12/phpstudy-tokyo-151/index.html +++ b/services/nuldoc/public/slides/slides/2023-04-12/phpstudy-tokyo-151/index.html @@ -8,19 +8,19 @@ <meta name="description" content="list でない array の末尾を探す"> <meta name="keywords" content="PHP,PHP 勉強会@東京"> <meta property="og:type" content="article"> - <meta property="og:title" content="PHP 勉強会@東京 第151 回 (LT)|REPL: Rest-Eat-Program Loop"> + <meta property="og:title" content="PHP 勉強会@東京 第151 回 (LT)|nsfisis.dev"> <meta property="og:description" content="list でない array の末尾を探す"> - <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> + <meta property="og:site_name" content="nsfisis.dev"> <meta property="og:locale" content="ja_JP"> <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> - <title>PHP 勉強会@東京 第151 回 (LT)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <title>PHP 勉強会@東京 第151 回 (LT)|nsfisis.dev</title> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/slides/slides/2023-06-21/phpstudy-tokyo-153/index.html b/services/nuldoc/public/slides/slides/2023-06-21/phpstudy-tokyo-153/index.html index 9460c4fb..f15df261 100644 --- a/services/nuldoc/public/slides/slides/2023-06-21/phpstudy-tokyo-153/index.html +++ b/services/nuldoc/public/slides/slides/2023-06-21/phpstudy-tokyo-153/index.html @@ -8,19 +8,19 @@ <meta name="description" content="テキストファイルの末尾には改行コードを入れよう"> <meta name="keywords" content="PHP,PHP 勉強会@東京"> <meta property="og:type" content="article"> - <meta property="og:title" content="PHP 勉強会@東京 第153 回 (LT)|REPL: Rest-Eat-Program Loop"> + <meta property="og:title" content="PHP 勉強会@東京 第153 回 (LT)|nsfisis.dev"> <meta property="og:description" content="テキストファイルの末尾には改行コードを入れよう"> - <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> + <meta property="og:site_name" content="nsfisis.dev"> <meta property="og:locale" content="ja_JP"> <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> - <title>PHP 勉強会@東京 第153 回 (LT)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <title>PHP 勉強会@東京 第153 回 (LT)|nsfisis.dev</title> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/slides/slides/2023-06-23/phpconfuk-2023-eve/index.html b/services/nuldoc/public/slides/slides/2023-06-23/phpconfuk-2023-eve/index.html index c4f7b2c3..6340a49e 100644 --- a/services/nuldoc/public/slides/slides/2023-06-23/phpconfuk-2023-eve/index.html +++ b/services/nuldoc/public/slides/slides/2023-06-23/phpconfuk-2023-eve/index.html @@ -8,19 +8,19 @@ <meta name="description" content="巨大なコードベースへ突撃するために"> <meta name="keywords" content="PHP,PHP カンファレンス福岡"> <meta property="og:type" content="article"> - <meta property="og:title" content="PHP カンファレンス福岡 2023 前夜祭 (非公式) (レギュラートーク)|REPL: Rest-Eat-Program Loop"> + <meta property="og:title" content="PHP カンファレンス福岡 2023 前夜祭 (非公式) (レギュラートーク)|nsfisis.dev"> <meta property="og:description" content="巨大なコードベースへ突撃するために"> - <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> + <meta property="og:site_name" content="nsfisis.dev"> <meta property="og:locale" content="ja_JP"> <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> - <title>PHP カンファレンス福岡 2023 前夜祭 (非公式) (レギュラートーク)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <title>PHP カンファレンス福岡 2023 前夜祭 (非公式) (レギュラートーク)|nsfisis.dev</title> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/slides/slides/2023-07-26/phpstudy-tokyo-154/index.html b/services/nuldoc/public/slides/slides/2023-07-26/phpstudy-tokyo-154/index.html index a967f66d..e0872b4d 100644 --- a/services/nuldoc/public/slides/slides/2023-07-26/phpstudy-tokyo-154/index.html +++ b/services/nuldoc/public/slides/slides/2023-07-26/phpstudy-tokyo-154/index.html @@ -8,19 +8,19 @@ <meta name="description" content="言語間で比較するエラーの通知と処理"> <meta name="keywords" content="PHP,PHP 勉強会@東京"> <meta property="og:type" content="article"> - <meta property="og:title" content="PHP 勉強会@東京 第154 回 (レギュラートーク)|REPL: Rest-Eat-Program Loop"> + <meta property="og:title" content="PHP 勉強会@東京 第154 回 (レギュラートーク)|nsfisis.dev"> <meta property="og:description" content="言語間で比較するエラーの通知と処理"> - <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> + <meta property="og:site_name" content="nsfisis.dev"> <meta property="og:locale" content="ja_JP"> <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> - <title>PHP 勉強会@東京 第154 回 (レギュラートーク)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <title>PHP 勉強会@東京 第154 回 (レギュラートーク)|nsfisis.dev</title> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/slides/slides/2023-08-24/phpstudy-tokyo-155/index.html b/services/nuldoc/public/slides/slides/2023-08-24/phpstudy-tokyo-155/index.html index 2f14a50a..f6cddc9c 100644 --- a/services/nuldoc/public/slides/slides/2023-08-24/phpstudy-tokyo-155/index.html +++ b/services/nuldoc/public/slides/slides/2023-08-24/phpstudy-tokyo-155/index.html @@ -8,19 +8,19 @@ <meta name="description" content="PHP 3.0 の処理系のソースを読んでみる"> <meta name="keywords" content="PHP,PHP 勉強会@東京"> <meta property="og:type" content="article"> - <meta property="og:title" content="PHP 勉強会@東京 第155 回 (LT)|REPL: Rest-Eat-Program Loop"> + <meta property="og:title" content="PHP 勉強会@東京 第155 回 (LT)|nsfisis.dev"> <meta property="og:description" content="PHP 3.0 の処理系のソースを読んでみる"> - <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> + <meta property="og:site_name" content="nsfisis.dev"> <meta property="og:locale" content="ja_JP"> <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> - <title>PHP 勉強会@東京 第155 回 (LT)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <title>PHP 勉強会@東京 第155 回 (LT)|nsfisis.dev</title> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/slides/slides/2023-10-25/phpstudy-tokyo-157/index.html b/services/nuldoc/public/slides/slides/2023-10-25/phpstudy-tokyo-157/index.html index 54be08b9..c646dd6e 100644 --- a/services/nuldoc/public/slides/slides/2023-10-25/phpstudy-tokyo-157/index.html +++ b/services/nuldoc/public/slides/slides/2023-10-25/phpstudy-tokyo-157/index.html @@ -8,19 +8,19 @@ <meta name="description" content="PHP コードを隔離された環境で安全に動かす (on WebAssembly)"> <meta name="keywords" content="PHP,PHP 勉強会@東京"> <meta property="og:type" content="article"> - <meta property="og:title" content="PHP 勉強会@東京 第157 回 (LT)|REPL: Rest-Eat-Program Loop"> + <meta property="og:title" content="PHP 勉強会@東京 第157 回 (LT)|nsfisis.dev"> <meta property="og:description" content="PHP コードを隔離された環境で安全に動かす (on WebAssembly)"> - <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> + <meta property="og:site_name" content="nsfisis.dev"> <meta property="og:locale" content="ja_JP"> <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> - <title>PHP 勉強会@東京 第157 回 (LT)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <title>PHP 勉強会@東京 第157 回 (LT)|nsfisis.dev</title> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/slides/slides/2024-01-24/phpstudy-tokyo-160/index.html b/services/nuldoc/public/slides/slides/2024-01-24/phpstudy-tokyo-160/index.html index ae854f7e..2b955395 100644 --- a/services/nuldoc/public/slides/slides/2024-01-24/phpstudy-tokyo-160/index.html +++ b/services/nuldoc/public/slides/slides/2024-01-24/phpstudy-tokyo-160/index.html @@ -8,19 +8,19 @@ <meta name="description" content="PHPStan の力で Algebraic Data Types を実現する"> <meta name="keywords" content="PHP,PHP 勉強会@東京"> <meta property="og:type" content="article"> - <meta property="og:title" content="PHP 勉強会@東京 第160 回 (レギュラートーク)|REPL: Rest-Eat-Program Loop"> + <meta property="og:title" content="PHP 勉強会@東京 第160 回 (レギュラートーク)|nsfisis.dev"> <meta property="og:description" content="PHPStan の力で Algebraic Data Types を実現する"> - <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> + <meta property="og:site_name" content="nsfisis.dev"> <meta property="og:locale" content="ja_JP"> <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> - <title>PHP 勉強会@東京 第160 回 (レギュラートーク)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <title>PHP 勉強会@東京 第160 回 (レギュラートーク)|nsfisis.dev</title> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/slides/slides/2024-03-08/phperkaigi-2024/index.html b/services/nuldoc/public/slides/slides/2024-03-08/phperkaigi-2024/index.html index 1689e50e..5811ca04 100644 --- a/services/nuldoc/public/slides/slides/2024-03-08/phperkaigi-2024/index.html +++ b/services/nuldoc/public/slides/slides/2024-03-08/phperkaigi-2024/index.html @@ -8,19 +8,19 @@ <meta name="description" content="WebAssembly を理解する 〜VM の作成を通して〜"> <meta name="keywords" content="カンファレンス,PHP,PHPerKaigi,WebAssembly"> <meta property="og:type" content="article"> - <meta property="og:title" content="PHPerKaigi 2024 (レギュラートーク (40分))|REPL: Rest-Eat-Program Loop"> + <meta property="og:title" content="PHPerKaigi 2024 (レギュラートーク (40分))|nsfisis.dev"> <meta property="og:description" content="WebAssembly を理解する 〜VM の作成を通して〜"> - <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> + <meta property="og:site_name" content="nsfisis.dev"> <meta property="og:locale" content="ja_JP"> <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> - <title>PHPerKaigi 2024 (レギュラートーク (40分))|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <title>PHPerKaigi 2024 (レギュラートーク (40分))|nsfisis.dev</title> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/slides/slides/2024-03-15/ya8-2024/index.html b/services/nuldoc/public/slides/slides/2024-03-15/ya8-2024/index.html index ba5efbda..10ee6d02 100644 --- a/services/nuldoc/public/slides/slides/2024-03-15/ya8-2024/index.html +++ b/services/nuldoc/public/slides/slides/2024-03-15/ya8-2024/index.html @@ -8,19 +8,19 @@ <meta name="description" content="CLI の PHP プログラムを限界まで高速化してみる"> <meta name="keywords" content="カンファレンス,WebAssembly,Ya8"> <meta property="og:type" content="article"> - <meta property="og:title" content="Ya8 2024 (レギュラートーク (60分))|REPL: Rest-Eat-Program Loop"> + <meta property="og:title" content="Ya8 2024 (レギュラートーク (60分))|nsfisis.dev"> <meta property="og:description" content="CLI の PHP プログラムを限界まで高速化してみる"> - <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> + <meta property="og:site_name" content="nsfisis.dev"> <meta property="og:locale" content="ja_JP"> <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> - <title>Ya8 2024 (レギュラートーク (60分))|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <title>Ya8 2024 (レギュラートーク (60分))|nsfisis.dev</title> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/slides/slides/2024-04-13/phpcon-odawara-2024/index.html b/services/nuldoc/public/slides/slides/2024-04-13/phpcon-odawara-2024/index.html index 11e7eb6a..6316b45f 100644 --- a/services/nuldoc/public/slides/slides/2024-04-13/phpcon-odawara-2024/index.html +++ b/services/nuldoc/public/slides/slides/2024-04-13/phpcon-odawara-2024/index.html @@ -8,19 +8,19 @@ <meta name="description" content="来る新 JIT エンジンについて知った気になる"> <meta name="keywords" content="カンファレンス,PHP,PHP カンファレンス小田原"> <meta property="og:type" content="article"> - <meta property="og:title" content="PHP カンファレンス小田原 2024 (レギュラートーク (15分))|REPL: Rest-Eat-Program Loop"> + <meta property="og:title" content="PHP カンファレンス小田原 2024 (レギュラートーク (15分))|nsfisis.dev"> <meta property="og:description" content="来る新 JIT エンジンについて知った気になる"> - <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> + <meta property="og:site_name" content="nsfisis.dev"> <meta property="og:locale" content="ja_JP"> <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> - <title>PHP カンファレンス小田原 2024 (レギュラートーク (15分))|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <title>PHP カンファレンス小田原 2024 (レギュラートーク (15分))|nsfisis.dev</title> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/slides/slides/2024-04-25/phpstudy-tokyo-163/index.html b/services/nuldoc/public/slides/slides/2024-04-25/phpstudy-tokyo-163/index.html index 5c2f441e..6f1412a5 100644 --- a/services/nuldoc/public/slides/slides/2024-04-25/phpstudy-tokyo-163/index.html +++ b/services/nuldoc/public/slides/slides/2024-04-25/phpstudy-tokyo-163/index.html @@ -8,19 +8,19 @@ <meta name="description" content="Tracing JIT の発動条件"> <meta name="keywords" content="PHP,PHP 勉強会@東京"> <meta property="og:type" content="article"> - <meta property="og:title" content="PHP 勉強会@東京 第163回 (LT)|REPL: Rest-Eat-Program Loop"> + <meta property="og:title" content="PHP 勉強会@東京 第163回 (LT)|nsfisis.dev"> <meta property="og:description" content="Tracing JIT の発動条件"> - <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> + <meta property="og:site_name" content="nsfisis.dev"> <meta property="og:locale" content="ja_JP"> <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> - <title>PHP 勉強会@東京 第163回 (LT)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <title>PHP 勉強会@東京 第163回 (LT)|nsfisis.dev</title> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/slides/slides/2024-07-18/phpstudy-tokyo-166/index.html b/services/nuldoc/public/slides/slides/2024-07-18/phpstudy-tokyo-166/index.html index 7eb2f3f5..b8f56b69 100644 --- a/services/nuldoc/public/slides/slides/2024-07-18/phpstudy-tokyo-166/index.html +++ b/services/nuldoc/public/slides/slides/2024-07-18/phpstudy-tokyo-166/index.html @@ -8,19 +8,19 @@ <meta name="description" content="PHPerKaigi 2024 で発表した WebAssembly ランタイムのその後"> <meta name="keywords" content="PHP,PHP 勉強会@東京"> <meta property="og:type" content="article"> - <meta property="og:title" content="PHP 勉強会@東京 第166回 (レギュラートーク (20分))|REPL: Rest-Eat-Program Loop"> + <meta property="og:title" content="PHP 勉強会@東京 第166回 (レギュラートーク (20分))|nsfisis.dev"> <meta property="og:description" content="PHPerKaigi 2024 で発表した WebAssembly ランタイムのその後"> - <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> + <meta property="og:site_name" content="nsfisis.dev"> <meta property="og:locale" content="ja_JP"> <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> - <title>PHP 勉強会@東京 第166回 (レギュラートーク (20分))|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <title>PHP 勉強会@東京 第166回 (レギュラートーク (20分))|nsfisis.dev</title> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/slides/slides/2024-10-30/phpstudy-tokyo-169/index.html b/services/nuldoc/public/slides/slides/2024-10-30/phpstudy-tokyo-169/index.html index d474daa2..0674587d 100644 --- a/services/nuldoc/public/slides/slides/2024-10-30/phpstudy-tokyo-169/index.html +++ b/services/nuldoc/public/slides/slides/2024-10-30/phpstudy-tokyo-169/index.html @@ -8,19 +8,19 @@ <meta name="description" content="PHP で PHP を作る (縮小版)"> <meta name="keywords" content="PHP,PHP 勉強会@東京"> <meta property="og:type" content="article"> - <meta property="og:title" content="PHP 勉強会@東京 第169回 (レギュラートーク (20分))|REPL: Rest-Eat-Program Loop"> + <meta property="og:title" content="PHP 勉強会@東京 第169回 (レギュラートーク (20分))|nsfisis.dev"> <meta property="og:description" content="PHP で PHP を作る (縮小版)"> - <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> + <meta property="og:site_name" content="nsfisis.dev"> <meta property="og:locale" content="ja_JP"> <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> - <title>PHP 勉強会@東京 第169回 (レギュラートーク (20分))|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <title>PHP 勉強会@東京 第169回 (レギュラートーク (20分))|nsfisis.dev</title> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/slides/slides/2024-11-30/cohackpp/index.html b/services/nuldoc/public/slides/slides/2024-11-30/cohackpp/index.html index 27fd01c2..baf71036 100644 --- a/services/nuldoc/public/slides/slides/2024-11-30/cohackpp/index.html +++ b/services/nuldoc/public/slides/slides/2024-11-30/cohackpp/index.html @@ -8,19 +8,19 @@ <meta name="description" content="プログラミングマナー講座"> <meta name="keywords" content="紅白ぺぱ合戦,PHP"> <meta property="og:type" content="article"> - <meta property="og:title" content="紅白ぺぱ合戦 (LT)|REPL: Rest-Eat-Program Loop"> + <meta property="og:title" content="紅白ぺぱ合戦 (LT)|nsfisis.dev"> <meta property="og:description" content="プログラミングマナー講座"> - <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> + <meta property="og:site_name" content="nsfisis.dev"> <meta property="og:locale" content="ja_JP"> <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> - <title>紅白ぺぱ合戦 (LT)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <title>紅白ぺぱ合戦 (LT)|nsfisis.dev</title> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/slides/slides/2025-02-22/phpcon-nagoya-2025/index.html b/services/nuldoc/public/slides/slides/2025-02-22/phpcon-nagoya-2025/index.html index 62da611b..b6f59e15 100644 --- a/services/nuldoc/public/slides/slides/2025-02-22/phpcon-nagoya-2025/index.html +++ b/services/nuldoc/public/slides/slides/2025-02-22/phpcon-nagoya-2025/index.html @@ -8,19 +8,19 @@ <meta name="description" content="PHP 処理系の garbage collection を理解する~メモリはいつ解放されるのか~"> <meta name="keywords" content="カンファレンス,PHP,PHP カンファレンス名古屋"> <meta property="og:type" content="article"> - <meta property="og:title" content="PHP カンファレンス名古屋 2025 (レギュラートーク (30分))|REPL: Rest-Eat-Program Loop"> + <meta property="og:title" content="PHP カンファレンス名古屋 2025 (レギュラートーク (30分))|nsfisis.dev"> <meta property="og:description" content="PHP 処理系の garbage collection を理解する~メモリはいつ解放されるのか~"> - <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> + <meta property="og:site_name" content="nsfisis.dev"> <meta property="og:locale" content="ja_JP"> <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> - <title>PHP カンファレンス名古屋 2025 (レギュラートーク (30分))|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <title>PHP カンファレンス名古屋 2025 (レギュラートーク (30分))|nsfisis.dev</title> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/slides/slides/2025-03-23/phperkaigi-2025/index.html b/services/nuldoc/public/slides/slides/2025-03-23/phperkaigi-2025/index.html index dcd5f8b9..6032b8af 100644 --- a/services/nuldoc/public/slides/slides/2025-03-23/phperkaigi-2025/index.html +++ b/services/nuldoc/public/slides/slides/2025-03-23/phperkaigi-2025/index.html @@ -8,19 +8,19 @@ <meta name="description" content="PHPで作るPHP~セルフホストできる言語処理系を作ろう~"> <meta name="keywords" content="カンファレンス,PHP,PHPerKaigi"> <meta property="og:type" content="article"> - <meta property="og:title" content="PHPerKaigi 2025 (レギュラートーク (40分))|REPL: Rest-Eat-Program Loop"> + <meta property="og:title" content="PHPerKaigi 2025 (レギュラートーク (40分))|nsfisis.dev"> <meta property="og:description" content="PHPで作るPHP~セルフホストできる言語処理系を作ろう~"> - <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> + <meta property="og:site_name" content="nsfisis.dev"> <meta property="og:locale" content="ja_JP"> <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> - <title>PHPerKaigi 2025 (レギュラートーク (40分))|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <title>PHPerKaigi 2025 (レギュラートーク (40分))|nsfisis.dev</title> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/slides/slides/2025-04-12/phpcon-odawara-2025/index.html b/services/nuldoc/public/slides/slides/2025-04-12/phpcon-odawara-2025/index.html index cea31d8a..57573f2d 100644 --- a/services/nuldoc/public/slides/slides/2025-04-12/phpcon-odawara-2025/index.html +++ b/services/nuldoc/public/slides/slides/2025-04-12/phpcon-odawara-2025/index.html @@ -8,19 +8,19 @@ <meta name="description" content="PHP 8.x 時代のクラス設計(property promotion から property hooks まで)"> <meta name="keywords" content="カンファレンス,PHP,PHP カンファレンス小田原"> <meta property="og:type" content="article"> - <meta property="og:title" content="PHP カンファレンス小田原 2025 (レギュラートーク (20分))|REPL: Rest-Eat-Program Loop"> + <meta property="og:title" content="PHP カンファレンス小田原 2025 (レギュラートーク (20分))|nsfisis.dev"> <meta property="og:description" content="PHP 8.x 時代のクラス設計(property promotion から property hooks まで)"> - <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> + <meta property="og:site_name" content="nsfisis.dev"> <meta property="og:locale" content="ja_JP"> <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> - <title>PHP カンファレンス小田原 2025 (レギュラートーク (20分))|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <title>PHP カンファレンス小田原 2025 (レギュラートーク (20分))|nsfisis.dev</title> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/slides/slides/2025-07-26/techramen-25-conf/index.html b/services/nuldoc/public/slides/slides/2025-07-26/techramen-25-conf/index.html index e1df83bc..3a94eabc 100644 --- a/services/nuldoc/public/slides/slides/2025-07-26/techramen-25-conf/index.html +++ b/services/nuldoc/public/slides/slides/2025-07-26/techramen-25-conf/index.html @@ -8,19 +8,19 @@ <meta name="description" content="セルフホスト可能なCコンパイラを2000行弱で書く"> <meta name="keywords" content="C,カンファレンス,TechRAMEN"> <meta property="og:type" content="article"> - <meta property="og:title" content="TechRAMEN 2025 Conference (40 分)|REPL: Rest-Eat-Program Loop"> + <meta property="og:title" content="TechRAMEN 2025 Conference (40 分)|nsfisis.dev"> <meta property="og:description" content="セルフホスト可能なCコンパイラを2000行弱で書く"> - <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> + <meta property="og:site_name" content="nsfisis.dev"> <meta property="og:locale" content="ja_JP"> <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> - <title>TechRAMEN 2025 Conference (40 分)|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <title>TechRAMEN 2025 Conference (40 分)|nsfisis.dev</title> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/slides/slides/2025-10-29/phpstudy-tokyo-180/index.html b/services/nuldoc/public/slides/slides/2025-10-29/phpstudy-tokyo-180/index.html index 5c0b64c7..dd240aef 100644 --- a/services/nuldoc/public/slides/slides/2025-10-29/phpstudy-tokyo-180/index.html +++ b/services/nuldoc/public/slides/slides/2025-10-29/phpstudy-tokyo-180/index.html @@ -8,19 +8,19 @@ <meta name="description" content="浮動小数点数の半開区間で単一値を指定する"> <meta name="keywords" content="PHP,PHP 勉強会@東京"> <meta property="og:type" content="article"> - <meta property="og:title" content="PHP 勉強会@東京 第180回 (レギュラートーク (20分))|REPL: Rest-Eat-Program Loop"> + <meta property="og:title" content="PHP 勉強会@東京 第180回 (レギュラートーク (20分))|nsfisis.dev"> <meta property="og:description" content="浮動小数点数の半開区間で単一値を指定する"> - <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> + <meta property="og:site_name" content="nsfisis.dev"> <meta property="og:locale" content="ja_JP"> <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> - <title>PHP 勉強会@東京 第180回 (レギュラートーク (20分))|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <title>PHP 勉強会@東京 第180回 (レギュラートーク (20分))|nsfisis.dev</title> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="single"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/slides/slides/atom.xml b/services/nuldoc/public/slides/slides/atom.xml index 54581f2c..afe0e252 100644 --- a/services/nuldoc/public/slides/slides/atom.xml +++ b/services/nuldoc/public/slides/slides/atom.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <feed xmlns="http://www.w3.org/2005/Atom"> <id>tag:slides.nsfisis.dev,2021:slides</id> - <title>スライド一覧|REPL: Rest-Eat-Program Loop</title> + <title>スライド一覧|nsfisis.dev</title> <link rel="alternate" href="https://slides.nsfisis.dev/slides/"></link> <link rel="self" href="https://slides.nsfisis.dev/slides/atom.xml"></link> <author> diff --git a/services/nuldoc/public/slides/slides/index.html b/services/nuldoc/public/slides/slides/index.html index f6d8ba9c..59595a5e 100644 --- a/services/nuldoc/public/slides/slides/index.html +++ b/services/nuldoc/public/slides/slides/index.html @@ -7,20 +7,20 @@ <meta name="copyright" content="© 2021 nsfisis"> <meta name="description" content="登壇したイベントで使用したスライドの一覧"> <meta property="og:type" content="article"> - <meta property="og:title" content="スライド一覧|REPL: Rest-Eat-Program Loop"> + <meta property="og:title" content="スライド一覧|nsfisis.dev"> <meta property="og:description" content="登壇したイベントで使用したスライドの一覧"> - <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> + <meta property="og:site_name" content="nsfisis.dev"> <meta property="og:locale" content="ja_JP"> <meta name="Hatena::Bookmark" content="nocomment"> <link rel="alternate" type="application/atom+xml" href="https://slides.nsfisis.dev/slides/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> - <title>スライド一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <title>スライド一覧|nsfisis.dev</title> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/slides/style.css b/services/nuldoc/public/slides/style.css index d20faf46..8101fb6b 100644 --- a/services/nuldoc/public/slides/style.css +++ b/services/nuldoc/public/slides/style.css @@ -54,6 +54,12 @@ body > footer { color: #fff; } +.site-name { + font-size: 1.3rem; + font-weight: bold; + color: #fff; +} + .nav { padding: 0; margin: 0.5rem 0 0; diff --git a/services/nuldoc/public/slides/tags/c/atom.xml b/services/nuldoc/public/slides/tags/c/atom.xml index baa3e1bf..8980c7ea 100644 --- a/services/nuldoc/public/slides/tags/c/atom.xml +++ b/services/nuldoc/public/slides/tags/c/atom.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <feed xmlns="http://www.w3.org/2005/Atom"> <id>tag:slides.nsfisis.dev,2021:tag-c</id> - <title>タグ「C」一覧|REPL: Rest-Eat-Program Loop</title> + <title>タグ「C」一覧|nsfisis.dev</title> <link rel="alternate" href="https://slides.nsfisis.dev/tags/c/"></link> <link rel="self" href="https://slides.nsfisis.dev/tags/c/atom.xml"></link> <author> diff --git a/services/nuldoc/public/slides/tags/c/index.html b/services/nuldoc/public/slides/tags/c/index.html index 88ccc71c..adab9e34 100644 --- a/services/nuldoc/public/slides/tags/c/index.html +++ b/services/nuldoc/public/slides/tags/c/index.html @@ -8,20 +8,20 @@ <meta name="description" content="タグ「C」のついた記事またはスライドの一覧"> <meta name="keywords" content="C"> <meta property="og:type" content="article"> - <meta property="og:title" content="タグ「C」一覧|REPL: Rest-Eat-Program Loop"> + <meta property="og:title" content="タグ「C」一覧|nsfisis.dev"> <meta property="og:description" content="タグ「C」のついた記事またはスライドの一覧"> - <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> + <meta property="og:site_name" content="nsfisis.dev"> <meta property="og:locale" content="ja_JP"> <meta name="Hatena::Bookmark" content="nocomment"> <link rel="alternate" type="application/atom+xml" href="https://slides.nsfisis.dev/tags/c/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> - <title>タグ「C」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <title>タグ「C」一覧|nsfisis.dev</title> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/slides/tags/cohackpp/atom.xml b/services/nuldoc/public/slides/tags/cohackpp/atom.xml index 2dfde677..f43d0dcb 100644 --- a/services/nuldoc/public/slides/tags/cohackpp/atom.xml +++ b/services/nuldoc/public/slides/tags/cohackpp/atom.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <feed xmlns="http://www.w3.org/2005/Atom"> <id>tag:slides.nsfisis.dev,2021:tag-cohackpp</id> - <title>タグ「紅白ぺぱ合戦」一覧|REPL: Rest-Eat-Program Loop</title> + <title>タグ「紅白ぺぱ合戦」一覧|nsfisis.dev</title> <link rel="alternate" href="https://slides.nsfisis.dev/tags/cohackpp/"></link> <link rel="self" href="https://slides.nsfisis.dev/tags/cohackpp/atom.xml"></link> <author> diff --git a/services/nuldoc/public/slides/tags/cohackpp/index.html b/services/nuldoc/public/slides/tags/cohackpp/index.html index b1eedd43..9cb9e518 100644 --- a/services/nuldoc/public/slides/tags/cohackpp/index.html +++ b/services/nuldoc/public/slides/tags/cohackpp/index.html @@ -8,20 +8,20 @@ <meta name="description" content="タグ「紅白ぺぱ合戦」のついた記事またはスライドの一覧"> <meta name="keywords" content="紅白ぺぱ合戦"> <meta property="og:type" content="article"> - <meta property="og:title" content="タグ「紅白ぺぱ合戦」一覧|REPL: Rest-Eat-Program Loop"> + <meta property="og:title" content="タグ「紅白ぺぱ合戦」一覧|nsfisis.dev"> <meta property="og:description" content="タグ「紅白ぺぱ合戦」のついた記事またはスライドの一覧"> - <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> + <meta property="og:site_name" content="nsfisis.dev"> <meta property="og:locale" content="ja_JP"> <meta name="Hatena::Bookmark" content="nocomment"> <link rel="alternate" type="application/atom+xml" href="https://slides.nsfisis.dev/tags/cohackpp/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> - <title>タグ「紅白ぺぱ合戦」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <title>タグ「紅白ぺぱ合戦」一覧|nsfisis.dev</title> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/slides/tags/conference/atom.xml b/services/nuldoc/public/slides/tags/conference/atom.xml index b6ccc821..fb5b7592 100644 --- a/services/nuldoc/public/slides/tags/conference/atom.xml +++ b/services/nuldoc/public/slides/tags/conference/atom.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <feed xmlns="http://www.w3.org/2005/Atom"> <id>tag:slides.nsfisis.dev,2021:tag-conference</id> - <title>タグ「カンファレンス」一覧|REPL: Rest-Eat-Program Loop</title> + <title>タグ「カンファレンス」一覧|nsfisis.dev</title> <link rel="alternate" href="https://slides.nsfisis.dev/tags/conference/"></link> <link rel="self" href="https://slides.nsfisis.dev/tags/conference/atom.xml"></link> <author> diff --git a/services/nuldoc/public/slides/tags/conference/index.html b/services/nuldoc/public/slides/tags/conference/index.html index f00e69df..f8f3ad25 100644 --- a/services/nuldoc/public/slides/tags/conference/index.html +++ b/services/nuldoc/public/slides/tags/conference/index.html @@ -8,20 +8,20 @@ <meta name="description" content="タグ「カンファレンス」のついた記事またはスライドの一覧"> <meta name="keywords" content="カンファレンス"> <meta property="og:type" content="article"> - <meta property="og:title" content="タグ「カンファレンス」一覧|REPL: Rest-Eat-Program Loop"> + <meta property="og:title" content="タグ「カンファレンス」一覧|nsfisis.dev"> <meta property="og:description" content="タグ「カンファレンス」のついた記事またはスライドの一覧"> - <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> + <meta property="og:site_name" content="nsfisis.dev"> <meta property="og:locale" content="ja_JP"> <meta name="Hatena::Bookmark" content="nocomment"> <link rel="alternate" type="application/atom+xml" href="https://slides.nsfisis.dev/tags/conference/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> - <title>タグ「カンファレンス」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <title>タグ「カンファレンス」一覧|nsfisis.dev</title> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/slides/tags/index.html b/services/nuldoc/public/slides/tags/index.html index 126fb6e0..1584d247 100644 --- a/services/nuldoc/public/slides/tags/index.html +++ b/services/nuldoc/public/slides/tags/index.html @@ -7,19 +7,19 @@ <meta name="copyright" content="© 2021 nsfisis"> <meta name="description" content="タグの一覧"> <meta property="og:type" content="article"> - <meta property="og:title" content="タグ一覧|REPL: Rest-Eat-Program Loop"> + <meta property="og:title" content="タグ一覧|nsfisis.dev"> <meta property="og:description" content="タグの一覧"> - <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> + <meta property="og:site_name" content="nsfisis.dev"> <meta property="og:locale" content="ja_JP"> <meta name="Hatena::Bookmark" content="nocomment"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> - <title>タグ一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <title>タグ一覧|nsfisis.dev</title> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/slides/tags/php/atom.xml b/services/nuldoc/public/slides/tags/php/atom.xml index af05e3aa..c18bd071 100644 --- a/services/nuldoc/public/slides/tags/php/atom.xml +++ b/services/nuldoc/public/slides/tags/php/atom.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <feed xmlns="http://www.w3.org/2005/Atom"> <id>tag:slides.nsfisis.dev,2021:tag-php</id> - <title>タグ「PHP」一覧|REPL: Rest-Eat-Program Loop</title> + <title>タグ「PHP」一覧|nsfisis.dev</title> <link rel="alternate" href="https://slides.nsfisis.dev/tags/php/"></link> <link rel="self" href="https://slides.nsfisis.dev/tags/php/atom.xml"></link> <author> diff --git a/services/nuldoc/public/slides/tags/php/index.html b/services/nuldoc/public/slides/tags/php/index.html index a493e483..723a0f99 100644 --- a/services/nuldoc/public/slides/tags/php/index.html +++ b/services/nuldoc/public/slides/tags/php/index.html @@ -8,20 +8,20 @@ <meta name="description" content="タグ「PHP」のついた記事またはスライドの一覧"> <meta name="keywords" content="PHP"> <meta property="og:type" content="article"> - <meta property="og:title" content="タグ「PHP」一覧|REPL: Rest-Eat-Program Loop"> + <meta property="og:title" content="タグ「PHP」一覧|nsfisis.dev"> <meta property="og:description" content="タグ「PHP」のついた記事またはスライドの一覧"> - <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> + <meta property="og:site_name" content="nsfisis.dev"> <meta property="og:locale" content="ja_JP"> <meta name="Hatena::Bookmark" content="nocomment"> <link rel="alternate" type="application/atom+xml" href="https://slides.nsfisis.dev/tags/php/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> - <title>タグ「PHP」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <title>タグ「PHP」一覧|nsfisis.dev</title> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/slides/tags/phpcon-nagoya/atom.xml b/services/nuldoc/public/slides/tags/phpcon-nagoya/atom.xml index 16e00705..25ba3f98 100644 --- a/services/nuldoc/public/slides/tags/phpcon-nagoya/atom.xml +++ b/services/nuldoc/public/slides/tags/phpcon-nagoya/atom.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <feed xmlns="http://www.w3.org/2005/Atom"> <id>tag:slides.nsfisis.dev,2021:tag-phpcon-nagoya</id> - <title>タグ「PHP カンファレンス名古屋」一覧|REPL: Rest-Eat-Program Loop</title> + <title>タグ「PHP カンファレンス名古屋」一覧|nsfisis.dev</title> <link rel="alternate" href="https://slides.nsfisis.dev/tags/phpcon-nagoya/"></link> <link rel="self" href="https://slides.nsfisis.dev/tags/phpcon-nagoya/atom.xml"></link> <author> diff --git a/services/nuldoc/public/slides/tags/phpcon-nagoya/index.html b/services/nuldoc/public/slides/tags/phpcon-nagoya/index.html index 4b41df9d..81d070f1 100644 --- a/services/nuldoc/public/slides/tags/phpcon-nagoya/index.html +++ b/services/nuldoc/public/slides/tags/phpcon-nagoya/index.html @@ -8,20 +8,20 @@ <meta name="description" content="タグ「PHP カンファレンス名古屋」のついた記事またはスライドの一覧"> <meta name="keywords" content="PHP カンファレンス名古屋"> <meta property="og:type" content="article"> - <meta property="og:title" content="タグ「PHP カンファレンス名古屋」一覧|REPL: Rest-Eat-Program Loop"> + <meta property="og:title" content="タグ「PHP カンファレンス名古屋」一覧|nsfisis.dev"> <meta property="og:description" content="タグ「PHP カンファレンス名古屋」のついた記事またはスライドの一覧"> - <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> + <meta property="og:site_name" content="nsfisis.dev"> <meta property="og:locale" content="ja_JP"> <meta name="Hatena::Bookmark" content="nocomment"> <link rel="alternate" type="application/atom+xml" href="https://slides.nsfisis.dev/tags/phpcon-nagoya/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> - <title>タグ「PHP カンファレンス名古屋」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <title>タグ「PHP カンファレンス名古屋」一覧|nsfisis.dev</title> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/slides/tags/phpcon-odawara/atom.xml b/services/nuldoc/public/slides/tags/phpcon-odawara/atom.xml index 7f8e5bf9..404f17b1 100644 --- a/services/nuldoc/public/slides/tags/phpcon-odawara/atom.xml +++ b/services/nuldoc/public/slides/tags/phpcon-odawara/atom.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <feed xmlns="http://www.w3.org/2005/Atom"> <id>tag:slides.nsfisis.dev,2021:tag-phpcon-odawara</id> - <title>タグ「PHP カンファレンス小田原」一覧|REPL: Rest-Eat-Program Loop</title> + <title>タグ「PHP カンファレンス小田原」一覧|nsfisis.dev</title> <link rel="alternate" href="https://slides.nsfisis.dev/tags/phpcon-odawara/"></link> <link rel="self" href="https://slides.nsfisis.dev/tags/phpcon-odawara/atom.xml"></link> <author> diff --git a/services/nuldoc/public/slides/tags/phpcon-odawara/index.html b/services/nuldoc/public/slides/tags/phpcon-odawara/index.html index 87b50b66..17754366 100644 --- a/services/nuldoc/public/slides/tags/phpcon-odawara/index.html +++ b/services/nuldoc/public/slides/tags/phpcon-odawara/index.html @@ -8,20 +8,20 @@ <meta name="description" content="タグ「PHP カンファレンス小田原」のついた記事またはスライドの一覧"> <meta name="keywords" content="PHP カンファレンス小田原"> <meta property="og:type" content="article"> - <meta property="og:title" content="タグ「PHP カンファレンス小田原」一覧|REPL: Rest-Eat-Program Loop"> + <meta property="og:title" content="タグ「PHP カンファレンス小田原」一覧|nsfisis.dev"> <meta property="og:description" content="タグ「PHP カンファレンス小田原」のついた記事またはスライドの一覧"> - <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> + <meta property="og:site_name" content="nsfisis.dev"> <meta property="og:locale" content="ja_JP"> <meta name="Hatena::Bookmark" content="nocomment"> <link rel="alternate" type="application/atom+xml" href="https://slides.nsfisis.dev/tags/phpcon-odawara/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> - <title>タグ「PHP カンファレンス小田原」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <title>タグ「PHP カンファレンス小田原」一覧|nsfisis.dev</title> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/slides/tags/phpconfuk/atom.xml b/services/nuldoc/public/slides/tags/phpconfuk/atom.xml index f8cc7e53..ce9a0fda 100644 --- a/services/nuldoc/public/slides/tags/phpconfuk/atom.xml +++ b/services/nuldoc/public/slides/tags/phpconfuk/atom.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <feed xmlns="http://www.w3.org/2005/Atom"> <id>tag:slides.nsfisis.dev,2021:tag-phpconfuk</id> - <title>タグ「PHP カンファレンス福岡」一覧|REPL: Rest-Eat-Program Loop</title> + <title>タグ「PHP カンファレンス福岡」一覧|nsfisis.dev</title> <link rel="alternate" href="https://slides.nsfisis.dev/tags/phpconfuk/"></link> <link rel="self" href="https://slides.nsfisis.dev/tags/phpconfuk/atom.xml"></link> <author> diff --git a/services/nuldoc/public/slides/tags/phpconfuk/index.html b/services/nuldoc/public/slides/tags/phpconfuk/index.html index 920baaa8..b66793fa 100644 --- a/services/nuldoc/public/slides/tags/phpconfuk/index.html +++ b/services/nuldoc/public/slides/tags/phpconfuk/index.html @@ -8,20 +8,20 @@ <meta name="description" content="タグ「PHP カンファレンス福岡」のついた記事またはスライドの一覧"> <meta name="keywords" content="PHP カンファレンス福岡"> <meta property="og:type" content="article"> - <meta property="og:title" content="タグ「PHP カンファレンス福岡」一覧|REPL: Rest-Eat-Program Loop"> + <meta property="og:title" content="タグ「PHP カンファレンス福岡」一覧|nsfisis.dev"> <meta property="og:description" content="タグ「PHP カンファレンス福岡」のついた記事またはスライドの一覧"> - <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> + <meta property="og:site_name" content="nsfisis.dev"> <meta property="og:locale" content="ja_JP"> <meta name="Hatena::Bookmark" content="nocomment"> <link rel="alternate" type="application/atom+xml" href="https://slides.nsfisis.dev/tags/phpconfuk/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> - <title>タグ「PHP カンファレンス福岡」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <title>タグ「PHP カンファレンス福岡」一覧|nsfisis.dev</title> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/slides/tags/phperkaigi/atom.xml b/services/nuldoc/public/slides/tags/phperkaigi/atom.xml index bd61b5db..c42278db 100644 --- a/services/nuldoc/public/slides/tags/phperkaigi/atom.xml +++ b/services/nuldoc/public/slides/tags/phperkaigi/atom.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <feed xmlns="http://www.w3.org/2005/Atom"> <id>tag:slides.nsfisis.dev,2021:tag-phperkaigi</id> - <title>タグ「PHPerKaigi」一覧|REPL: Rest-Eat-Program Loop</title> + <title>タグ「PHPerKaigi」一覧|nsfisis.dev</title> <link rel="alternate" href="https://slides.nsfisis.dev/tags/phperkaigi/"></link> <link rel="self" href="https://slides.nsfisis.dev/tags/phperkaigi/atom.xml"></link> <author> diff --git a/services/nuldoc/public/slides/tags/phperkaigi/index.html b/services/nuldoc/public/slides/tags/phperkaigi/index.html index 2731545a..1a507fdb 100644 --- a/services/nuldoc/public/slides/tags/phperkaigi/index.html +++ b/services/nuldoc/public/slides/tags/phperkaigi/index.html @@ -8,20 +8,20 @@ <meta name="description" content="タグ「PHPerKaigi」のついた記事またはスライドの一覧"> <meta name="keywords" content="PHPerKaigi"> <meta property="og:type" content="article"> - <meta property="og:title" content="タグ「PHPerKaigi」一覧|REPL: Rest-Eat-Program Loop"> + <meta property="og:title" content="タグ「PHPerKaigi」一覧|nsfisis.dev"> <meta property="og:description" content="タグ「PHPerKaigi」のついた記事またはスライドの一覧"> - <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> + <meta property="og:site_name" content="nsfisis.dev"> <meta property="og:locale" content="ja_JP"> <meta name="Hatena::Bookmark" content="nocomment"> <link rel="alternate" type="application/atom+xml" href="https://slides.nsfisis.dev/tags/phperkaigi/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> - <title>タグ「PHPerKaigi」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <title>タグ「PHPerKaigi」一覧|nsfisis.dev</title> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/slides/tags/phpstudy-tokyo/atom.xml b/services/nuldoc/public/slides/tags/phpstudy-tokyo/atom.xml index b1245a27..758c21e0 100644 --- a/services/nuldoc/public/slides/tags/phpstudy-tokyo/atom.xml +++ b/services/nuldoc/public/slides/tags/phpstudy-tokyo/atom.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <feed xmlns="http://www.w3.org/2005/Atom"> <id>tag:slides.nsfisis.dev,2021:tag-phpstudy-tokyo</id> - <title>タグ「PHP 勉強会@東京」一覧|REPL: Rest-Eat-Program Loop</title> + <title>タグ「PHP 勉強会@東京」一覧|nsfisis.dev</title> <link rel="alternate" href="https://slides.nsfisis.dev/tags/phpstudy-tokyo/"></link> <link rel="self" href="https://slides.nsfisis.dev/tags/phpstudy-tokyo/atom.xml"></link> <author> diff --git a/services/nuldoc/public/slides/tags/phpstudy-tokyo/index.html b/services/nuldoc/public/slides/tags/phpstudy-tokyo/index.html index 3abeb361..09ac7c8e 100644 --- a/services/nuldoc/public/slides/tags/phpstudy-tokyo/index.html +++ b/services/nuldoc/public/slides/tags/phpstudy-tokyo/index.html @@ -8,20 +8,20 @@ <meta name="description" content="タグ「PHP 勉強会@東京」のついた記事またはスライドの一覧"> <meta name="keywords" content="PHP 勉強会@東京"> <meta property="og:type" content="article"> - <meta property="og:title" content="タグ「PHP 勉強会@東京」一覧|REPL: Rest-Eat-Program Loop"> + <meta property="og:title" content="タグ「PHP 勉強会@東京」一覧|nsfisis.dev"> <meta property="og:description" content="タグ「PHP 勉強会@東京」のついた記事またはスライドの一覧"> - <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> + <meta property="og:site_name" content="nsfisis.dev"> <meta property="og:locale" content="ja_JP"> <meta name="Hatena::Bookmark" content="nocomment"> <link rel="alternate" type="application/atom+xml" href="https://slides.nsfisis.dev/tags/phpstudy-tokyo/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> - <title>タグ「PHP 勉強会@東京」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <title>タグ「PHP 勉強会@東京」一覧|nsfisis.dev</title> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/slides/tags/techramen/atom.xml b/services/nuldoc/public/slides/tags/techramen/atom.xml index b98f4ec9..01c34524 100644 --- a/services/nuldoc/public/slides/tags/techramen/atom.xml +++ b/services/nuldoc/public/slides/tags/techramen/atom.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <feed xmlns="http://www.w3.org/2005/Atom"> <id>tag:slides.nsfisis.dev,2021:tag-techramen</id> - <title>タグ「TechRAMEN」一覧|REPL: Rest-Eat-Program Loop</title> + <title>タグ「TechRAMEN」一覧|nsfisis.dev</title> <link rel="alternate" href="https://slides.nsfisis.dev/tags/techramen/"></link> <link rel="self" href="https://slides.nsfisis.dev/tags/techramen/atom.xml"></link> <author> diff --git a/services/nuldoc/public/slides/tags/techramen/index.html b/services/nuldoc/public/slides/tags/techramen/index.html index 802b312f..5f44d28d 100644 --- a/services/nuldoc/public/slides/tags/techramen/index.html +++ b/services/nuldoc/public/slides/tags/techramen/index.html @@ -8,20 +8,20 @@ <meta name="description" content="タグ「TechRAMEN」のついた記事またはスライドの一覧"> <meta name="keywords" content="TechRAMEN"> <meta property="og:type" content="article"> - <meta property="og:title" content="タグ「TechRAMEN」一覧|REPL: Rest-Eat-Program Loop"> + <meta property="og:title" content="タグ「TechRAMEN」一覧|nsfisis.dev"> <meta property="og:description" content="タグ「TechRAMEN」のついた記事またはスライドの一覧"> - <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> + <meta property="og:site_name" content="nsfisis.dev"> <meta property="og:locale" content="ja_JP"> <meta name="Hatena::Bookmark" content="nocomment"> <link rel="alternate" type="application/atom+xml" href="https://slides.nsfisis.dev/tags/techramen/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> - <title>タグ「TechRAMEN」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <title>タグ「TechRAMEN」一覧|nsfisis.dev</title> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/slides/tags/wasm/atom.xml b/services/nuldoc/public/slides/tags/wasm/atom.xml index 3b85def9..58ba1c77 100644 --- a/services/nuldoc/public/slides/tags/wasm/atom.xml +++ b/services/nuldoc/public/slides/tags/wasm/atom.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <feed xmlns="http://www.w3.org/2005/Atom"> <id>tag:slides.nsfisis.dev,2021:tag-wasm</id> - <title>タグ「WebAssembly」一覧|REPL: Rest-Eat-Program Loop</title> + <title>タグ「WebAssembly」一覧|nsfisis.dev</title> <link rel="alternate" href="https://slides.nsfisis.dev/tags/wasm/"></link> <link rel="self" href="https://slides.nsfisis.dev/tags/wasm/atom.xml"></link> <author> diff --git a/services/nuldoc/public/slides/tags/wasm/index.html b/services/nuldoc/public/slides/tags/wasm/index.html index 06b8118f..348bfe2b 100644 --- a/services/nuldoc/public/slides/tags/wasm/index.html +++ b/services/nuldoc/public/slides/tags/wasm/index.html @@ -8,20 +8,20 @@ <meta name="description" content="タグ「WebAssembly」のついた記事またはスライドの一覧"> <meta name="keywords" content="WebAssembly"> <meta property="og:type" content="article"> - <meta property="og:title" content="タグ「WebAssembly」一覧|REPL: Rest-Eat-Program Loop"> + <meta property="og:title" content="タグ「WebAssembly」一覧|nsfisis.dev"> <meta property="og:description" content="タグ「WebAssembly」のついた記事またはスライドの一覧"> - <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> + <meta property="og:site_name" content="nsfisis.dev"> <meta property="og:locale" content="ja_JP"> <meta name="Hatena::Bookmark" content="nocomment"> <link rel="alternate" type="application/atom+xml" href="https://slides.nsfisis.dev/tags/wasm/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> - <title>タグ「WebAssembly」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <title>タグ「WebAssembly」一覧|nsfisis.dev</title> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/public/slides/tags/ya8/atom.xml b/services/nuldoc/public/slides/tags/ya8/atom.xml index 9a52f76b..153fa28d 100644 --- a/services/nuldoc/public/slides/tags/ya8/atom.xml +++ b/services/nuldoc/public/slides/tags/ya8/atom.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <feed xmlns="http://www.w3.org/2005/Atom"> <id>tag:slides.nsfisis.dev,2021:tag-ya8</id> - <title>タグ「Ya8」一覧|REPL: Rest-Eat-Program Loop</title> + <title>タグ「Ya8」一覧|nsfisis.dev</title> <link rel="alternate" href="https://slides.nsfisis.dev/tags/ya8/"></link> <link rel="self" href="https://slides.nsfisis.dev/tags/ya8/atom.xml"></link> <author> diff --git a/services/nuldoc/public/slides/tags/ya8/index.html b/services/nuldoc/public/slides/tags/ya8/index.html index 1b74e2ab..d3ed6001 100644 --- a/services/nuldoc/public/slides/tags/ya8/index.html +++ b/services/nuldoc/public/slides/tags/ya8/index.html @@ -8,20 +8,20 @@ <meta name="description" content="タグ「Ya8」のついた記事またはスライドの一覧"> <meta name="keywords" content="Ya8"> <meta property="og:type" content="article"> - <meta property="og:title" content="タグ「Ya8」一覧|REPL: Rest-Eat-Program Loop"> + <meta property="og:title" content="タグ「Ya8」一覧|nsfisis.dev"> <meta property="og:description" content="タグ「Ya8」のついた記事またはスライドの一覧"> - <meta property="og:site_name" content="REPL: Rest-Eat-Program Loop"> + <meta property="og:site_name" content="nsfisis.dev"> <meta property="og:locale" content="ja_JP"> <meta name="Hatena::Bookmark" content="nocomment"> <link rel="alternate" type="application/atom+xml" href="https://slides.nsfisis.dev/tags/ya8/atom.xml"> <link rel="icon" type="image/svg+xml" href="/favicon.svg"> - <title>タグ「Ya8」一覧|REPL: Rest-Eat-Program Loop</title> - <link rel="stylesheet" href="/style.css?h=3e599d09fa43e2024fa30aaaa64b1f59"> + <title>タグ「Ya8」一覧|nsfisis.dev</title> + <link rel="stylesheet" href="/style.css?h=a78cdf3c9f16b8138f6c392e03e07eb5"> </head> <body class="list"> <header class="header"> <div class="site-logo"> - <a href="https://nsfisis.dev/">REPL: Rest-Eat-Program Loop</a> + <a href="https://nsfisis.dev/">nsfisis.dev</a> </div> <nav class="nav"> <ul> diff --git a/services/nuldoc/static/style.css b/services/nuldoc/static/style.css index d20faf46..8101fb6b 100644 --- a/services/nuldoc/static/style.css +++ b/services/nuldoc/static/style.css @@ -54,6 +54,12 @@ body > footer { color: #fff; } +.site-name { + font-size: 1.3rem; + font-weight: bold; + color: #fff; +} + .nav { padding: 0; margin: 0.5rem 0 0; |
