{"id":66,"date":"2024-10-16T23:16:38","date_gmt":"2024-10-17T03:16:38","guid":{"rendered":"http:\/\/localhost:4000\/?p=66"},"modified":"2024-11-15T00:10:19","modified_gmt":"2024-11-15T05:10:19","slug":"the-0-home-server","status":"publish","type":"post","link":"https:\/\/zenteno.org\/tech-talks\/the-0-home-server\/","title":{"rendered":"The $0 Home Server"},"content":{"rendered":"\n<p>The <strong>$0 Home Server<\/strong> is a budget-friendly way to transform an old, underpowered computer\u2014like an old laptop\u2014into a <strong>home server<\/strong> capable of handling multiple useful tasks. This guide, by Chris Kalos, walks you through the steps to repurpose such a device without spending any extra money.<\/p>\n\n\n\n<p>Here\u2019s what the <strong>$0 Home Server<\/strong> can do:<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Key Components and Functions of the $0 Home Server:<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">1. <strong>Hardware Requirements<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Any 64-bit computer<\/strong> (even very old ones, like a 2009 Core 2 Duo laptop).<\/li>\n\n\n\n<li>At least <strong>2GB RAM<\/strong> is recommended, but it can run with less.<\/li>\n\n\n\n<li>Ethernet connection is preferred for better performance and remote access.<\/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\"><strong>Step-by-Step Setup<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>1. Install Ubuntu Server LTS (without GUI)<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Why Ubuntu Server?<\/strong><br>It\u2019s lightweight, well-supported, and perfect for running headless servers.<\/li>\n\n\n\n<li><strong>Disable LVM partitioning<\/strong> during installation to avoid disk management issues.<\/li>\n\n\n\n<li>Keep the laptop connected to <strong>Ethernet<\/strong> and disable sleep mode when closing the lid.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>2. Reserve a Static IP for the Server<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Reserve a <strong>local IP address<\/strong> in your router\u2019s settings to ensure the IP stays the same.<br>This is essential for accessing the server and configuring tools like Samba and VPN.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>3. Connect via SSH<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use SSH to access the server from another computer on the network:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>  ssh &#91;username]@&#91;server IP]<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Features of the $0 Home Server<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>1. Network Storage with Samba<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Samba<\/strong> allows the server to act as a shared <strong>network drive<\/strong>.<\/li>\n\n\n\n<li>Install Samba:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>  sudo apt install samba<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Configure Samba by editing:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>  sudo nano \/etc\/samba\/smb.conf<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Create shared folders (e.g., <code>\/media\/myfiles<\/code>) and <strong>set permissions<\/strong> to access them from any device (Windows, macOS, or Linux).<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>2. Media Server with Jellyfin<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Jellyfin<\/strong> is a <strong>free, open-source media server<\/strong> with a Netflix-like UI.<\/li>\n\n\n\n<li>Install Jellyfin with:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>  curl https:\/\/repo.jellyfin.org\/install-debuntu.sh | sudo bash<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Access it via your browser at <code>http:\/\/[server IP]:8096<\/code>.<\/li>\n\n\n\n<li>Store media in shared folders (e.g., <code>\/media\/myfiles\/movies<\/code>).<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>3. VPN to Your Home Network with WireGuard<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>WireGuard VPN<\/strong> allows remote access to your home server from anywhere.<\/li>\n\n\n\n<li><strong>Set up DuckDNS<\/strong> to create a domain that points to your home IP.<\/li>\n\n\n\n<li>Use <strong>port forwarding<\/strong> to open port <strong>51820<\/strong> on your router.<\/li>\n\n\n\n<li>Install WireGuard via <strong>PiVPN<\/strong>:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>  curl -L https:\/\/install.pivpn.io | bash<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Generate a VPN configuration and connect from your phone or other devices by scanning a <strong>QR code<\/strong>.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>4. Wake-on-LAN Support<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Wake sleeping or powered-off devices remotely using <strong>Wake-on-LAN<\/strong>.<\/li>\n\n\n\n<li>Install Etherwake on the server:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>  sudo apt install etherwake<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Set Wake-on-LAN options in your <strong>BIOS\/UEFI<\/strong> and <strong>Device Manager<\/strong> (Windows).<\/li>\n\n\n\n<li>Create a <strong>Siri Shortcut<\/strong> or use <strong>Tasker<\/strong> (Android) to wake the device remotely with:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>  etherwake -i &#91;network interface] -b &#91;MAC address]<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Why This Setup is Useful<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Personal Media Server:<\/strong> Access your media from anywhere using Jellyfin.<\/li>\n\n\n\n<li><strong>Network Storage:<\/strong> Store files centrally and access them from any device on your network.<\/li>\n\n\n\n<li><strong>VPN Access:<\/strong> Securely connect to your home network from anywhere in the world.<\/li>\n\n\n\n<li><strong>Wake-on-LAN:<\/strong> Turn on devices remotely when needed.<\/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\"><strong>Summary of the $0 Home Server<\/strong><\/h2>\n\n\n\n<p>The <strong>$0 Home Server<\/strong> transforms an old laptop into a <strong>media server, network storage solution, VPN gateway<\/strong>, and <strong>remote wake tool<\/strong> without spending any money. It relies on <strong>free, open-source software<\/strong> like Ubuntu Server, Samba, Jellyfin, and WireGuard.<\/p>\n\n\n\n<p>This setup offers a practical way to <strong>repurpose old hardware<\/strong> while improving your home network and gaining more control over your data\u2014without needing to buy additional hardware.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe title=\"The $0 Home Server\" width=\"500\" height=\"281\" src=\"https:\/\/www.youtube.com\/embed\/IuRWqzfX1ik?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen><\/iframe>\n<\/div><figcaption class=\"wp-element-caption\">The $0 Home server<\/figcaption><\/figure>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>The $0 Home Server is a budget-friendly way to transform an old, underpowered computer\u2014like an old laptop\u2014into a home server capable of handling multiple useful tasks. This guide, by Chris Kalos, walks you through the steps to repurpose such a device without spending any extra money. Here\u2019s what the $0 Home Server can do: Key [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":77,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4],"tags":[28,27,7,8,6,14,11],"class_list":["post-66","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tech","tag-home-server","tag-jellyfin","tag-samba","tag-server","tag-ubuntu","tag-wake-on-lan","tag-wireguard"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>The $0 Home Server - My Tech Talks with ChatGPT<\/title>\n<meta name=\"description\" content=\"The $0 Home Server is a budget-friendly way to transform an old computer into a home server capable of handling multiple useful tasks.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/zenteno.org\/tech-talks\/the-0-home-server\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"The $0 Home Server - My Tech Talks with ChatGPT\" \/>\n<meta property=\"og:description\" content=\"The $0 Home Server is a budget-friendly way to transform an old computer into a home server capable of handling multiple useful tasks.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zenteno.org\/tech-talks\/the-0-home-server\/\" \/>\n<meta property=\"og:site_name\" content=\"My Tech Talks with ChatGPT\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-17T03:16:38+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-15T05:10:19+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/0homeserver-2.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"720\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"adminwp\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"adminwp\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/zenteno.org\/tech-talks\/the-0-home-server\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/zenteno.org\/tech-talks\/the-0-home-server\/\"},\"author\":{\"name\":\"adminwp\",\"@id\":\"https:\/\/zenteno.org\/tech-talks\/#\/schema\/person\/b6442e8a5e39de0647f2ecf534e18580\"},\"headline\":\"The $0 Home Server\",\"datePublished\":\"2024-10-17T03:16:38+00:00\",\"dateModified\":\"2024-11-15T05:10:19+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/zenteno.org\/tech-talks\/the-0-home-server\/\"},\"wordCount\":506,\"publisher\":{\"@id\":\"https:\/\/zenteno.org\/tech-talks\/#\/schema\/person\/b6442e8a5e39de0647f2ecf534e18580\"},\"image\":{\"@id\":\"https:\/\/zenteno.org\/tech-talks\/the-0-home-server\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/0homeserver-2.jpg\",\"keywords\":[\"home server\",\"jellyfin\",\"samba\",\"server\",\"ubuntu\",\"wake-on-lan\",\"wireguard\"],\"articleSection\":[\"Technology\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/zenteno.org\/tech-talks\/the-0-home-server\/\",\"url\":\"https:\/\/zenteno.org\/tech-talks\/the-0-home-server\/\",\"name\":\"The $0 Home Server - My Tech Talks with ChatGPT\",\"isPartOf\":{\"@id\":\"https:\/\/zenteno.org\/tech-talks\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/zenteno.org\/tech-talks\/the-0-home-server\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/zenteno.org\/tech-talks\/the-0-home-server\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/0homeserver-2.jpg\",\"datePublished\":\"2024-10-17T03:16:38+00:00\",\"dateModified\":\"2024-11-15T05:10:19+00:00\",\"description\":\"The $0 Home Server is a budget-friendly way to transform an old computer into a home server capable of handling multiple useful tasks.\",\"breadcrumb\":{\"@id\":\"https:\/\/zenteno.org\/tech-talks\/the-0-home-server\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/zenteno.org\/tech-talks\/the-0-home-server\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/zenteno.org\/tech-talks\/the-0-home-server\/#primaryimage\",\"url\":\"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/0homeserver-2.jpg\",\"contentUrl\":\"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/0homeserver-2.jpg\",\"width\":1280,\"height\":720},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/zenteno.org\/tech-talks\/the-0-home-server\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/zenteno.org\/tech-talks\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"The $0 Home Server\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/zenteno.org\/tech-talks\/#website\",\"url\":\"https:\/\/zenteno.org\/tech-talks\/\",\"name\":\"My Tech Talks with ChatGPT\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/zenteno.org\/tech-talks\/#\/schema\/person\/b6442e8a5e39de0647f2ecf534e18580\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/zenteno.org\/tech-talks\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/zenteno.org\/tech-talks\/#\/schema\/person\/b6442e8a5e39de0647f2ecf534e18580\",\"name\":\"adminwp\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/zenteno.org\/tech-talks\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/IMG_1739.jpg\",\"contentUrl\":\"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/IMG_1739.jpg\",\"width\":512,\"height\":512,\"caption\":\"adminwp\"},\"logo\":{\"@id\":\"https:\/\/zenteno.org\/tech-talks\/#\/schema\/person\/image\/\"},\"sameAs\":[\"http:\/\/localhost:4000\"],\"url\":\"https:\/\/zenteno.org\/tech-talks\/author\/adminwp\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"The $0 Home Server - My Tech Talks with ChatGPT","description":"The $0 Home Server is a budget-friendly way to transform an old computer into a home server capable of handling multiple useful tasks.","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:\/\/zenteno.org\/tech-talks\/the-0-home-server\/","og_locale":"en_US","og_type":"article","og_title":"The $0 Home Server - My Tech Talks with ChatGPT","og_description":"The $0 Home Server is a budget-friendly way to transform an old computer into a home server capable of handling multiple useful tasks.","og_url":"https:\/\/zenteno.org\/tech-talks\/the-0-home-server\/","og_site_name":"My Tech Talks with ChatGPT","article_published_time":"2024-10-17T03:16:38+00:00","article_modified_time":"2024-11-15T05:10:19+00:00","og_image":[{"width":1280,"height":720,"url":"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/0homeserver-2.jpg","type":"image\/jpeg"}],"author":"adminwp","twitter_card":"summary_large_image","twitter_misc":{"Written by":"adminwp","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zenteno.org\/tech-talks\/the-0-home-server\/#article","isPartOf":{"@id":"https:\/\/zenteno.org\/tech-talks\/the-0-home-server\/"},"author":{"name":"adminwp","@id":"https:\/\/zenteno.org\/tech-talks\/#\/schema\/person\/b6442e8a5e39de0647f2ecf534e18580"},"headline":"The $0 Home Server","datePublished":"2024-10-17T03:16:38+00:00","dateModified":"2024-11-15T05:10:19+00:00","mainEntityOfPage":{"@id":"https:\/\/zenteno.org\/tech-talks\/the-0-home-server\/"},"wordCount":506,"publisher":{"@id":"https:\/\/zenteno.org\/tech-talks\/#\/schema\/person\/b6442e8a5e39de0647f2ecf534e18580"},"image":{"@id":"https:\/\/zenteno.org\/tech-talks\/the-0-home-server\/#primaryimage"},"thumbnailUrl":"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/0homeserver-2.jpg","keywords":["home server","jellyfin","samba","server","ubuntu","wake-on-lan","wireguard"],"articleSection":["Technology"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/zenteno.org\/tech-talks\/the-0-home-server\/","url":"https:\/\/zenteno.org\/tech-talks\/the-0-home-server\/","name":"The $0 Home Server - My Tech Talks with ChatGPT","isPartOf":{"@id":"https:\/\/zenteno.org\/tech-talks\/#website"},"primaryImageOfPage":{"@id":"https:\/\/zenteno.org\/tech-talks\/the-0-home-server\/#primaryimage"},"image":{"@id":"https:\/\/zenteno.org\/tech-talks\/the-0-home-server\/#primaryimage"},"thumbnailUrl":"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/0homeserver-2.jpg","datePublished":"2024-10-17T03:16:38+00:00","dateModified":"2024-11-15T05:10:19+00:00","description":"The $0 Home Server is a budget-friendly way to transform an old computer into a home server capable of handling multiple useful tasks.","breadcrumb":{"@id":"https:\/\/zenteno.org\/tech-talks\/the-0-home-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zenteno.org\/tech-talks\/the-0-home-server\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/zenteno.org\/tech-talks\/the-0-home-server\/#primaryimage","url":"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/0homeserver-2.jpg","contentUrl":"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/0homeserver-2.jpg","width":1280,"height":720},{"@type":"BreadcrumbList","@id":"https:\/\/zenteno.org\/tech-talks\/the-0-home-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zenteno.org\/tech-talks\/"},{"@type":"ListItem","position":2,"name":"The $0 Home Server"}]},{"@type":"WebSite","@id":"https:\/\/zenteno.org\/tech-talks\/#website","url":"https:\/\/zenteno.org\/tech-talks\/","name":"My Tech Talks with ChatGPT","description":"","publisher":{"@id":"https:\/\/zenteno.org\/tech-talks\/#\/schema\/person\/b6442e8a5e39de0647f2ecf534e18580"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/zenteno.org\/tech-talks\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/zenteno.org\/tech-talks\/#\/schema\/person\/b6442e8a5e39de0647f2ecf534e18580","name":"adminwp","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/zenteno.org\/tech-talks\/#\/schema\/person\/image\/","url":"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/IMG_1739.jpg","contentUrl":"https:\/\/zenteno.org\/tech-talks\/wp-content\/uploads\/2024\/10\/IMG_1739.jpg","width":512,"height":512,"caption":"adminwp"},"logo":{"@id":"https:\/\/zenteno.org\/tech-talks\/#\/schema\/person\/image\/"},"sameAs":["http:\/\/localhost:4000"],"url":"https:\/\/zenteno.org\/tech-talks\/author\/adminwp\/"}]}},"_links":{"self":[{"href":"https:\/\/zenteno.org\/tech-talks\/wp-json\/wp\/v2\/posts\/66","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/zenteno.org\/tech-talks\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/zenteno.org\/tech-talks\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/zenteno.org\/tech-talks\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/zenteno.org\/tech-talks\/wp-json\/wp\/v2\/comments?post=66"}],"version-history":[{"count":3,"href":"https:\/\/zenteno.org\/tech-talks\/wp-json\/wp\/v2\/posts\/66\/revisions"}],"predecessor-version":[{"id":193,"href":"https:\/\/zenteno.org\/tech-talks\/wp-json\/wp\/v2\/posts\/66\/revisions\/193"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/zenteno.org\/tech-talks\/wp-json\/wp\/v2\/media\/77"}],"wp:attachment":[{"href":"https:\/\/zenteno.org\/tech-talks\/wp-json\/wp\/v2\/media?parent=66"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zenteno.org\/tech-talks\/wp-json\/wp\/v2\/categories?post=66"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zenteno.org\/tech-talks\/wp-json\/wp\/v2\/tags?post=66"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}