{"id":1520,"date":"2012-10-27T12:10:42","date_gmt":"2012-10-27T17:10:42","guid":{"rendered":"http:\/\/bitpost.com\/news\/?p=1520"},"modified":"2012-12-02T10:27:24","modified_gmt":"2012-12-02T15:27:24","slug":"n-compilers-are-better-than-one","status":"publish","type":"post","link":"https:\/\/bitpost.com\/news\/2012\/n-compilers-are-better-than-one\/","title":{"rendered":"[n] compilers are better than one"},"content":{"rendered":"<p>I am loving cross-platform development with Qt, it&#8217;s robust and logical and leads to amazing native desktop apps.  Before getting started, I expected that there would be lots of platform-specific hackery required, and going cross-platform would slow down the end product by 20-30%.  But Qt is so reliable, and well-laid-out, and provides so much more than just lowest-common-denominator functionality, that I&#8217;m finding it to be much faster than, e.g., developing a desktop app with C# or Java.<\/p>\n<p>Another reason it is giving me leverage: [n] compilers are better than one.<!--more--><\/p>\n<p>I just hit a bug in Visual Studio with some STL code.  My comparison operator was throwing up because one of the objects in the array I was searching had bad data.  But you wouldn&#8217;t know it from Visual Studio, giving me an iterator error in their STL code, with no stack trace:<\/p>\n<pre><code>__thiscall _Lockit::~_Lockit()\r\n\t{\t\/\/ unlock the mutex\r\n\tif (_Locktype < MAX_LOCK)\r\n\t\t_Mtxunlock(&#038;mtx[_Locktype]); <- HERE\r\n\t}<\/code><\/pre>\n<p>I spent some time trying to isolate the upstream cause - I could have spent hours - until I had an inspiration: this kind of unhelpful compiler error information happens in just about every compiler I've used, about 5% of the time - but it happens in different ways in different compilers.  So I fired up the code in Qt Creator in OS X, and gcc showed me the error along with the line of code where the array search had begun.  Bingo.  Then I started looking through the values in the debugger, to find the bad data.  But again, I realized that Visual Studio has much better unwinding of debug variables in its debugger, so I looked up the line of code there, set a breakpoint, stepped over it and confirmed that was where I was getting the error - yep!  Then I could easily dig way down into my debug variables in style.<\/p>\n<p>Moral is: don't forget to take full advantage of each of your tools.  Save the headbanging for concerts.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>I am loving cross-platform development with Qt, it&#8217;s robust and logical and leads to amazing native desktop apps. Before getting started, I expected that there would be lots of platform-specific hackery required, and going cross-platform would slow down the end product by 20-30%. But Qt is so reliable, and well-laid-out, and provides so much more [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2},"jetpack_post_was_ever_published":false},"categories":[22,7,19,10],"tags":[170,119,172,28],"class_list":["post-1520","post","type-post","status-publish","format-standard","hentry","category-cpp","category-hangthedj","category-opensource","category-tricks-tips-tools","tag-c","tag-cross-platform","tag-java","tag-qt"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"I am loving cross-platform development with Qt, it&#039;s robust and logical and leads to amazing native desktop apps. Before getting started, I expected that there would be lots of platform-specific hackery required, and going cross-platform would slow down the end product by 20-30%. But Qt is so reliable, and well-laid-out, and provides so much more\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"m\"\/>\n\t<meta name=\"keywords\" content=\"c++,hangthedj,open source,tricks tips tools\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/bitpost.com\/news\/2012\/n-compilers-are-better-than-one\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.9\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"bitpost.com\/news | Note to self\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"[n] compilers are better than one | bitpost.com\/news\" \/>\n\t\t<meta property=\"og:description\" content=\"I am loving cross-platform development with Qt, it&#039;s robust and logical and leads to amazing native desktop apps. Before getting started, I expected that there would be lots of platform-specific hackery required, and going cross-platform would slow down the end product by 20-30%. But Qt is so reliable, and well-laid-out, and provides so much more\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/bitpost.com\/news\/2012\/n-compilers-are-better-than-one\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2012-10-27T17:10:42+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2012-12-02T15:27:24+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"[n] compilers are better than one | bitpost.com\/news\" \/>\n\t\t<meta name=\"twitter:description\" content=\"I am loving cross-platform development with Qt, it&#039;s robust and logical and leads to amazing native desktop apps. Before getting started, I expected that there would be lots of platform-specific hackery required, and going cross-platform would slow down the end product by 20-30%. But Qt is so reliable, and well-laid-out, and provides so much more\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/2012\\\/n-compilers-are-better-than-one\\\/#article\",\"name\":\"[n] compilers are better than one | bitpost.com\\\/news\",\"headline\":\"[n] compilers are better than one\",\"author\":{\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/author\\\/m\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/2012\\\/n-compilers-are-better-than-one\\\/#articleImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/884c1dbbf1027f261dbf20652687af7ad0030bfa71ff0ef56540938bdc70be2f?s=96&d=monsterid&r=pg\",\"width\":96,\"height\":96,\"caption\":\"m\"},\"datePublished\":\"2012-10-27T12:10:42-04:00\",\"dateModified\":\"2012-12-02T10:27:24-05:00\",\"inLanguage\":\"en-US\",\"commentCount\":2,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/2012\\\/n-compilers-are-better-than-one\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/2012\\\/n-compilers-are-better-than-one\\\/#webpage\"},\"articleSection\":\"C++, HangTheDJ, Open Source, Tricks Tips Tools, C#, cross-platform, Java, Qt\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/2012\\\/n-compilers-are-better-than-one\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/bitpost.com\\\/news\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/category\\\/projects\\\/#listItem\",\"name\":\"Projects\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/category\\\/projects\\\/#listItem\",\"position\":2,\"name\":\"Projects\",\"item\":\"https:\\\/\\\/bitpost.com\\\/news\\\/category\\\/projects\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/category\\\/projects\\\/hangthedj\\\/#listItem\",\"name\":\"HangTheDJ\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/category\\\/projects\\\/hangthedj\\\/#listItem\",\"position\":3,\"name\":\"HangTheDJ\",\"item\":\"https:\\\/\\\/bitpost.com\\\/news\\\/category\\\/projects\\\/hangthedj\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/2012\\\/n-compilers-are-better-than-one\\\/#listItem\",\"name\":\"[n] compilers are better than one\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/category\\\/projects\\\/#listItem\",\"name\":\"Projects\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/2012\\\/n-compilers-are-better-than-one\\\/#listItem\",\"position\":4,\"name\":\"[n] compilers are better than one\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/category\\\/projects\\\/hangthedj\\\/#listItem\",\"name\":\"HangTheDJ\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/#person\",\"name\":\"m\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/2012\\\/n-compilers-are-better-than-one\\\/#personImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/884c1dbbf1027f261dbf20652687af7ad0030bfa71ff0ef56540938bdc70be2f?s=96&d=monsterid&r=pg\",\"width\":96,\"height\":96,\"caption\":\"m\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/author\\\/m\\\/#author\",\"url\":\"https:\\\/\\\/bitpost.com\\\/news\\\/author\\\/m\\\/\",\"name\":\"m\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/2012\\\/n-compilers-are-better-than-one\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/884c1dbbf1027f261dbf20652687af7ad0030bfa71ff0ef56540938bdc70be2f?s=96&d=monsterid&r=pg\",\"width\":96,\"height\":96,\"caption\":\"m\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/2012\\\/n-compilers-are-better-than-one\\\/#webpage\",\"url\":\"https:\\\/\\\/bitpost.com\\\/news\\\/2012\\\/n-compilers-are-better-than-one\\\/\",\"name\":\"[n] compilers are better than one | bitpost.com\\\/news\",\"description\":\"I am loving cross-platform development with Qt, it's robust and logical and leads to amazing native desktop apps. Before getting started, I expected that there would be lots of platform-specific hackery required, and going cross-platform would slow down the end product by 20-30%. But Qt is so reliable, and well-laid-out, and provides so much more\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/2012\\\/n-compilers-are-better-than-one\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/author\\\/m\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/author\\\/m\\\/#author\"},\"datePublished\":\"2012-10-27T12:10:42-04:00\",\"dateModified\":\"2012-12-02T10:27:24-05:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/#website\",\"url\":\"https:\\\/\\\/bitpost.com\\\/news\\\/\",\"name\":\"bitpost.com\\\/news\",\"description\":\"Note to self\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"[n] compilers are better than one | bitpost.com\/news","description":"I am loving cross-platform development with Qt, it's robust and logical and leads to amazing native desktop apps. Before getting started, I expected that there would be lots of platform-specific hackery required, and going cross-platform would slow down the end product by 20-30%. But Qt is so reliable, and well-laid-out, and provides so much more","canonical_url":"https:\/\/bitpost.com\/news\/2012\/n-compilers-are-better-than-one\/","robots":"max-image-preview:large","keywords":"c++,hangthedj,open source,tricks tips tools","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/bitpost.com\/news\/2012\/n-compilers-are-better-than-one\/#article","name":"[n] compilers are better than one | bitpost.com\/news","headline":"[n] compilers are better than one","author":{"@id":"https:\/\/bitpost.com\/news\/author\/m\/#author"},"publisher":{"@id":"https:\/\/bitpost.com\/news\/#person"},"image":{"@type":"ImageObject","@id":"https:\/\/bitpost.com\/news\/2012\/n-compilers-are-better-than-one\/#articleImage","url":"https:\/\/secure.gravatar.com\/avatar\/884c1dbbf1027f261dbf20652687af7ad0030bfa71ff0ef56540938bdc70be2f?s=96&d=monsterid&r=pg","width":96,"height":96,"caption":"m"},"datePublished":"2012-10-27T12:10:42-04:00","dateModified":"2012-12-02T10:27:24-05:00","inLanguage":"en-US","commentCount":2,"mainEntityOfPage":{"@id":"https:\/\/bitpost.com\/news\/2012\/n-compilers-are-better-than-one\/#webpage"},"isPartOf":{"@id":"https:\/\/bitpost.com\/news\/2012\/n-compilers-are-better-than-one\/#webpage"},"articleSection":"C++, HangTheDJ, Open Source, Tricks Tips Tools, C#, cross-platform, Java, Qt"},{"@type":"BreadcrumbList","@id":"https:\/\/bitpost.com\/news\/2012\/n-compilers-are-better-than-one\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/bitpost.com\/news#listItem","position":1,"name":"Home","item":"https:\/\/bitpost.com\/news","nextItem":{"@type":"ListItem","@id":"https:\/\/bitpost.com\/news\/category\/projects\/#listItem","name":"Projects"}},{"@type":"ListItem","@id":"https:\/\/bitpost.com\/news\/category\/projects\/#listItem","position":2,"name":"Projects","item":"https:\/\/bitpost.com\/news\/category\/projects\/","nextItem":{"@type":"ListItem","@id":"https:\/\/bitpost.com\/news\/category\/projects\/hangthedj\/#listItem","name":"HangTheDJ"},"previousItem":{"@type":"ListItem","@id":"https:\/\/bitpost.com\/news#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/bitpost.com\/news\/category\/projects\/hangthedj\/#listItem","position":3,"name":"HangTheDJ","item":"https:\/\/bitpost.com\/news\/category\/projects\/hangthedj\/","nextItem":{"@type":"ListItem","@id":"https:\/\/bitpost.com\/news\/2012\/n-compilers-are-better-than-one\/#listItem","name":"[n] compilers are better than one"},"previousItem":{"@type":"ListItem","@id":"https:\/\/bitpost.com\/news\/category\/projects\/#listItem","name":"Projects"}},{"@type":"ListItem","@id":"https:\/\/bitpost.com\/news\/2012\/n-compilers-are-better-than-one\/#listItem","position":4,"name":"[n] compilers are better than one","previousItem":{"@type":"ListItem","@id":"https:\/\/bitpost.com\/news\/category\/projects\/hangthedj\/#listItem","name":"HangTheDJ"}}]},{"@type":"Person","@id":"https:\/\/bitpost.com\/news\/#person","name":"m","image":{"@type":"ImageObject","@id":"https:\/\/bitpost.com\/news\/2012\/n-compilers-are-better-than-one\/#personImage","url":"https:\/\/secure.gravatar.com\/avatar\/884c1dbbf1027f261dbf20652687af7ad0030bfa71ff0ef56540938bdc70be2f?s=96&d=monsterid&r=pg","width":96,"height":96,"caption":"m"}},{"@type":"Person","@id":"https:\/\/bitpost.com\/news\/author\/m\/#author","url":"https:\/\/bitpost.com\/news\/author\/m\/","name":"m","image":{"@type":"ImageObject","@id":"https:\/\/bitpost.com\/news\/2012\/n-compilers-are-better-than-one\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/884c1dbbf1027f261dbf20652687af7ad0030bfa71ff0ef56540938bdc70be2f?s=96&d=monsterid&r=pg","width":96,"height":96,"caption":"m"}},{"@type":"WebPage","@id":"https:\/\/bitpost.com\/news\/2012\/n-compilers-are-better-than-one\/#webpage","url":"https:\/\/bitpost.com\/news\/2012\/n-compilers-are-better-than-one\/","name":"[n] compilers are better than one | bitpost.com\/news","description":"I am loving cross-platform development with Qt, it's robust and logical and leads to amazing native desktop apps. Before getting started, I expected that there would be lots of platform-specific hackery required, and going cross-platform would slow down the end product by 20-30%. But Qt is so reliable, and well-laid-out, and provides so much more","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/bitpost.com\/news\/#website"},"breadcrumb":{"@id":"https:\/\/bitpost.com\/news\/2012\/n-compilers-are-better-than-one\/#breadcrumblist"},"author":{"@id":"https:\/\/bitpost.com\/news\/author\/m\/#author"},"creator":{"@id":"https:\/\/bitpost.com\/news\/author\/m\/#author"},"datePublished":"2012-10-27T12:10:42-04:00","dateModified":"2012-12-02T10:27:24-05:00"},{"@type":"WebSite","@id":"https:\/\/bitpost.com\/news\/#website","url":"https:\/\/bitpost.com\/news\/","name":"bitpost.com\/news","description":"Note to self","inLanguage":"en-US","publisher":{"@id":"https:\/\/bitpost.com\/news\/#person"}}]},"og:locale":"en_US","og:site_name":"bitpost.com\/news | Note to self","og:type":"article","og:title":"[n] compilers are better than one | bitpost.com\/news","og:description":"I am loving cross-platform development with Qt, it's robust and logical and leads to amazing native desktop apps. Before getting started, I expected that there would be lots of platform-specific hackery required, and going cross-platform would slow down the end product by 20-30%. But Qt is so reliable, and well-laid-out, and provides so much more","og:url":"https:\/\/bitpost.com\/news\/2012\/n-compilers-are-better-than-one\/","article:published_time":"2012-10-27T17:10:42+00:00","article:modified_time":"2012-12-02T15:27:24+00:00","twitter:card":"summary","twitter:title":"[n] compilers are better than one | bitpost.com\/news","twitter:description":"I am loving cross-platform development with Qt, it's robust and logical and leads to amazing native desktop apps. Before getting started, I expected that there would be lots of platform-specific hackery required, and going cross-platform would slow down the end product by 20-30%. But Qt is so reliable, and well-laid-out, and provides so much more"},"aioseo_meta_data":{"post_id":"1520","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2021-03-13 19:48:22","updated":"2025-08-17 19:10:48","seo_analyzer_scan_date":null},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p9M11L-ow","jetpack_likes_enabled":true,"_links":{"self":[{"href":"https:\/\/bitpost.com\/news\/wp-json\/wp\/v2\/posts\/1520","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/bitpost.com\/news\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/bitpost.com\/news\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/bitpost.com\/news\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/bitpost.com\/news\/wp-json\/wp\/v2\/comments?post=1520"}],"version-history":[{"count":5,"href":"https:\/\/bitpost.com\/news\/wp-json\/wp\/v2\/posts\/1520\/revisions"}],"predecessor-version":[{"id":1537,"href":"https:\/\/bitpost.com\/news\/wp-json\/wp\/v2\/posts\/1520\/revisions\/1537"}],"wp:attachment":[{"href":"https:\/\/bitpost.com\/news\/wp-json\/wp\/v2\/media?parent=1520"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/bitpost.com\/news\/wp-json\/wp\/v2\/categories?post=1520"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/bitpost.com\/news\/wp-json\/wp\/v2\/tags?post=1520"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}