{"id":283,"date":"2026-02-28T14:03:47","date_gmt":"2026-02-28T19:03:47","guid":{"rendered":"https:\/\/blog.nkasco.com\/wordpress\/?p=283"},"modified":"2026-02-28T14:03:49","modified_gmt":"2026-02-28T19:03:49","slug":"dispatch-a-self-hosted-task-app-that-youll-love-using","status":"publish","type":"post","link":"https:\/\/blog.nkasco.com\/wordpress\/index.php\/2026\/02\/28\/dispatch-a-self-hosted-task-app-that-youll-love-using\/","title":{"rendered":"Dispatch &#8211; A self-hosted task app that you&#8217;ll love using"},"content":{"rendered":"\n<figure class=\"wp-block-image size-large\"><img fetchpriority=\"high\" decoding=\"async\" width=\"1024\" height=\"520\" src=\"https:\/\/blog.nkasco.com\/wordpress\/wp-content\/uploads\/2026\/02\/image-1024x520.png\" alt=\"\" class=\"wp-image-284\" srcset=\"https:\/\/blog.nkasco.com\/wordpress\/wp-content\/uploads\/2026\/02\/image-1024x520.png 1024w, https:\/\/blog.nkasco.com\/wordpress\/wp-content\/uploads\/2026\/02\/image-300x152.png 300w, https:\/\/blog.nkasco.com\/wordpress\/wp-content\/uploads\/2026\/02\/image-768x390.png 768w, https:\/\/blog.nkasco.com\/wordpress\/wp-content\/uploads\/2026\/02\/image-1536x781.png 1536w, https:\/\/blog.nkasco.com\/wordpress\/wp-content\/uploads\/2026\/02\/image-2048x1041.png 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>Dispatch is a self-hosted workspace that brings everything together in one fast interface, with control over your data and a workflow that is designed for execution.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"why-dispatch-exists\">Why Dispatch Exists<\/h2>\n\n\n\n<p>Most productivity tools are either too lightweight to handle real planning or too complex for day-to-day use.<\/p>\n\n\n\n<p>Dispatch aims for the middle:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Local-first storage with SQLite on your machine<\/li>\n\n\n\n<li>A modern web app experience with keyboard-first speed<\/li>\n\n\n\n<li>Connected workflows across tasks, projects, notes, and daily planning<\/li>\n\n\n\n<li>Optional AI assistance that can take actions inside the app<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">An Agentic Engineering Experiment<\/h2>\n\n\n\n<p>Dispatch was an opportunity for me to see how far I could push agentic engineering. In today&#8217;s world with the emergence of AI I wanted to do something similar to <a href=\"https:\/\/openai.com\/index\/harness-engineering\/\">OpenAI&#8217;s harness engineering experiment<\/a>. I started this project prior to the post coming out, but I was shocked to see some similarities in approach. I found a few keys helped make this possible&#8230;<\/p>\n\n\n\n<p>I&#8217;ve collected and compiled those thoughts into a unified post here: <br><a href=\"https:\/\/blog.nkasco.com\/wordpress\/index.php\/2026\/02\/28\/the-new-work-frontier-how-agentic-engineering-is-reshaping-modern-work\/\">The New Work Frontier: How Agentic Engineering Is Reshaping Modern Work<\/a><\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"what-you-can-do-in-dispatch\">What You Can Do in Dispatch<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Track tasks with status, priority, due dates, and project links<\/li>\n\n\n\n<li>Plan work in projects with progress rollups<\/li>\n\n\n\n<li>Write notes in Markdown with editing and preview support<\/li>\n\n\n\n<li>Run a daily dispatch workflow for planning and carryover<\/li>\n\n\n\n<li>Search globally across tasks, notes, and dispatch records<\/li>\n\n\n\n<li>Restore deleted items from a recycle bin when needed<\/li>\n\n\n\n<li>Sign in with GitHub OAuth or local credentials<\/li>\n<\/ul>\n\n\n\n<p>Dispatch also includes a <strong>Personal Assistant (Beta)<\/strong> powered by the Vercel AI SDK and a local MCP tool server, so the assistant can do real work in your workspace, not just chat.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"built-for-local-control\">Built for Local Control<\/h2>\n\n\n\n<p>Dispatch runs on a Next.js + Node runtime and stores data in a local SQLite database file (or Docker volume when containerized). Your browser is the client, and your data remains under your control.<\/p>\n\n\n\n<p>If you want a personal productivity system without handing your workflow to a third-party cloud, this is the core idea.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"tech-stack\">Tech Stack<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Next.js 16<\/li>\n\n\n\n<li>React 19<\/li>\n\n\n\n<li>TypeScript 5<\/li>\n\n\n\n<li>Tailwind CSS v4<\/li>\n\n\n\n<li>SQLite<\/li>\n\n\n\n<li>Drizzle ORM<\/li>\n\n\n\n<li>NextAuth.js v5<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"quick-start\">Quick Start<\/h2>\n\n\n\n<p>The fastest way to run Dispatch is Docker:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: powershell; title: ; notranslate\" title=\"\">\n.\\dispatch.ps1 setup\n\n<\/pre><\/div>\n\n\n<p>Then open <code>http:\/\/localhost:3000<\/code>.<\/p>\n\n\n\n<p>For local Node.js development:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; title: ; notranslate\" title=\"\">\nnpm install\nnpm run db:migrate\nnpm run dev\n\n<\/pre><\/div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"try-dispatch\">Try Dispatch<\/h2>\n\n\n\n<p>Repository: <a href=\"https:\/\/github.com\/nkasco\/DispatchTodoApp\">https:\/\/github.com\/nkasco\/DispatchTodoApp<\/a><\/p>\n\n\n\n<p>If you want a private, fast, and extensible system for personal execution, Dispatch is ready to run on your machine today.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Dispatch is a self-hosted workspace that brings everything together in one fast interface, with control over your data and a workflow that is designed for execution. Why Dispatch Exists Most productivity tools are either too lightweight to handle real planning or too complex for day-to-day use. Dispatch aims for the middle: An Agentic Engineering Experiment [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-283","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Dispatch - A self-hosted task app that you&#039;ll love using - Nathan Kasco - Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/blog.nkasco.com\/wordpress\/index.php\/2026\/02\/28\/dispatch-a-self-hosted-task-app-that-youll-love-using\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Dispatch - A self-hosted task app that you&#039;ll love using - Nathan Kasco - Blog\" \/>\n<meta property=\"og:description\" content=\"Dispatch is a self-hosted workspace that brings everything together in one fast interface, with control over your data and a workflow that is designed for execution. Why Dispatch Exists Most productivity tools are either too lightweight to handle real planning or too complex for day-to-day use. Dispatch aims for the middle: An Agentic Engineering Experiment [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/blog.nkasco.com\/wordpress\/index.php\/2026\/02\/28\/dispatch-a-self-hosted-task-app-that-youll-love-using\/\" \/>\n<meta property=\"og:site_name\" content=\"Nathan Kasco - Blog\" \/>\n<meta property=\"article:published_time\" content=\"2026-02-28T19:03:47+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-02-28T19:03:49+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/blog.nkasco.com\/wordpress\/wp-content\/uploads\/2026\/02\/image.png\" \/>\n\t<meta property=\"og:image:width\" content=\"2326\" \/>\n\t<meta property=\"og:image:height\" content=\"1182\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Nate Kasco\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@Bu5yGiraffe\" \/>\n<meta name=\"twitter:site\" content=\"@Bu5yGiraffe\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Nate Kasco\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/blog.nkasco.com\/wordpress\/index.php\/2026\/02\/28\/dispatch-a-self-hosted-task-app-that-youll-love-using\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/blog.nkasco.com\/wordpress\/index.php\/2026\/02\/28\/dispatch-a-self-hosted-task-app-that-youll-love-using\/\"},\"author\":{\"name\":\"Nate Kasco\",\"@id\":\"https:\/\/blog.nkasco.com\/wordpress\/#\/schema\/person\/1dfd694a2ed094a43a37dc6882c65eb3\"},\"headline\":\"Dispatch &#8211; A self-hosted task app that you&#8217;ll love using\",\"datePublished\":\"2026-02-28T19:03:47+00:00\",\"dateModified\":\"2026-02-28T19:03:49+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/blog.nkasco.com\/wordpress\/index.php\/2026\/02\/28\/dispatch-a-self-hosted-task-app-that-youll-love-using\/\"},\"wordCount\":405,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/blog.nkasco.com\/wordpress\/#\/schema\/person\/1dfd694a2ed094a43a37dc6882c65eb3\"},\"image\":{\"@id\":\"https:\/\/blog.nkasco.com\/wordpress\/index.php\/2026\/02\/28\/dispatch-a-self-hosted-task-app-that-youll-love-using\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/blog.nkasco.com\/wordpress\/wp-content\/uploads\/2026\/02\/image-1024x520.png\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/blog.nkasco.com\/wordpress\/index.php\/2026\/02\/28\/dispatch-a-self-hosted-task-app-that-youll-love-using\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/blog.nkasco.com\/wordpress\/index.php\/2026\/02\/28\/dispatch-a-self-hosted-task-app-that-youll-love-using\/\",\"url\":\"https:\/\/blog.nkasco.com\/wordpress\/index.php\/2026\/02\/28\/dispatch-a-self-hosted-task-app-that-youll-love-using\/\",\"name\":\"Dispatch - A self-hosted task app that you'll love using - Nathan Kasco - Blog\",\"isPartOf\":{\"@id\":\"https:\/\/blog.nkasco.com\/wordpress\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/blog.nkasco.com\/wordpress\/index.php\/2026\/02\/28\/dispatch-a-self-hosted-task-app-that-youll-love-using\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/blog.nkasco.com\/wordpress\/index.php\/2026\/02\/28\/dispatch-a-self-hosted-task-app-that-youll-love-using\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/blog.nkasco.com\/wordpress\/wp-content\/uploads\/2026\/02\/image-1024x520.png\",\"datePublished\":\"2026-02-28T19:03:47+00:00\",\"dateModified\":\"2026-02-28T19:03:49+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/blog.nkasco.com\/wordpress\/index.php\/2026\/02\/28\/dispatch-a-self-hosted-task-app-that-youll-love-using\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/blog.nkasco.com\/wordpress\/index.php\/2026\/02\/28\/dispatch-a-self-hosted-task-app-that-youll-love-using\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/blog.nkasco.com\/wordpress\/index.php\/2026\/02\/28\/dispatch-a-self-hosted-task-app-that-youll-love-using\/#primaryimage\",\"url\":\"https:\/\/blog.nkasco.com\/wordpress\/wp-content\/uploads\/2026\/02\/image.png\",\"contentUrl\":\"https:\/\/blog.nkasco.com\/wordpress\/wp-content\/uploads\/2026\/02\/image.png\",\"width\":2326,\"height\":1182},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/blog.nkasco.com\/wordpress\/index.php\/2026\/02\/28\/dispatch-a-self-hosted-task-app-that-youll-love-using\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/blog.nkasco.com\/wordpress\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Dispatch &#8211; A self-hosted task app that you&#8217;ll love using\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/blog.nkasco.com\/wordpress\/#website\",\"url\":\"https:\/\/blog.nkasco.com\/wordpress\/\",\"name\":\"Nathan Kasco - Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/blog.nkasco.com\/wordpress\/#\/schema\/person\/1dfd694a2ed094a43a37dc6882c65eb3\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/blog.nkasco.com\/wordpress\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/blog.nkasco.com\/wordpress\/#\/schema\/person\/1dfd694a2ed094a43a37dc6882c65eb3\",\"name\":\"Nate Kasco\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/blog.nkasco.com\/wordpress\/wp-content\/uploads\/2024\/03\/cropped-logo.png\",\"url\":\"https:\/\/blog.nkasco.com\/wordpress\/wp-content\/uploads\/2024\/03\/cropped-logo.png\",\"contentUrl\":\"https:\/\/blog.nkasco.com\/wordpress\/wp-content\/uploads\/2024\/03\/cropped-logo.png\",\"width\":200,\"height\":200,\"caption\":\"Nate Kasco\"},\"logo\":{\"@id\":\"https:\/\/blog.nkasco.com\/wordpress\/wp-content\/uploads\/2024\/03\/cropped-logo.png\"},\"sameAs\":[\"http:\/\/nkascocom.nk\/wordpress\",\"https:\/\/x.com\/Bu5yGiraffe\"],\"url\":\"https:\/\/blog.nkasco.com\/wordpress\/index.php\/author\/nate\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Dispatch - A self-hosted task app that you'll love using - Nathan Kasco - Blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/blog.nkasco.com\/wordpress\/index.php\/2026\/02\/28\/dispatch-a-self-hosted-task-app-that-youll-love-using\/","og_locale":"en_US","og_type":"article","og_title":"Dispatch - A self-hosted task app that you'll love using - Nathan Kasco - Blog","og_description":"Dispatch is a self-hosted workspace that brings everything together in one fast interface, with control over your data and a workflow that is designed for execution. Why Dispatch Exists Most productivity tools are either too lightweight to handle real planning or too complex for day-to-day use. Dispatch aims for the middle: An Agentic Engineering Experiment [&hellip;]","og_url":"https:\/\/blog.nkasco.com\/wordpress\/index.php\/2026\/02\/28\/dispatch-a-self-hosted-task-app-that-youll-love-using\/","og_site_name":"Nathan Kasco - Blog","article_published_time":"2026-02-28T19:03:47+00:00","article_modified_time":"2026-02-28T19:03:49+00:00","og_image":[{"width":2326,"height":1182,"url":"https:\/\/blog.nkasco.com\/wordpress\/wp-content\/uploads\/2026\/02\/image.png","type":"image\/png"}],"author":"Nate Kasco","twitter_card":"summary_large_image","twitter_creator":"@Bu5yGiraffe","twitter_site":"@Bu5yGiraffe","twitter_misc":{"Written by":"Nate Kasco","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/blog.nkasco.com\/wordpress\/index.php\/2026\/02\/28\/dispatch-a-self-hosted-task-app-that-youll-love-using\/#article","isPartOf":{"@id":"https:\/\/blog.nkasco.com\/wordpress\/index.php\/2026\/02\/28\/dispatch-a-self-hosted-task-app-that-youll-love-using\/"},"author":{"name":"Nate Kasco","@id":"https:\/\/blog.nkasco.com\/wordpress\/#\/schema\/person\/1dfd694a2ed094a43a37dc6882c65eb3"},"headline":"Dispatch &#8211; A self-hosted task app that you&#8217;ll love using","datePublished":"2026-02-28T19:03:47+00:00","dateModified":"2026-02-28T19:03:49+00:00","mainEntityOfPage":{"@id":"https:\/\/blog.nkasco.com\/wordpress\/index.php\/2026\/02\/28\/dispatch-a-self-hosted-task-app-that-youll-love-using\/"},"wordCount":405,"commentCount":0,"publisher":{"@id":"https:\/\/blog.nkasco.com\/wordpress\/#\/schema\/person\/1dfd694a2ed094a43a37dc6882c65eb3"},"image":{"@id":"https:\/\/blog.nkasco.com\/wordpress\/index.php\/2026\/02\/28\/dispatch-a-self-hosted-task-app-that-youll-love-using\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.nkasco.com\/wordpress\/wp-content\/uploads\/2026\/02\/image-1024x520.png","inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/blog.nkasco.com\/wordpress\/index.php\/2026\/02\/28\/dispatch-a-self-hosted-task-app-that-youll-love-using\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/blog.nkasco.com\/wordpress\/index.php\/2026\/02\/28\/dispatch-a-self-hosted-task-app-that-youll-love-using\/","url":"https:\/\/blog.nkasco.com\/wordpress\/index.php\/2026\/02\/28\/dispatch-a-self-hosted-task-app-that-youll-love-using\/","name":"Dispatch - A self-hosted task app that you'll love using - Nathan Kasco - Blog","isPartOf":{"@id":"https:\/\/blog.nkasco.com\/wordpress\/#website"},"primaryImageOfPage":{"@id":"https:\/\/blog.nkasco.com\/wordpress\/index.php\/2026\/02\/28\/dispatch-a-self-hosted-task-app-that-youll-love-using\/#primaryimage"},"image":{"@id":"https:\/\/blog.nkasco.com\/wordpress\/index.php\/2026\/02\/28\/dispatch-a-self-hosted-task-app-that-youll-love-using\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.nkasco.com\/wordpress\/wp-content\/uploads\/2026\/02\/image-1024x520.png","datePublished":"2026-02-28T19:03:47+00:00","dateModified":"2026-02-28T19:03:49+00:00","breadcrumb":{"@id":"https:\/\/blog.nkasco.com\/wordpress\/index.php\/2026\/02\/28\/dispatch-a-self-hosted-task-app-that-youll-love-using\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/blog.nkasco.com\/wordpress\/index.php\/2026\/02\/28\/dispatch-a-self-hosted-task-app-that-youll-love-using\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/blog.nkasco.com\/wordpress\/index.php\/2026\/02\/28\/dispatch-a-self-hosted-task-app-that-youll-love-using\/#primaryimage","url":"https:\/\/blog.nkasco.com\/wordpress\/wp-content\/uploads\/2026\/02\/image.png","contentUrl":"https:\/\/blog.nkasco.com\/wordpress\/wp-content\/uploads\/2026\/02\/image.png","width":2326,"height":1182},{"@type":"BreadcrumbList","@id":"https:\/\/blog.nkasco.com\/wordpress\/index.php\/2026\/02\/28\/dispatch-a-self-hosted-task-app-that-youll-love-using\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/blog.nkasco.com\/wordpress\/"},{"@type":"ListItem","position":2,"name":"Dispatch &#8211; A self-hosted task app that you&#8217;ll love using"}]},{"@type":"WebSite","@id":"https:\/\/blog.nkasco.com\/wordpress\/#website","url":"https:\/\/blog.nkasco.com\/wordpress\/","name":"Nathan Kasco - Blog","description":"","publisher":{"@id":"https:\/\/blog.nkasco.com\/wordpress\/#\/schema\/person\/1dfd694a2ed094a43a37dc6882c65eb3"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/blog.nkasco.com\/wordpress\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/blog.nkasco.com\/wordpress\/#\/schema\/person\/1dfd694a2ed094a43a37dc6882c65eb3","name":"Nate Kasco","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/blog.nkasco.com\/wordpress\/wp-content\/uploads\/2024\/03\/cropped-logo.png","url":"https:\/\/blog.nkasco.com\/wordpress\/wp-content\/uploads\/2024\/03\/cropped-logo.png","contentUrl":"https:\/\/blog.nkasco.com\/wordpress\/wp-content\/uploads\/2024\/03\/cropped-logo.png","width":200,"height":200,"caption":"Nate Kasco"},"logo":{"@id":"https:\/\/blog.nkasco.com\/wordpress\/wp-content\/uploads\/2024\/03\/cropped-logo.png"},"sameAs":["http:\/\/nkascocom.nk\/wordpress","https:\/\/x.com\/Bu5yGiraffe"],"url":"https:\/\/blog.nkasco.com\/wordpress\/index.php\/author\/nate\/"}]}},"_links":{"self":[{"href":"https:\/\/blog.nkasco.com\/wordpress\/index.php\/wp-json\/wp\/v2\/posts\/283","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blog.nkasco.com\/wordpress\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.nkasco.com\/wordpress\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.nkasco.com\/wordpress\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.nkasco.com\/wordpress\/index.php\/wp-json\/wp\/v2\/comments?post=283"}],"version-history":[{"count":4,"href":"https:\/\/blog.nkasco.com\/wordpress\/index.php\/wp-json\/wp\/v2\/posts\/283\/revisions"}],"predecessor-version":[{"id":297,"href":"https:\/\/blog.nkasco.com\/wordpress\/index.php\/wp-json\/wp\/v2\/posts\/283\/revisions\/297"}],"wp:attachment":[{"href":"https:\/\/blog.nkasco.com\/wordpress\/index.php\/wp-json\/wp\/v2\/media?parent=283"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.nkasco.com\/wordpress\/index.php\/wp-json\/wp\/v2\/categories?post=283"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.nkasco.com\/wordpress\/index.php\/wp-json\/wp\/v2\/tags?post=283"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}