{"id":3672,"date":"2024-07-15T18:40:12","date_gmt":"2024-07-15T16:40:12","guid":{"rendered":"https:\/\/www.robinglauser.ch\/blog\/?p=3672"},"modified":"2024-07-15T18:40:12","modified_gmt":"2024-07-15T16:40:12","slug":"beyond-the-happy-path","status":"publish","type":"post","link":"https:\/\/www.robinglauser.ch\/blog\/2024\/07\/15\/beyond-the-happy-path\/","title":{"rendered":"Beyond the &#8220;Happy Path&#8221;"},"content":{"rendered":"<p>In software development, we often focus on the &#8220;happy path&#8221;. It&#8217;s the ideal route through a system when everything goes as planned. To create robust and user-friendly applications, we need to venture beyond this path and explore the paths of potential errors.<\/p>\n<p>This article discusses a proactive approach to error management that combines intentional error triggering with comprehensive error documentation and guidance, when an error happens.<\/p>\n<h2>The Happy Path and Beyond<\/h2>\n<p>The &#8220;happy path&#8221; represents the optimal flow through a system. For example, in a <a href=\"https:\/\/bmcmedinformdecismak.biomedcentral.com\/articles\/10.1186\/s12911-023-02210-7\">robot control application<\/a>, the happy path for connecting to a robot might be:<\/p>\n<ol>\n<li>Enter the correct IP address<\/li>\n<li>Initiate the connection<\/li>\n<li>Successfully establish a websocket connection<\/li>\n<li>Begin robot control<\/li>\n<\/ol>\n<p>However, users, especially newcomers, sometimes stray from this path. To create a more robust system, we need to prepare for these deviations.<\/p>\n<h2>Intentionally Triggering Errors<\/h2>\n<p>The key to understand where users stray from the path and what then happens is to intentionally trigger and document errors. This process involves:<\/p>\n<ol>\n<li><strong>Identifying Potential Error Points<\/strong>: For each feature or process, brainstorm ways it could fail or be misused.<\/li>\n<li><strong>Systematically Triggering Errors<\/strong>: Deliberately cause each identified error scenario.<\/li>\n<li><strong>Documenting the Results<\/strong>: Record the steps to reproduce, error messages, and system state for each triggered error.<\/li>\n<\/ol>\n<p>For our robot connection example, we might intentionally trigger errors by:<\/p>\n<ul>\n<li>Entering an incorrect IP address<\/li>\n<li>Trying to connect while the robot is powered off<\/li>\n<li>Attempting the connection with a firewall blocking the necessary ports<\/li>\n<\/ul>\n<h2>Comprehensive Error Documentation and Guidance<\/h2>\n<p>Once we&#8217;ve triggered and documented these errors, we can create informative error messages and guidance. Let&#8217;s look at a real-world example of how this might be implemented:<\/p>\n<pre><code>def connect(self, ip, waiting=True):\r\n    # ... (connection attempt code) ...\r\n\r\n    while not self.is_connected and waiting:\r\n        sleep(0.1)\r\n        i = i + 1\r\n        if i &gt; 50:\r\n            print(\"\")\r\n            width = len(\"Make sure your laptop is not using a firewall or other security software that blocks the connection\") + 3\r\n            print(\"\")\r\n            print(\" Could not connect to robot, please check the following:\")\r\n            print(\" - Make sure the robot is turned on\")\r\n            print(\" - Make sure the laptop is connected to the same network as the robot\")\r\n            print(\" - Make sure you have the correct ip address of the robot (\" + ip + \")\")\r\n            print(\" - Make sure that your laptop is not using a firewall or other security software that blocks the connection\")\r\n            hostname = socket.gethostname()\r\n            IPAddr = socket.gethostbyname(hostname)\r\n            print(\" - Your Computer Name is: \" + hostname)\r\n            print(\" - Your Computer IP Address is: \" + IPAddr)\r\n            print(f\"\\\\{'_' * width}\/\" + self.character)\r\n            exit(1)<\/code><\/pre>\n<p>In this case it&#8217;s easy to catch the errors, as all the errors end up as a &#8220;Not being able to connect&#8221; error. So catching the error and then showing a useful error message with tips on what could have gone wrong can lead to a smoother experience for inexperienced users.<\/p>\n<p>When this code runs and runs into a timeout while trying to connect, it produces an output that looks like this:<\/p>\n<pre><code>Trying to connect to ws:\/\/10.0.233.55\/live\r\nConnecting ..................................................\r\n\r\n Could not connect to robot, please check the following:\r\n - Make sure the robot is turned on\r\n - Make sure the laptop is connected to the same network as the robot\r\n - Make sure you have the correct ip address of the robot (10.0.233.55)\r\n - Make sure that your laptop is not using a firewall or other security software that blocks the connection\r\n - Your Computer Name is: user-laptop\r\n - Your Computer IP Address is: 192.168.1.100\r\n\\__________________________________________________________________________________________\/\r\n _-_  | \/\r\n\/_  \\ |\/\r\n(o)(o)\r\n| | |\r\n| \\\/ \/\r\n\\    |\r\n \u00af--\u00af<\/code><\/pre>\n<p>This error output demonstrates several key principles:<\/p>\n<ol>\n<li><strong>Clear Error Identification<\/strong>: It states that the connection to the robot failed.<\/li>\n<li><strong>Actionable Steps<\/strong>: It provides a list of specific things the user can check.<\/li>\n<li><strong>Relevant Context<\/strong>: It includes the IP address the user was trying to connect to (10.0.233.55).<\/li>\n<li><strong>Debug Information<\/strong>: It provides additional information like the user&#8217;s computer name and IP address.<\/li>\n<li><strong>Visual Separation<\/strong>: The error message is visually separated from other output, making it easy to read and understand.<\/li>\n<li><strong>Memorable Presentation<\/strong>: The inclusion of the ASCII art character adds a touch of personality and makes the error message stand out more. :)<\/li>\n<\/ol>\n<p>If there is a stacktrace, you should still display it, as it might contain more information about the error. In this case with the timeout there is no stacktrace from an exception.<\/p>\n<h2>Implementing a Proactive Error Management Approach<\/h2>\n<p>To implement this approach in your own projects:<\/p>\n<ol>\n<li><strong>Map the Happy Path<\/strong>: Document the ideal flow through each feature or process.<\/li>\n<li><strong>Identify Deviation Points<\/strong>: For each step in the happy path, consider how users might deviate.<\/li>\n<li><strong>Trigger Errors Intentionally<\/strong>: Systematically cause each identified error scenario.<\/li>\n<li><strong>Document Thoroughly<\/strong>: For each triggered error, record:\n<ul>\n<li>Steps to reproduce<\/li>\n<li>Resulting error message or behavior<\/li>\n<li>Relevant system state or environment details<\/li>\n<\/ul>\n<\/li>\n<li><strong>Craft Informative Error Messages<\/strong>: Based on your documentation, create error messages that:\n<ul>\n<li>Clearly state what went wrong<\/li>\n<li>Provide actionable steps for resolution<\/li>\n<li>Include relevant context and debug information<\/li>\n<\/ul>\n<\/li>\n<li><strong>Implement in Code<\/strong>: Add these comprehensive error messages to your error handling logic.<\/li>\n<li><strong>Continuous Improvement<\/strong>: Regularly review and update your error catalog based on user feedback and new discoveries.<\/li>\n<\/ol>\n<h2>Benefits<\/h2>\n<ol>\n<li><strong>Improved User Experience<\/strong>: Users encounter more helpful, actionable error messages.<\/li>\n<li><strong>Reduced Support Burden<\/strong>: Many issues can be resolved without contacting support \/ you.<\/li>\n<li><strong>Faster Debugging<\/strong>: Developers can identify and fix issues with comprehensive error information.<\/li>\n<li><strong>More Robust Software<\/strong>: By anticipating and handling various error scenarios, your software becomes more resilient.<\/li>\n<li><strong>Educational Opportunity<\/strong>: Detailed error messages help users understand the system better and also teach them to solve errors on their own.<\/li>\n<\/ol>\n<h2>Conclusion<\/h2>\n<p>By venturing beyond the happy path, deliberately exploring error scenarios, and providing informative guidance, we create software that&#8217;s not only more robust but also more user-friendly.<\/p>\n<p><strong>In the world of software development, errors are not just problems to be solved\u2014they&#8217;re opportunities to improve user experience and system reliability.<\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"<p class=\"excerpt\">In software development, we often focus on the &#8220;happy path&#8221;. It&#8217;s the ideal route through a system when everything goes as planned. To create robust and user-friendly applications, we need to venture beyond this path and explore the paths of potential errors. This article discusses a proactive approach to error management that combines intentional error triggering with comprehensive error documentation &#8230; <a class=\"read-more\" href=\"https:\/\/www.robinglauser.ch\/blog\/2024\/07\/15\/beyond-the-happy-path\/\">Read More<\/a><\/p>\n","protected":false},"author":2,"featured_media":3683,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[45],"tags":[452,450,449,451],"class_list":["post-3672","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-development","tag-developer-experience","tag-happy-path","tag-proactive-error-management","tag-user-experience"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Beyond the &quot;Happy Path&quot; - Robin Glauser<\/title>\n<meta name=\"description\" content=\"In software development, we often focus on the &quot;happy path&quot;. It&#039;s the ideal route through a system when everything goes as planned. To create robust and user-friendly applications, we need to venture beyond this path and explore the paths of potential errors.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.robinglauser.ch\/blog\/2024\/07\/15\/beyond-the-happy-path\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Beyond the &quot;Happy Path&quot; - Robin Glauser\" \/>\n<meta property=\"og:description\" content=\"In software development, we often focus on the &quot;happy path&quot;. It&#039;s the ideal route through a system when everything goes as planned. To create robust and user-friendly applications, we need to venture beyond this path and explore the paths of potential errors.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.robinglauser.ch\/blog\/2024\/07\/15\/beyond-the-happy-path\/\" \/>\n<meta property=\"og:site_name\" content=\"Robin Glauser\" \/>\n<meta property=\"article:published_time\" content=\"2024-07-15T16:40:12+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2024\/07\/ugne-vasyliute-Dag9cv89jb4-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"853\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Robin Glauser\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@robinglauser\" \/>\n<meta name=\"twitter:site\" content=\"@robinglauser\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Robin Glauser\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.robinglauser.ch\/blog\/2024\/07\/15\/beyond-the-happy-path\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.robinglauser.ch\/blog\/2024\/07\/15\/beyond-the-happy-path\/\"},\"author\":{\"name\":\"Robin Glauser\",\"@id\":\"https:\/\/www.robinglauser.ch\/blog\/#\/schema\/person\/e1a94504a6ff5171fa13670932514b19\"},\"headline\":\"Beyond the &#8220;Happy Path&#8221;\",\"datePublished\":\"2024-07-15T16:40:12+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.robinglauser.ch\/blog\/2024\/07\/15\/beyond-the-happy-path\/\"},\"wordCount\":738,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.robinglauser.ch\/blog\/#\/schema\/person\/e1a94504a6ff5171fa13670932514b19\"},\"image\":{\"@id\":\"https:\/\/www.robinglauser.ch\/blog\/2024\/07\/15\/beyond-the-happy-path\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2024\/07\/ugne-vasyliute-Dag9cv89jb4-unsplash.jpg\",\"keywords\":[\"developer experience\",\"happy path\",\"proactive error management\",\"user experience\"],\"articleSection\":[\"Development\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.robinglauser.ch\/blog\/2024\/07\/15\/beyond-the-happy-path\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.robinglauser.ch\/blog\/2024\/07\/15\/beyond-the-happy-path\/\",\"url\":\"https:\/\/www.robinglauser.ch\/blog\/2024\/07\/15\/beyond-the-happy-path\/\",\"name\":\"Beyond the \\\"Happy Path\\\" - Robin Glauser\",\"isPartOf\":{\"@id\":\"https:\/\/www.robinglauser.ch\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.robinglauser.ch\/blog\/2024\/07\/15\/beyond-the-happy-path\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.robinglauser.ch\/blog\/2024\/07\/15\/beyond-the-happy-path\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2024\/07\/ugne-vasyliute-Dag9cv89jb4-unsplash.jpg\",\"datePublished\":\"2024-07-15T16:40:12+00:00\",\"description\":\"In software development, we often focus on the \\\"happy path\\\". It's the ideal route through a system when everything goes as planned. To create robust and user-friendly applications, we need to venture beyond this path and explore the paths of potential errors.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.robinglauser.ch\/blog\/2024\/07\/15\/beyond-the-happy-path\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.robinglauser.ch\/blog\/2024\/07\/15\/beyond-the-happy-path\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.robinglauser.ch\/blog\/2024\/07\/15\/beyond-the-happy-path\/#primaryimage\",\"url\":\"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2024\/07\/ugne-vasyliute-Dag9cv89jb4-unsplash.jpg\",\"contentUrl\":\"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2024\/07\/ugne-vasyliute-Dag9cv89jb4-unsplash.jpg\",\"width\":1280,\"height\":853},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.robinglauser.ch\/blog\/2024\/07\/15\/beyond-the-happy-path\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.robinglauser.ch\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Beyond the &#8220;Happy Path&#8221;\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.robinglauser.ch\/blog\/#website\",\"url\":\"https:\/\/www.robinglauser.ch\/blog\/\",\"name\":\"Robin Glauser\",\"description\":\"My Blog about Development, Design and my random thoughts.\",\"publisher\":{\"@id\":\"https:\/\/www.robinglauser.ch\/blog\/#\/schema\/person\/e1a94504a6ff5171fa13670932514b19\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.robinglauser.ch\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/www.robinglauser.ch\/blog\/#\/schema\/person\/e1a94504a6ff5171fa13670932514b19\",\"name\":\"Robin Glauser\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2015\/10\/DSC_1244_small.jpg\",\"url\":\"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2015\/10\/DSC_1244_small.jpg\",\"contentUrl\":\"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2015\/10\/DSC_1244_small.jpg\",\"width\":800,\"height\":530,\"caption\":\"Robin Glauser\"},\"logo\":{\"@id\":\"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2015\/10\/DSC_1244_small.jpg\"},\"description\":\"I'm a web developer.\",\"sameAs\":[\"https:\/\/www.robinglauser.ch\",\"https:\/\/www.instagram.com\/robinglauser\/\",\"https:\/\/x.com\/robinglauser\"],\"url\":\"https:\/\/www.robinglauser.ch\/blog\/author\/robin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Beyond the \"Happy Path\" - Robin Glauser","description":"In software development, we often focus on the \"happy path\". It's the ideal route through a system when everything goes as planned. To create robust and user-friendly applications, we need to venture beyond this path and explore the paths of potential errors.","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:\/\/www.robinglauser.ch\/blog\/2024\/07\/15\/beyond-the-happy-path\/","og_locale":"en_US","og_type":"article","og_title":"Beyond the \"Happy Path\" - Robin Glauser","og_description":"In software development, we often focus on the \"happy path\". It's the ideal route through a system when everything goes as planned. To create robust and user-friendly applications, we need to venture beyond this path and explore the paths of potential errors.","og_url":"https:\/\/www.robinglauser.ch\/blog\/2024\/07\/15\/beyond-the-happy-path\/","og_site_name":"Robin Glauser","article_published_time":"2024-07-15T16:40:12+00:00","og_image":[{"width":1280,"height":853,"url":"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2024\/07\/ugne-vasyliute-Dag9cv89jb4-unsplash.jpg","type":"image\/jpeg"}],"author":"Robin Glauser","twitter_card":"summary_large_image","twitter_creator":"@robinglauser","twitter_site":"@robinglauser","twitter_misc":{"Written by":"Robin Glauser","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.robinglauser.ch\/blog\/2024\/07\/15\/beyond-the-happy-path\/#article","isPartOf":{"@id":"https:\/\/www.robinglauser.ch\/blog\/2024\/07\/15\/beyond-the-happy-path\/"},"author":{"name":"Robin Glauser","@id":"https:\/\/www.robinglauser.ch\/blog\/#\/schema\/person\/e1a94504a6ff5171fa13670932514b19"},"headline":"Beyond the &#8220;Happy Path&#8221;","datePublished":"2024-07-15T16:40:12+00:00","mainEntityOfPage":{"@id":"https:\/\/www.robinglauser.ch\/blog\/2024\/07\/15\/beyond-the-happy-path\/"},"wordCount":738,"commentCount":0,"publisher":{"@id":"https:\/\/www.robinglauser.ch\/blog\/#\/schema\/person\/e1a94504a6ff5171fa13670932514b19"},"image":{"@id":"https:\/\/www.robinglauser.ch\/blog\/2024\/07\/15\/beyond-the-happy-path\/#primaryimage"},"thumbnailUrl":"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2024\/07\/ugne-vasyliute-Dag9cv89jb4-unsplash.jpg","keywords":["developer experience","happy path","proactive error management","user experience"],"articleSection":["Development"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.robinglauser.ch\/blog\/2024\/07\/15\/beyond-the-happy-path\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.robinglauser.ch\/blog\/2024\/07\/15\/beyond-the-happy-path\/","url":"https:\/\/www.robinglauser.ch\/blog\/2024\/07\/15\/beyond-the-happy-path\/","name":"Beyond the \"Happy Path\" - Robin Glauser","isPartOf":{"@id":"https:\/\/www.robinglauser.ch\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.robinglauser.ch\/blog\/2024\/07\/15\/beyond-the-happy-path\/#primaryimage"},"image":{"@id":"https:\/\/www.robinglauser.ch\/blog\/2024\/07\/15\/beyond-the-happy-path\/#primaryimage"},"thumbnailUrl":"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2024\/07\/ugne-vasyliute-Dag9cv89jb4-unsplash.jpg","datePublished":"2024-07-15T16:40:12+00:00","description":"In software development, we often focus on the \"happy path\". It's the ideal route through a system when everything goes as planned. To create robust and user-friendly applications, we need to venture beyond this path and explore the paths of potential errors.","breadcrumb":{"@id":"https:\/\/www.robinglauser.ch\/blog\/2024\/07\/15\/beyond-the-happy-path\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.robinglauser.ch\/blog\/2024\/07\/15\/beyond-the-happy-path\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.robinglauser.ch\/blog\/2024\/07\/15\/beyond-the-happy-path\/#primaryimage","url":"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2024\/07\/ugne-vasyliute-Dag9cv89jb4-unsplash.jpg","contentUrl":"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2024\/07\/ugne-vasyliute-Dag9cv89jb4-unsplash.jpg","width":1280,"height":853},{"@type":"BreadcrumbList","@id":"https:\/\/www.robinglauser.ch\/blog\/2024\/07\/15\/beyond-the-happy-path\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.robinglauser.ch\/blog\/"},{"@type":"ListItem","position":2,"name":"Beyond the &#8220;Happy Path&#8221;"}]},{"@type":"WebSite","@id":"https:\/\/www.robinglauser.ch\/blog\/#website","url":"https:\/\/www.robinglauser.ch\/blog\/","name":"Robin Glauser","description":"My Blog about Development, Design and my random thoughts.","publisher":{"@id":"https:\/\/www.robinglauser.ch\/blog\/#\/schema\/person\/e1a94504a6ff5171fa13670932514b19"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.robinglauser.ch\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/www.robinglauser.ch\/blog\/#\/schema\/person\/e1a94504a6ff5171fa13670932514b19","name":"Robin Glauser","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2015\/10\/DSC_1244_small.jpg","url":"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2015\/10\/DSC_1244_small.jpg","contentUrl":"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2015\/10\/DSC_1244_small.jpg","width":800,"height":530,"caption":"Robin Glauser"},"logo":{"@id":"https:\/\/www.robinglauser.ch\/blog\/wp-content\/uploads\/2015\/10\/DSC_1244_small.jpg"},"description":"I'm a web developer.","sameAs":["https:\/\/www.robinglauser.ch","https:\/\/www.instagram.com\/robinglauser\/","https:\/\/x.com\/robinglauser"],"url":"https:\/\/www.robinglauser.ch\/blog\/author\/robin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.robinglauser.ch\/blog\/wp-json\/wp\/v2\/posts\/3672","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.robinglauser.ch\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.robinglauser.ch\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.robinglauser.ch\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.robinglauser.ch\/blog\/wp-json\/wp\/v2\/comments?post=3672"}],"version-history":[{"count":19,"href":"https:\/\/www.robinglauser.ch\/blog\/wp-json\/wp\/v2\/posts\/3672\/revisions"}],"predecessor-version":[{"id":3703,"href":"https:\/\/www.robinglauser.ch\/blog\/wp-json\/wp\/v2\/posts\/3672\/revisions\/3703"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.robinglauser.ch\/blog\/wp-json\/wp\/v2\/media\/3683"}],"wp:attachment":[{"href":"https:\/\/www.robinglauser.ch\/blog\/wp-json\/wp\/v2\/media?parent=3672"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.robinglauser.ch\/blog\/wp-json\/wp\/v2\/categories?post=3672"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.robinglauser.ch\/blog\/wp-json\/wp\/v2\/tags?post=3672"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}