{"id":984,"date":"2021-09-28T22:34:39","date_gmt":"2021-09-28T09:34:39","guid":{"rendered":"https:\/\/blog.wiseowls.co.nz\/?p=984"},"modified":"2026-03-08T00:48:41","modified_gmt":"2026-03-07T11:48:41","slug":"aws-lambda-dev-container-in-120-seconds","status":"publish","type":"post","link":"https:\/\/blog.wiseowls.co.nz\/index.php\/2021\/09\/28\/aws-lambda-dev-container-in-120-seconds\/","title":{"rendered":"AWS Lambda Dev \u2013 environment in 120 seconds"},"content":{"rendered":"<p>Okay, despite roaring success we had with <a href=\"https:\/\/dev.to\/timur_kh\/azure-functions-dev-environment-in-120-seconds-2a8n\">the previous attempt<\/a> at this, setting up VS Code dev containers for AWS SAM proved to be quite a bit of a pain. And we&#8217;re still not sure if it&#8217;s worth it. But it was interesting to set up and may be useful in some circumstances, so here we go.<\/p>\n<h2 class=\"wp-block-heading\">Some issues we ran into<\/h2>\n<p>The biggest issue by far was the fact that SAM heavily relies on containers which for us means we&#8217;ll have to go deeper and use <a href=\"https:\/\/github.com\/microsoft\/vscode-dev-containers\/tree\/main\/containers\/docker-in-docker\">docker-in-docker dev container<\/a> as a starting point. The base image there comes with bare minimum software and dotnet SDK is not part of it. So, we&#8217;ll have to install everything ourselves:<\/p>\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">#!\/usr\/bin\/env bash\n\nset -e\n\nif [ \"$(id -u)\" -ne 0 ]; then\n    echo -e 'Script must be run as root. Use sudo, su, or add \"USER root\" to your Dockerfile before running this script.'\n    exit 1\nfi\n\ncurl \"https:\/\/awscli.amazonaws.com\/awscli-exe-linux-x86_64.zip\" -o \"awscliv2.zip\"\nunzip awscliv2.zip\nsudo .\/aws\/install\nrm -rf .\/aws\nrm .\/awscliv2.zip\necho \"AWS CLI version `aws --version`\"\n\ncurl -L \"https:\/\/github.com\/aws\/aws-sam-cli\/releases\/latest\/download\/aws-sam-cli-linux-x86_64.zip\" -o \"aws-sam-cli-linux-x86_64.zip\"\nunzip aws-sam-cli-linux-x86_64.zip -d sam-installation\nsudo .\/sam-installation\/install\necho \"SAM version `sam --version`\"\nrm -rf .\/sam-installation\nrm .\/aws-sam-cli-linux-x86_64.zip\n\nwget https:\/\/packages.microsoft.com\/config\/debian\/11\/packages-microsoft-prod.deb -O packages-microsoft-prod.deb\nsudo dpkg -i packages-microsoft-prod.deb\nrm packages-microsoft-prod.deb\nsudo apt-get update; \\\n  sudo apt-get install -y apt-transport-https &amp;&amp; \\\n  sudo apt-get update &amp;&amp; \\\n  sudo apt-get install -y dotnet-sdk-3.1\n\n# Installing lambda tools was required to get lambda to work while I was testing different approaches. It may have become redundant after so many iterations and changes to the script, but probably does not hurt\ndotnet tool install -g Amazon.Lambda.Tools\nexport PATH=\"$PATH:$HOME\/.dotnet\/tools\"<\/code><\/pre>\n<p>This is fairly straightforward: <a href=\"https:\/\/docs.aws.amazon.com\/serverless-application-model\/latest\/developerguide\/serverless-sam-cli-install-linux.html\">install AWS CLI and SAM<\/a> as described in the documentation, and then install <a href=\"https:\/\/docs.microsoft.com\/en-us\/dotnet\/core\/install\/linux-debian\">dotnet SDK<\/a>. All we need to do now, is call it from the main <code>Dockerfile<\/code>. <\/p>\n<p>It also helps to pre-populate container with extensions we&#8217;re going to need anyway:<\/p>\n<pre class=\"wp-block-code\"><code lang=\"json\" class=\"language-json\">\"extensions\": [\n\t\"ms-azuretools.vscode-docker\",\n\t\"amazonwebservices.aws-toolkit-vscode\",\n\t\"ms-dotnettools.csharp\",\n\t\"redhat.vscode-yaml\",\n\t\"zainchen.json\" \/\/ this probably can be removed\n],<\/code><\/pre>\n<h2 class=\"wp-block-heading\">Debugging experience<\/h2>\n<p>Apparently debugging AWS Lambda is<a href=\"https:\/\/docs.aws.amazon.com\/toolkit-for-vscode\/latest\/userguide\/serverless-apps-run-debug-no-template.html\"> slightly different<\/a> from Azure functions in a sense that it&#8217;s not intended for invocation from a browser but rather accepts an event via built-in dispatcher. We could potentially spend more time on it and get it to work with browsers but that looked good enough for the first stab.<\/p>\n<h2 class=\"wp-block-heading\">Building up the winning sequence<\/h2>\n<p>With all of the above in mind we ended up with roughly the following sequence to get debugging to work:<\/p>\n<ol class=\"wp-block-list\">\n<li>started with modified Docker-in-Docker template and added all tools<\/li>\n<li>opened the container up and used AWS extension to generate lambda skeleton app (after a couple of failed attempts we settled on <strong>dotnetcore3.1 (image)<\/strong> template)<\/li>\n<li>we then let OmniSharp run, pick up all C# projects and restore packages<\/li>\n<li>after that we rebuilt container to reinitialise extensions and make sure we&#8217;re starting off afresh<\/li>\n<li>Once we reopened the container, we use AWS extension again to generate launch configuration (it is important to let SAM know what version of dotnet we&#8217;re going to need. check out <code>launch.json<\/code> to verify)<\/li>\n<li>And finally, we run it<\/li>\n<\/ol>\n<h2 class=\"wp-block-heading\">Action!<\/h2>\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"505\" src=\"https:\/\/blog.wiseowls.co.nz\/wp-content\/uploads\/2021\/09\/AWSLambdaContainerDemo-1024x505.gif\" alt=\"Demo of AWS SAM Lambda running inside VS Code dev container\" class=\"wp-image-987\" srcset=\"https:\/\/blog.wiseowls.co.nz\/wp-content\/uploads\/2021\/09\/AWSLambdaContainerDemo-1024x505.gif 1024w, https:\/\/blog.wiseowls.co.nz\/wp-content\/uploads\/2021\/09\/AWSLambdaContainerDemo-300x148.gif 300w, https:\/\/blog.wiseowls.co.nz\/wp-content\/uploads\/2021\/09\/AWSLambdaContainerDemo-768x379.gif 768w, https:\/\/blog.wiseowls.co.nz\/wp-content\/uploads\/2021\/09\/AWSLambdaContainerDemo-1536x758.gif 1536w, https:\/\/blog.wiseowls.co.nz\/wp-content\/uploads\/2021\/09\/AWSLambdaContainerDemo-1200x592.gif 1200w\" sizes=\"auto, (max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 1362px) 62vw, 840px\" \/><\/figure>\n<p>As always, code is in <a href=\"https:\/\/github.com\/tkhadimullin\/vscode-dev-containers-aws-sam\">Github<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Okay, despite roaring success we had with the previous attempt at this, setting up VS Code dev containers for AWS SAM proved to be quite a bit of a pain. And we&#8217;re still not sure if it&#8217;s worth it. But it was interesting to set up and may be useful in some circumstances, so here &hellip; <a href=\"https:\/\/blog.wiseowls.co.nz\/index.php\/2021\/09\/28\/aws-lambda-dev-container-in-120-seconds\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;AWS Lambda Dev \u2013 environment in 120 seconds&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":966,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[50],"tags":[47],"class_list":["post-984","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-cloud","tag-aws"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>AWS Lambda Dev \u2013 environment in 120 seconds - Timur and associates<\/title>\n<meta name=\"description\" content=\"VS Code dev containers for AWS SAM with docker-in-docker. Painful to set up but potentially useful.\" \/>\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.wiseowls.co.nz\/index.php\/2021\/09\/28\/aws-lambda-dev-container-in-120-seconds\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"AWS Lambda Dev \u2013 environment in 120 seconds - Timur and associates\" \/>\n<meta property=\"og:description\" content=\"VS Code dev containers for AWS SAM with docker-in-docker. Painful to set up but potentially useful.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/blog.wiseowls.co.nz\/index.php\/2021\/09\/28\/aws-lambda-dev-container-in-120-seconds\/\" \/>\n<meta property=\"og:site_name\" content=\"Timur and associates\" \/>\n<meta property=\"article:published_time\" content=\"2021-09-28T09:34:39+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-07T11:48:41+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/blog.wiseowls.co.nz\/wp-content\/uploads\/2021\/09\/alternate-skate-_tH3YCjPCCE-unsplash-scaled.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"883\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"timur\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@TimurKh\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2021\\\/09\\\/28\\\/aws-lambda-dev-container-in-120-seconds\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2021\\\/09\\\/28\\\/aws-lambda-dev-container-in-120-seconds\\\/\"},\"author\":{\"name\":\"timur\",\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/#\\\/schema\\\/person\\\/34d0ed30d573b5bc317ea990bd2e0c59\"},\"headline\":\"AWS Lambda Dev \u2013 environment in 120 seconds\",\"datePublished\":\"2021-09-28T09:34:39+00:00\",\"dateModified\":\"2026-03-07T11:48:41+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2021\\\/09\\\/28\\\/aws-lambda-dev-container-in-120-seconds\\\/\"},\"wordCount\":364,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2021\\\/09\\\/28\\\/aws-lambda-dev-container-in-120-seconds\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/wp-content\\\/uploads\\\/2021\\\/09\\\/alternate-skate-_tH3YCjPCCE-unsplash-scaled.jpg\",\"keywords\":[\"aws\"],\"articleSection\":[\"Cloud\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2021\\\/09\\\/28\\\/aws-lambda-dev-container-in-120-seconds\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2021\\\/09\\\/28\\\/aws-lambda-dev-container-in-120-seconds\\\/\",\"url\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2021\\\/09\\\/28\\\/aws-lambda-dev-container-in-120-seconds\\\/\",\"name\":\"AWS Lambda Dev \u2013 environment in 120 seconds - Timur and associates\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2021\\\/09\\\/28\\\/aws-lambda-dev-container-in-120-seconds\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2021\\\/09\\\/28\\\/aws-lambda-dev-container-in-120-seconds\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/wp-content\\\/uploads\\\/2021\\\/09\\\/alternate-skate-_tH3YCjPCCE-unsplash-scaled.jpg\",\"datePublished\":\"2021-09-28T09:34:39+00:00\",\"dateModified\":\"2026-03-07T11:48:41+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/#\\\/schema\\\/person\\\/34d0ed30d573b5bc317ea990bd2e0c59\"},\"description\":\"VS Code dev containers for AWS SAM with docker-in-docker. Painful to set up but potentially useful.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2021\\\/09\\\/28\\\/aws-lambda-dev-container-in-120-seconds\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2021\\\/09\\\/28\\\/aws-lambda-dev-container-in-120-seconds\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2021\\\/09\\\/28\\\/aws-lambda-dev-container-in-120-seconds\\\/#primaryimage\",\"url\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/wp-content\\\/uploads\\\/2021\\\/09\\\/alternate-skate-_tH3YCjPCCE-unsplash-scaled.jpg\",\"contentUrl\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/wp-content\\\/uploads\\\/2021\\\/09\\\/alternate-skate-_tH3YCjPCCE-unsplash-scaled.jpg\",\"width\":2560,\"height\":883},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2021\\\/09\\\/28\\\/aws-lambda-dev-container-in-120-seconds\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"AWS Lambda Dev \u2013 environment in 120 seconds\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/#website\",\"url\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/\",\"name\":\"Timur and associates\",\"description\":\"Notes of an IT contractor\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/#\\\/schema\\\/person\\\/34d0ed30d573b5bc317ea990bd2e0c59\",\"name\":\"timur\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/23d55e17d4f0990ee4d12bc6e5dcfb58a292934efd62a185756876379e780b16?s=96&r=pg\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/23d55e17d4f0990ee4d12bc6e5dcfb58a292934efd62a185756876379e780b16?s=96&r=pg\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/23d55e17d4f0990ee4d12bc6e5dcfb58a292934efd62a185756876379e780b16?s=96&r=pg\",\"caption\":\"timur\"},\"sameAs\":[\"https:\\\/\\\/x.com\\\/TimurKh\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"AWS Lambda Dev \u2013 environment in 120 seconds - Timur and associates","description":"VS Code dev containers for AWS SAM with docker-in-docker. Painful to set up but potentially useful.","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.wiseowls.co.nz\/index.php\/2021\/09\/28\/aws-lambda-dev-container-in-120-seconds\/","og_locale":"en_US","og_type":"article","og_title":"AWS Lambda Dev \u2013 environment in 120 seconds - Timur and associates","og_description":"VS Code dev containers for AWS SAM with docker-in-docker. Painful to set up but potentially useful.","og_url":"https:\/\/blog.wiseowls.co.nz\/index.php\/2021\/09\/28\/aws-lambda-dev-container-in-120-seconds\/","og_site_name":"Timur and associates","article_published_time":"2021-09-28T09:34:39+00:00","article_modified_time":"2026-03-07T11:48:41+00:00","og_image":[{"width":2560,"height":883,"url":"https:\/\/blog.wiseowls.co.nz\/wp-content\/uploads\/2021\/09\/alternate-skate-_tH3YCjPCCE-unsplash-scaled.jpg","type":"image\/jpeg"}],"author":"timur","twitter_card":"summary_large_image","twitter_creator":"@TimurKh","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/blog.wiseowls.co.nz\/index.php\/2021\/09\/28\/aws-lambda-dev-container-in-120-seconds\/#article","isPartOf":{"@id":"https:\/\/blog.wiseowls.co.nz\/index.php\/2021\/09\/28\/aws-lambda-dev-container-in-120-seconds\/"},"author":{"name":"timur","@id":"https:\/\/blog.wiseowls.co.nz\/#\/schema\/person\/34d0ed30d573b5bc317ea990bd2e0c59"},"headline":"AWS Lambda Dev \u2013 environment in 120 seconds","datePublished":"2021-09-28T09:34:39+00:00","dateModified":"2026-03-07T11:48:41+00:00","mainEntityOfPage":{"@id":"https:\/\/blog.wiseowls.co.nz\/index.php\/2021\/09\/28\/aws-lambda-dev-container-in-120-seconds\/"},"wordCount":364,"commentCount":0,"image":{"@id":"https:\/\/blog.wiseowls.co.nz\/index.php\/2021\/09\/28\/aws-lambda-dev-container-in-120-seconds\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.wiseowls.co.nz\/wp-content\/uploads\/2021\/09\/alternate-skate-_tH3YCjPCCE-unsplash-scaled.jpg","keywords":["aws"],"articleSection":["Cloud"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/blog.wiseowls.co.nz\/index.php\/2021\/09\/28\/aws-lambda-dev-container-in-120-seconds\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/blog.wiseowls.co.nz\/index.php\/2021\/09\/28\/aws-lambda-dev-container-in-120-seconds\/","url":"https:\/\/blog.wiseowls.co.nz\/index.php\/2021\/09\/28\/aws-lambda-dev-container-in-120-seconds\/","name":"AWS Lambda Dev \u2013 environment in 120 seconds - Timur and associates","isPartOf":{"@id":"https:\/\/blog.wiseowls.co.nz\/#website"},"primaryImageOfPage":{"@id":"https:\/\/blog.wiseowls.co.nz\/index.php\/2021\/09\/28\/aws-lambda-dev-container-in-120-seconds\/#primaryimage"},"image":{"@id":"https:\/\/blog.wiseowls.co.nz\/index.php\/2021\/09\/28\/aws-lambda-dev-container-in-120-seconds\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.wiseowls.co.nz\/wp-content\/uploads\/2021\/09\/alternate-skate-_tH3YCjPCCE-unsplash-scaled.jpg","datePublished":"2021-09-28T09:34:39+00:00","dateModified":"2026-03-07T11:48:41+00:00","author":{"@id":"https:\/\/blog.wiseowls.co.nz\/#\/schema\/person\/34d0ed30d573b5bc317ea990bd2e0c59"},"description":"VS Code dev containers for AWS SAM with docker-in-docker. Painful to set up but potentially useful.","breadcrumb":{"@id":"https:\/\/blog.wiseowls.co.nz\/index.php\/2021\/09\/28\/aws-lambda-dev-container-in-120-seconds\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/blog.wiseowls.co.nz\/index.php\/2021\/09\/28\/aws-lambda-dev-container-in-120-seconds\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/blog.wiseowls.co.nz\/index.php\/2021\/09\/28\/aws-lambda-dev-container-in-120-seconds\/#primaryimage","url":"https:\/\/blog.wiseowls.co.nz\/wp-content\/uploads\/2021\/09\/alternate-skate-_tH3YCjPCCE-unsplash-scaled.jpg","contentUrl":"https:\/\/blog.wiseowls.co.nz\/wp-content\/uploads\/2021\/09\/alternate-skate-_tH3YCjPCCE-unsplash-scaled.jpg","width":2560,"height":883},{"@type":"BreadcrumbList","@id":"https:\/\/blog.wiseowls.co.nz\/index.php\/2021\/09\/28\/aws-lambda-dev-container-in-120-seconds\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/blog.wiseowls.co.nz\/"},{"@type":"ListItem","position":2,"name":"AWS Lambda Dev \u2013 environment in 120 seconds"}]},{"@type":"WebSite","@id":"https:\/\/blog.wiseowls.co.nz\/#website","url":"https:\/\/blog.wiseowls.co.nz\/","name":"Timur and associates","description":"Notes of an IT contractor","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/blog.wiseowls.co.nz\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/blog.wiseowls.co.nz\/#\/schema\/person\/34d0ed30d573b5bc317ea990bd2e0c59","name":"timur","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/23d55e17d4f0990ee4d12bc6e5dcfb58a292934efd62a185756876379e780b16?s=96&r=pg","url":"https:\/\/secure.gravatar.com\/avatar\/23d55e17d4f0990ee4d12bc6e5dcfb58a292934efd62a185756876379e780b16?s=96&r=pg","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/23d55e17d4f0990ee4d12bc6e5dcfb58a292934efd62a185756876379e780b16?s=96&r=pg","caption":"timur"},"sameAs":["https:\/\/x.com\/TimurKh"]}]}},"_links":{"self":[{"href":"https:\/\/blog.wiseowls.co.nz\/index.php\/wp-json\/wp\/v2\/posts\/984","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blog.wiseowls.co.nz\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.wiseowls.co.nz\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.wiseowls.co.nz\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.wiseowls.co.nz\/index.php\/wp-json\/wp\/v2\/comments?post=984"}],"version-history":[{"count":6,"href":"https:\/\/blog.wiseowls.co.nz\/index.php\/wp-json\/wp\/v2\/posts\/984\/revisions"}],"predecessor-version":[{"id":1359,"href":"https:\/\/blog.wiseowls.co.nz\/index.php\/wp-json\/wp\/v2\/posts\/984\/revisions\/1359"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/blog.wiseowls.co.nz\/index.php\/wp-json\/wp\/v2\/media\/966"}],"wp:attachment":[{"href":"https:\/\/blog.wiseowls.co.nz\/index.php\/wp-json\/wp\/v2\/media?parent=984"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.wiseowls.co.nz\/index.php\/wp-json\/wp\/v2\/categories?post=984"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.wiseowls.co.nz\/index.php\/wp-json\/wp\/v2\/tags?post=984"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}