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 /services | |
| parent | 0af80494361ec9b71e004e2c83c43170666acbd9 (diff) | |
| download | nsfisis.dev-0ed772e1c2691f545ee08221893ac98266322ac5.tar.gz nsfisis.dev-0ed772e1c2691f545ee08221893ac98266322ac5.tar.zst nsfisis.dev-0ed772e1c2691f545ee08221893ac98266322ac5.zip | |
feat(nuldoc): Update site header 2
Diffstat (limited to 'services')
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 8250e04..a19029a 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 4671a01..2df7296 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 026c54f..1f7fe6e 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 4671a01..2df7296 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 6a8d8f6..9374aa7 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 78a5cde..b32f229 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 f7727ea..4d93240 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 e6af58c..95d7941 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 bcd9ba0..dc62da9 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 010692d..d0397c1 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 ae1d069..a2cbdd1 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 ac105e8..11ce518 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 549eb97..5ed9696 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 60b2811..beebdb3 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 0b8d853..dc216eb 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 3c8dce3..53944df 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 c33f349..3ee58f3 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 49f689e..6c64172 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 d8b5943..5c9d60a 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 633b3ed..4e48ba7 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 af5fd85..bf79748 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 d20faf4..8101fb6 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 db64cf9..095f838 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 2323d7b..322bf93 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 132ebbb..426661c 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 aff5688..eeb1a40 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 1f928bd..92220a2 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 df6b094..4a57431 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 58309aa..3174807 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 7747383..6e49bd6 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 c368134..ba6ab5c 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 1ab9d9d..10848d3 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 564b161..534e8f7 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 83ceb57..327b363 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 55464de..4b524ff 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 6c0bcae..6cf8797 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 6f6ceaf..f0c822c 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 76f8537..5f5cc7b 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 99970d3..fe172be 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 766b9fc..d280400 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 63dd7b8..f9be735 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 938c61f..2238ad5 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 56f3328..f9b8798 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 022189e..3936a3d 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 d9be054..a6b0388 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 d5805f1..02f093a 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 105837d..950ef63 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 e813737..d84b104 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 5edd7c4..b91ccc0 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 46e39d0..edd399e 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 be202f6..8f8a85f 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 0ba0140..bdcb20d 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 5bc67cd..f01228f 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 8ad4194..10182db 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 1ed9fa8..f23867c 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 b29c222..eb8af8c 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 9d4a23d..fb4639f 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 e89a07a..c09519c 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 04d8a97..3986f75 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 fa821cc..8160702 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 afc8fca..1487bdd 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 90db05e..6cf2832 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 76943ca..a555616 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 f14cf0a..9ff5255 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 1694b82..5111d24 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 7339530..a72e33b 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 641fc81..9c8685a 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 b6e1009..4b9591d 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 4c30ded..4fd1ebd 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 6bad287..2588210 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 9ba0c12..8171928 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 f92441b..193a432 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 bead1c5..9668c97 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 9220cf9..ed329fe 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 113f6dc..53253f7 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 9c2ef86..ade7704 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 c5b6483..c29f682 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 f255716..d52f3b2 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 0f2207f..503212a 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 8982a17..f07ad65 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 343f298..251b2cf 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 a435d3d..2a1c1c0 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 5a955d0..5c44f19 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 d20faf4..8101fb6 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 7aaf89d..0e7c60a 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 b3c2249..6fc4fa9 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 02743e5..fb1dcce 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 e9f7f5c..6404184 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 4671f01..3667d81 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 76e6c73..68e19a2 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 b25dc53..3f2482b 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 3fb0d75..ba6d4d5 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 c71511a..33af8b8 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 8e8a9b6..9b44442 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 692d451..5b46644 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 e5ff28e..b1e3c6d 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 6af9f3e..eca94ac 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 aaeadad..5f669c3 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 5242426..f67e14e 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 df40129..7932785 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 754be8d..dd7c9ab 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 2f7a283..d37c7b0 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 d785c64..2ebf1ea 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 5f8b6ab..d64d7d5 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 f590314..67eb02f 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 dd82930..387f956 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 f19d76d..43066ca 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 be720fa..ce18a20 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 ea91bf7..8ea68f1 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 1075a28..525d689 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 3802adc..1a3cae2 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 75a8bd0..0ee714c 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 ce281b3..4664d23 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 2fc865b..a6e9dcc 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 c9f2591..f729325 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 5db4411..98c9824 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 4524c6c..5dab5ab 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 aa46feb..90a1b94 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 2d4e2a3..fb1a275 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 3ece912..b823095 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 f309408..f329a72 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 dac9830..9ef70cf 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 fa97b2c..cc9e67b 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 55ae884..48f5a45 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 ac19c3e..0c18987 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 c27cf61..d1bd59b 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 d436e9c..6d97bca 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 022f144..1beb53c 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 633b3ed..4e48ba7 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 03a533e..de43f7e 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 9570f3b..7c53c91 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 d20faf4..8101fb6 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 de9da12..056975c 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 4a3c093..cfbc420 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 25b5fce..5d742de 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 06087ac..9305986 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 eefe2d8..4de3da1 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 df136e3..9c270fd 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 a2e0f8b..68c2bdd 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 9460c4f..f15df26 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 c4f7b2c..6340a49 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 a967f66..e0872b4 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 2f14a50..f6cddc9 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 54be08b..c646dd6 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 ae854f7..2b95539 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 1689e50..5811ca0 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 ba5efbd..10ee6d0 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 11e7eb6..6316b45 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 5c2f441..6f1412a 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 7eb2f3f..b8f56b6 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 d474daa..0674587 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 27fd01c..baf7103 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 62da611..b6f59e1 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 dcd5f8b..6032b8a 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 cea31d8..57573f2 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 e1df83b..3a94eab 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 5c0b64c..dd240ae 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 54581f2..afe0e25 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 f6d8ba9..59595a5 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 d20faf4..8101fb6 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 baa3e1b..8980c7e 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 88ccc71..adab9e3 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 2dfde67..f43d0dc 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 b1eedd4..9cb9e51 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 b6ccc82..fb5b759 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 f00e69d..f8f3ad2 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 126fb6e..1584d24 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 af05e3a..c18bd07 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 a493e48..723a0f9 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 16e0070..25ba3f9 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 4b41df9..81d070f 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 7f8e5bf..404f17b 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 87b50b6..1775436 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 f8cc7e5..ce9a0fd 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 920baaa..b66793f 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 bd61b5d..c42278d 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 2731545..1a507fd 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 b1245a2..758c21e 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 3abeb36..09ac7c8 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 b98f4ec..01c3452 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 802b312..5f44d28 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 3b85def..58ba1c7 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 06b8118..348bfe2 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 9a52f76..153fa28 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 1b74e2a..d3ed600 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 d20faf4..8101fb6 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; |
