{"id":1185,"date":"2013-08-09T09:17:41","date_gmt":"2013-08-09T07:17:41","guid":{"rendered":"https:\/\/usersnap.com\/?p=1185"},"modified":"2025-10-10T12:02:43","modified_gmt":"2025-10-10T10:02:43","slug":"bad-habits-in-web-development","status":"publish","type":"post","link":"https:\/\/usersnap.com\/blog\/bad-habits-in-web-development\/","title":{"rendered":"6 bad habits in web development"},"content":{"rendered":"\n<p>At <a href=\"http:\/\/usersnap.com\/?gat=blog\" target=\"_blank\" rel=\"noopener\">Usersnap<\/a>, we have over 20 (summed up) years of experience in well organized web development. We figured that track record allows us to call out the good, bad and the ugly in the industry. Now, we don\u2019t like to focus on the negative, but just this once we\u2019ll sum up the bad, as the logical follow-up on our post on <a title=\"best practices in web development\" href=\"http:\/\/www.usersnap.com\/blog\/good-habits-in-web-development\" target=\"_blank\" rel=\"noopener\">best practices in web development<\/a>.<\/p>\n\n\n<div class=\"acf-cta\" style=\"background-image: url(https:\/\/usersnap.com\/blog\/wp-content\/uploads\/2025\/02\/Group-1000004194.svg); width: 100%;\"><h2>Try Usersnap for Product Development<\/h2><a href=\"https:\/\/usersnap.com\/signup\" class=\"cta-button\">Try Usersnap Now<\/a><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">1. Mails with 20 bullet points<\/h2>\n\n\n\n<p>Mails with 20 bullet points, listing bugs, feature request and what not, are as much a commodity as a problem. Often they lead to accusations and \u201c<em>why didn\u2019t you fix $XY, as I pointed out five weeks ago?<\/em>\u201d-s. In case your head of development is not able to drill these monologues down to workable tickets, chances are you forget things. Instead of muttering all kinds of things your mother didn\u2019t teach you, try and educate your clients or managers how to use a bug tracker or project management tool.* That way you both save time sending countless lengthy emails, and they\u2019ll have a better view of what you\u2019re currently working on.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">2. CC\u2019ing the whole team<\/h2>\n\n\n\n<p>CC\u2019ing all means: you have no idea who can solve this task. Which is bad in itself. If you start doing this, potentially no one will answer or feel responsible. Plus: reading all those mails will kill a lot of precious time for those who are not into it. Find out who is responsible and address that person only. <\/p>\n\n\n\n<!--more-->\n\n\n\n<h2 class=\"wp-block-heading\">3. Leave testing to someone else<\/h2>\n\n\n\n<p>Letting somebody test issues who has no idea what the original error was, is yet another way of wasting your team mates time. Example: a customer complains about buttons not working in Internet Explorer. The first dev that gets his hands on it fixes the issue, and another one QA tests it without even knowing how to reproduce the issue.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https:\/\/usersnap.com\/blog\/wp-content\/uploads\/2013\/07\/testing.gif\" rel=\"lightbox\"><img decoding=\"async\" width=\"497\" height=\"287\" src=\"https:\/\/usersnap.com\/blog\/wp-content\/uploads\/2013\/07\/testing.gif\" alt=\"testing\" class=\"wp-image-1186\"\/><\/a><figcaption class=\"wp-element-caption\">via <a href=\"http:\/\/devopsreactions.tumblr.com\/post\/52368854242\/writing-unit-tests\" target=\"_blank\" rel=\"lightbox noopener\">devopsreactions.tumblr.com<\/a><\/figcaption><\/figure>\n<\/div>\n\n\n<h2 class=\"wp-block-heading\">4. War on the -ends<\/h2>\n\n\n\n<p>Splitting up your team to fixed parts of your development is a bad idea and incredibly un-agile (don\u2019t worry, we don\u2019t make a habit of using that term). Separating \u2018frontend\u2019 and \u2018backend\u2019 leads to \u201cGrabenk\u00e4mpfe\u201d (or: War on the -ends), which is &#8211; not surprisingly &#8211; not great for team spirit. Frontend devs will complain that \u201cthe backend changes takes ages\u201d, whereas backend devs will complain about \u201cthe fifth change of the API in this year\u201d.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">5. Release untested code<\/h2>\n\n\n\n<p>Releasing untested code, just because it\u2019s HiPPO** (highest paid person\u2019s opinion) is a bad idea. Even worse: doing this thing on a Friday evening. Unless of course, you\u2019re not much of a weekend person anyway&#8230;<\/p>\n\n\n<div class=\"acf-cta\" style=\"background-image: url(https:\/\/usersnap.com\/blog\/wp-content\/uploads\/2025\/02\/Group-1000004194.svg); width: 100%;\"><h2>Try Usersnap for Product Development<\/h2><a href=\"https:\/\/usersnap.com\/signup\" class=\"cta-button\">Try Usersnap Now<\/a><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">6. Optimizing too early<\/h2>\n\n\n\n<p>Yes, this is harsh, but starting to polish CSS animations while nobody has seen your page is not helping in getting things done. If you have any background tasks or reports, it simply doesn\u2019t matter if they run in 10 or 5 seconds, when your servers are not loaded. Start optimizing once everything works. We do believe in optimization (a lot), just check out point 9 in our <a title=\"Web Development; The Good, The Bad &amp; The Ugly 1\" href=\"https:\/\/usersnap.com\/blog\/good-habits-in-web-development\/\" target=\"_blank\" rel=\"noopener\">previous post<\/a>!<\/p>\n\n\n\n<p>American computer scientist and Professor Emeritus at Stanford University Donald Ervin Knuth is the author of the seminal multi-volume work \u00b4The Art of Computer Programming\u00b4. In his &#8216;<a title=\"Knuth paper\" href=\"http:\/\/pplab.snu.ac.kr\/courses\/adv_pl05\/papers\/p261-knuth.pdf\" target=\"_blank\" rel=\"noopener\">Structured Programming with go to Statements<\/a>&#8216; paper he states:<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>Programmers waste enormous amounts of time thinking about, or worrying about, the speed of noncritical parts of their programs, and these attempts at efficiency actually have a strong negative impact when debugging and maintenance are considered. We should forget about small efficiencies, say about 97% of the time: premature optimization is the root of all evil. Yet we should not pass up our opportunities in that critical 3%.<\/p>\n<\/blockquote>\n\n\n\n<p>In short: starting to optimize before it&#8217;s clear what you&#8217;re optimizing, brings all kinds of unnecessary complexity and errors.<\/p>\n\n\n\n<p>We could go on for a while, I mean, I wouldn\u2019t call changing production without backups or developing without specifications bright ideas either. But luckily you won\u2019t encounter these missteps that often.<\/p>\n\n\n\n<p>For a third post in this series we\u2019ll look into <a title=\"6 Ugly Habits in Web Development\" href=\"https:\/\/usersnap.com\/blog\/ugly-habits-in-web-development\/\" target=\"_blank\" rel=\"noopener\">the dark and ugly side of the programming world<\/a>.<\/p>\n\n\n\n<p>* You might want to set different (editing) rights for different parties.<br>**<a title=\"Data killed the HiPPO star\" href=\"http:\/\/gigaom.com\/2012\/02\/18\/data-killed-the-hippo-star\/\" target=\"_blank\" rel=\"noopener\">Data killed the HiPPO star<\/a><\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>At Usersnap, we have over 20 (summed up) years of experience in well organized web development. We figured that track record allows us to call out the good, bad and the ugly in the industry. Now, we don\u2019t like to focus on the negative, but just this once we\u2019ll sum up the bad, as the [&hellip;]<\/p>\n","protected":false},"author":10,"featured_media":1389,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":true,"inline_featured_image":false,"ub_ctt_via":"","footnotes":""},"categories":[8],"tags":[],"class_list":["post-1185","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-web-development-blog"],"acf":[],"featured_image_src":"https:\/\/usersnap.com\/blog\/wp-content\/uploads\/2013\/08\/all-the-things.jpg","author_info":{"display_name":"Gregor Dorfbauer","author_link":"https:\/\/usersnap.com\/blog\/author\/gregor\/"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>6 bad habits in web development - Usersnap Blog<\/title>\n<meta name=\"description\" content=\"Avoid common pitfalls in web development. Discover tips to enhance your web projects.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/usersnap.com\/blog\/bad-habits-in-web-development\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"6 bad habits in web development - Usersnap Blog\" \/>\n<meta property=\"og:description\" content=\"Avoid common pitfalls in web development. Discover tips to enhance your web projects.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/usersnap.com\/blog\/bad-habits-in-web-development\/\" \/>\n<meta property=\"og:site_name\" content=\"Usersnap Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/usersnap\" \/>\n<meta property=\"article:published_time\" content=\"2013-08-09T07:17:41+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-10T10:02:43+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/usersnap.com\/blog\/wp-content\/uploads\/2013\/08\/all-the-things.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"900\" \/>\n\t<meta property=\"og:image:height\" content=\"676\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Gregor Dorfbauer\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@dorfbauer\" \/>\n<meta name=\"twitter:site\" content=\"@usersnap\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Gregor Dorfbauer\" \/>\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:\/\/usersnap.com\/blog\/bad-habits-in-web-development\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/usersnap.com\/blog\/bad-habits-in-web-development\/\"},\"author\":{\"name\":\"Gregor Dorfbauer\",\"@id\":\"https:\/\/usersnap.com\/blog\/#\/schema\/person\/fd366e0037419a62e10ecc30b27d5595\"},\"headline\":\"6 bad habits in web development\",\"datePublished\":\"2013-08-09T07:17:41+00:00\",\"dateModified\":\"2025-10-10T10:02:43+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/usersnap.com\/blog\/bad-habits-in-web-development\/\"},\"wordCount\":715,\"publisher\":{\"@id\":\"https:\/\/usersnap.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/usersnap.com\/blog\/bad-habits-in-web-development\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/usersnap.com\/blog\/wp-content\/uploads\/2013\/08\/all-the-things.jpg\",\"articleSection\":[\"Web Development\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/usersnap.com\/blog\/bad-habits-in-web-development\/\",\"url\":\"https:\/\/usersnap.com\/blog\/bad-habits-in-web-development\/\",\"name\":\"6 bad habits in web development - Usersnap Blog\",\"isPartOf\":{\"@id\":\"https:\/\/usersnap.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/usersnap.com\/blog\/bad-habits-in-web-development\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/usersnap.com\/blog\/bad-habits-in-web-development\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/usersnap.com\/blog\/wp-content\/uploads\/2013\/08\/all-the-things.jpg\",\"datePublished\":\"2013-08-09T07:17:41+00:00\",\"dateModified\":\"2025-10-10T10:02:43+00:00\",\"description\":\"Avoid common pitfalls in web development. Discover tips to enhance your web projects.\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/usersnap.com\/blog\/bad-habits-in-web-development\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/usersnap.com\/blog\/bad-habits-in-web-development\/#primaryimage\",\"url\":\"https:\/\/usersnap.com\/blog\/wp-content\/uploads\/2013\/08\/all-the-things.jpg\",\"contentUrl\":\"https:\/\/usersnap.com\/blog\/wp-content\/uploads\/2013\/08\/all-the-things.jpg\",\"width\":900,\"height\":676,\"caption\":\"cc-ing everyone is a bad idea\"},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/usersnap.com\/blog\/#website\",\"url\":\"https:\/\/usersnap.com\/blog\/\",\"name\":\"Usersnap Blog\",\"description\":\"Learn more about how to collect user feedback and build better products with the magic power of feedback.\",\"publisher\":{\"@id\":\"https:\/\/usersnap.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/usersnap.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/usersnap.com\/blog\/#organization\",\"name\":\"Usersnap\",\"url\":\"https:\/\/usersnap.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/usersnap.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/usersnap.com\/wp-content\/uploads\/2020\/08\/Usersnap-Updated-Logo.png\",\"contentUrl\":\"https:\/\/usersnap.com\/wp-content\/uploads\/2020\/08\/Usersnap-Updated-Logo.png\",\"width\":136,\"height\":26,\"caption\":\"Usersnap\"},\"image\":{\"@id\":\"https:\/\/usersnap.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/usersnap\",\"https:\/\/x.com\/usersnap\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/usersnap.com\/blog\/#\/schema\/person\/fd366e0037419a62e10ecc30b27d5595\",\"name\":\"Gregor Dorfbauer\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/usersnap.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b5ae51f9dc4a7502a9a3f98e68ef97a4ebd1f3e7e2d7f00e6b108c69f96ae1bc?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b5ae51f9dc4a7502a9a3f98e68ef97a4ebd1f3e7e2d7f00e6b108c69f96ae1bc?s=96&d=mm&r=g\",\"caption\":\"Gregor Dorfbauer\"},\"sameAs\":[\"https:\/\/x.com\/dorfbauer\"],\"url\":\"https:\/\/usersnap.com\/blog\/author\/gregor\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"6 bad habits in web development - Usersnap Blog","description":"Avoid common pitfalls in web development. Discover tips to enhance your web projects.","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:\/\/usersnap.com\/blog\/bad-habits-in-web-development\/","og_locale":"en_US","og_type":"article","og_title":"6 bad habits in web development - Usersnap Blog","og_description":"Avoid common pitfalls in web development. Discover tips to enhance your web projects.","og_url":"https:\/\/usersnap.com\/blog\/bad-habits-in-web-development\/","og_site_name":"Usersnap Blog","article_publisher":"https:\/\/www.facebook.com\/usersnap","article_published_time":"2013-08-09T07:17:41+00:00","article_modified_time":"2025-10-10T10:02:43+00:00","og_image":[{"width":900,"height":676,"url":"https:\/\/usersnap.com\/blog\/wp-content\/uploads\/2013\/08\/all-the-things.jpg","type":"image\/jpeg"}],"author":"Gregor Dorfbauer","twitter_card":"summary_large_image","twitter_creator":"@dorfbauer","twitter_site":"@usersnap","twitter_misc":{"Written by":"Gregor Dorfbauer","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/usersnap.com\/blog\/bad-habits-in-web-development\/#article","isPartOf":{"@id":"https:\/\/usersnap.com\/blog\/bad-habits-in-web-development\/"},"author":{"name":"Gregor Dorfbauer","@id":"https:\/\/usersnap.com\/blog\/#\/schema\/person\/fd366e0037419a62e10ecc30b27d5595"},"headline":"6 bad habits in web development","datePublished":"2013-08-09T07:17:41+00:00","dateModified":"2025-10-10T10:02:43+00:00","mainEntityOfPage":{"@id":"https:\/\/usersnap.com\/blog\/bad-habits-in-web-development\/"},"wordCount":715,"publisher":{"@id":"https:\/\/usersnap.com\/blog\/#organization"},"image":{"@id":"https:\/\/usersnap.com\/blog\/bad-habits-in-web-development\/#primaryimage"},"thumbnailUrl":"https:\/\/usersnap.com\/blog\/wp-content\/uploads\/2013\/08\/all-the-things.jpg","articleSection":["Web Development"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/usersnap.com\/blog\/bad-habits-in-web-development\/","url":"https:\/\/usersnap.com\/blog\/bad-habits-in-web-development\/","name":"6 bad habits in web development - Usersnap Blog","isPartOf":{"@id":"https:\/\/usersnap.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/usersnap.com\/blog\/bad-habits-in-web-development\/#primaryimage"},"image":{"@id":"https:\/\/usersnap.com\/blog\/bad-habits-in-web-development\/#primaryimage"},"thumbnailUrl":"https:\/\/usersnap.com\/blog\/wp-content\/uploads\/2013\/08\/all-the-things.jpg","datePublished":"2013-08-09T07:17:41+00:00","dateModified":"2025-10-10T10:02:43+00:00","description":"Avoid common pitfalls in web development. Discover tips to enhance your web projects.","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/usersnap.com\/blog\/bad-habits-in-web-development\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/usersnap.com\/blog\/bad-habits-in-web-development\/#primaryimage","url":"https:\/\/usersnap.com\/blog\/wp-content\/uploads\/2013\/08\/all-the-things.jpg","contentUrl":"https:\/\/usersnap.com\/blog\/wp-content\/uploads\/2013\/08\/all-the-things.jpg","width":900,"height":676,"caption":"cc-ing everyone is a bad idea"},{"@type":"WebSite","@id":"https:\/\/usersnap.com\/blog\/#website","url":"https:\/\/usersnap.com\/blog\/","name":"Usersnap Blog","description":"Learn more about how to collect user feedback and build better products with the magic power of feedback.","publisher":{"@id":"https:\/\/usersnap.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/usersnap.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/usersnap.com\/blog\/#organization","name":"Usersnap","url":"https:\/\/usersnap.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/usersnap.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/usersnap.com\/wp-content\/uploads\/2020\/08\/Usersnap-Updated-Logo.png","contentUrl":"https:\/\/usersnap.com\/wp-content\/uploads\/2020\/08\/Usersnap-Updated-Logo.png","width":136,"height":26,"caption":"Usersnap"},"image":{"@id":"https:\/\/usersnap.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/usersnap","https:\/\/x.com\/usersnap"]},{"@type":"Person","@id":"https:\/\/usersnap.com\/blog\/#\/schema\/person\/fd366e0037419a62e10ecc30b27d5595","name":"Gregor Dorfbauer","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/usersnap.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b5ae51f9dc4a7502a9a3f98e68ef97a4ebd1f3e7e2d7f00e6b108c69f96ae1bc?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b5ae51f9dc4a7502a9a3f98e68ef97a4ebd1f3e7e2d7f00e6b108c69f96ae1bc?s=96&d=mm&r=g","caption":"Gregor Dorfbauer"},"sameAs":["https:\/\/x.com\/dorfbauer"],"url":"https:\/\/usersnap.com\/blog\/author\/gregor\/"}]}},"_links":{"self":[{"href":"https:\/\/usersnap.com\/blog\/wp-json\/wp\/v2\/posts\/1185","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/usersnap.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/usersnap.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/usersnap.com\/blog\/wp-json\/wp\/v2\/users\/10"}],"replies":[{"embeddable":true,"href":"https:\/\/usersnap.com\/blog\/wp-json\/wp\/v2\/comments?post=1185"}],"version-history":[{"count":0,"href":"https:\/\/usersnap.com\/blog\/wp-json\/wp\/v2\/posts\/1185\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/usersnap.com\/blog\/wp-json\/wp\/v2\/media\/1389"}],"wp:attachment":[{"href":"https:\/\/usersnap.com\/blog\/wp-json\/wp\/v2\/media?parent=1185"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/usersnap.com\/blog\/wp-json\/wp\/v2\/categories?post=1185"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/usersnap.com\/blog\/wp-json\/wp\/v2\/tags?post=1185"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}