{"id":79,"date":"2019-11-02T18:00:04","date_gmt":"2019-11-02T18:00:04","guid":{"rendered":"https:\/\/datablog.roman-halliday.com\/?p=79"},"modified":"2022-09-14T11:33:25","modified_gmt":"2022-09-14T11:33:25","slug":"visual-studio-diff-tools","status":"publish","type":"post","link":"https:\/\/datablog.roman-halliday.com\/index.php\/2019\/11\/02\/visual-studio-diff-tools\/","title":{"rendered":"Visual Studio &#038; diff Tools"},"content":{"rendered":"\n<div class=\"wp-block-cover is-light\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim\"><\/span><img loading=\"lazy\" decoding=\"async\" width=\"1600\" height=\"1067\" class=\"wp-block-cover__image-background wp-image-501\" alt=\"From above of crop anonymous African American female comparing data in papers at table of office\" src=\"https:\/\/datablog.roman-halliday.com\/wp-content\/uploads\/2022\/09\/6457522.jpg\" data-object-fit=\"cover\" srcset=\"https:\/\/datablog.roman-halliday.com\/wp-content\/uploads\/2022\/09\/6457522.jpg 1600w, https:\/\/datablog.roman-halliday.com\/wp-content\/uploads\/2022\/09\/6457522-300x200.jpg 300w, https:\/\/datablog.roman-halliday.com\/wp-content\/uploads\/2022\/09\/6457522-1024x683.jpg 1024w, https:\/\/datablog.roman-halliday.com\/wp-content\/uploads\/2022\/09\/6457522-768x512.jpg 768w, https:\/\/datablog.roman-halliday.com\/wp-content\/uploads\/2022\/09\/6457522-1536x1024.jpg 1536w, https:\/\/datablog.roman-halliday.com\/wp-content\/uploads\/2022\/09\/6457522-405x270.jpg 405w\" sizes=\"auto, (max-width: 1600px) 100vw, 1600px\" \/><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<p class=\"has-text-align-center has-white-color has-text-color has-large-font-size\">The difference between files<\/p>\n<\/div><\/div>\n\n\n\n<p>A diff tool (software to compare the difference between two text files) is a valuable asset to those of us who spend more than a healthy portion of the day looking at text files. Mostly this is to understand, what is different between the original and new version of some code.<\/p>\n\n\n\n<p>Some time ago, I created a simple wrapper for Microsoft Visual Studio, to facilitate comparing files outside of an open project. But before looking into that, let&#8217;s look at some common alternative solutions.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Other Common Solutions<\/h2>\n\n\n\n<p>Most text editors have a plugin available (usually installable through a plugin manager) such as:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><a href=\"https:\/\/notepad-plus-plus.org\/\">Notepad ++<\/a> &#8211; <a href=\"https:\/\/sourceforge.net\/projects\/npp-compare\/\">Compare Plugin<\/a><\/li><li><a href=\"http:\/\/jedit.org\/\">jEdit<\/a> &#8211;&nbsp;<a href=\"http:\/\/plugins.jedit.org\/plugins\/?JDiffPlugin\">JDiffPlugin<\/a><\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Visual Studio<\/h2>\n\n\n\n<p>For visual studio, there is the <a href=\"https:\/\/docs.microsoft.com\/en-gb\/vsts\/tfvc\/compare-files?view=vsts\">compare files<\/a> functionality. But it&#8217;s a bit of a fiddle if you aren&#8217;t comparing files in an open project, or you aren&#8217;t using source control.<\/p>\n\n\n\n<p>Documentation can be found here:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Visual Studio: <a href=\"https:\/\/docs.microsoft.com\/en-gb\/azure\/devops\/repos\/tfvc\/compare-files?view=azure-devops&amp;viewFallbackFrom=vsts\">Compare files<\/a><\/li><li>Visual Studio Arguments: <a href=\"https:\/\/docs.microsoft.com\/en-gb\/visualstudio\/ide\/reference\/diff?view=vs-2015&amp;redirectedfrom=MSDN\">\/Diff<\/a><\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">My Visual Studio Wrapper<\/h2>\n\n\n\n<p>As I do a lot of work using SSMS for prototyping and testing (a development phase where I&#8217;m not using source control), I needed an independent diff interface. I wanted to do a diff on files using Visual Studio, which isn&#8217;t so straightforward if the files aren&#8217;t already open with visual studio and using source control.<\/p>\n\n\n\n<p>My solution was to manipulate the command line arguments to Visual Studio using python, including two file open dialogues which allow selecting files passed to the visual studio command line.<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>My code repository in git:\u00a0<a href=\"https:\/\/github.com\/d-roman-halliday\/vs_diff\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/github.com\/d-roman-halliday\/vs_diff<\/a><\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Usage<\/h2>\n\n\n\n<p>The easiest way to get &#8220;up and running&#8221; is to:<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>Copy the <code>.bat<\/code> file somewhere accessible (such as the desktop)<\/li><li>Change the python script reference in it to wherever the script is saved.<\/li><li>Double click the .bat file whenever you need it, it will open a &#8220;file open&#8221; dialogue to select the first file to compare, then another for the second file. Once both files are selected it will open Visual Studio in diff mode.<\/li><\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">Extending the &#8220;Send To&#8221; context menu<\/h3>\n\n\n\n<p>I run this with the bat file easily accessible.<\/p>\n\n\n\n<p>My solution can be modified to be added to the &#8220;Send To&#8221; context menu in windows:<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>In file explorer, go to the address: <code>shell:sendto<\/code><\/li><li>Add a .cmd file: <code>Visual Studio Diff.cmd<\/code><\/li><li>Put commands into it like a bash script (see below).<\/li><li>Modify the python script to take an optional argument for the first file.<\/li><\/ol>\n\n\n\n<p><strong>Visual Studio Diff.cmd<\/strong><\/p>\n\n\n\n<p>Populate the file with the below, changing the path reference:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"bat\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">@echo off\ncls\npython C:\\Your\\File\\python_script.py %1<\/pre>\n\n\n\n<p>If you want to be able to manage multiple files, then you can modify the command file to something like:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"bat\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">@echo off\ncls\n:python_loop\nIF \"%1\"==\"\" GOTO completed\npython C:\\Your\\File\\python_script.py %1\nSHIFT\nGOTO python_loop\n:completed<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>A diff tool (software to compare the difference between two text files) is a valuable asset to those of us who spend more than a healthy portion of the day looking at text files. Mostly this is to understand, what is different between the original and new version of some code. Some time ago, I&hellip;<\/p>\n<p class=\"read-more\"><a class=\"readmore-btn\" href=\"https:\/\/datablog.roman-halliday.com\/index.php\/2019\/11\/02\/visual-studio-diff-tools\/\">Read More<span class=\"screen-reader-text\">  Read More<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[11],"tags":[33,34],"class_list":["post-79","post","type-post","status-publish","format-standard","hentry","category-diy-tools","tag-diff","tag-python"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Visual Studio &amp; diff Tools - Rows Across The Lake<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/datablog.roman-halliday.com\/index.php\/2019\/11\/02\/visual-studio-diff-tools\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Visual Studio &amp; diff Tools - Rows Across The Lake\" \/>\n<meta property=\"og:description\" content=\"A diff tool (software to compare the difference between two text files) is a valuable asset to those of us who spend more than a healthy portion of the day looking at text files. Mostly this is to understand, what is different between the original and new version of some code. Some time ago, I&hellip;Read More Read More\" \/>\n<meta property=\"og:url\" content=\"https:\/\/datablog.roman-halliday.com\/index.php\/2019\/11\/02\/visual-studio-diff-tools\/\" \/>\n<meta property=\"og:site_name\" content=\"Rows Across The Lake\" \/>\n<meta property=\"article:published_time\" content=\"2019-11-02T18:00:04+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-09-14T11:33:25+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/datablog.roman-halliday.com\/wp-content\/uploads\/2022\/09\/6457522.jpg\" \/>\n<meta name=\"author\" content=\"david\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@d_roman_h\" \/>\n<meta name=\"twitter:site\" content=\"@d_roman_h\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"david\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated 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:\\\/\\\/datablog.roman-halliday.com\\\/index.php\\\/2019\\\/11\\\/02\\\/visual-studio-diff-tools\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/index.php\\\/2019\\\/11\\\/02\\\/visual-studio-diff-tools\\\/\"},\"author\":{\"name\":\"david\",\"@id\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/#\\\/schema\\\/person\\\/575f96d2590c3085923ff9e1b565748b\"},\"headline\":\"Visual Studio &#038; diff Tools\",\"datePublished\":\"2019-11-02T18:00:04+00:00\",\"dateModified\":\"2022-09-14T11:33:25+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/index.php\\\/2019\\\/11\\\/02\\\/visual-studio-diff-tools\\\/\"},\"wordCount\":446,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/#\\\/schema\\\/person\\\/575f96d2590c3085923ff9e1b565748b\"},\"image\":{\"@id\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/index.php\\\/2019\\\/11\\\/02\\\/visual-studio-diff-tools\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/wp-content\\\/uploads\\\/2022\\\/09\\\/6457522.jpg\",\"keywords\":[\"diff\",\"python\"],\"articleSection\":[\"DIY Tools\"],\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/datablog.roman-halliday.com\\\/index.php\\\/2019\\\/11\\\/02\\\/visual-studio-diff-tools\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/index.php\\\/2019\\\/11\\\/02\\\/visual-studio-diff-tools\\\/\",\"url\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/index.php\\\/2019\\\/11\\\/02\\\/visual-studio-diff-tools\\\/\",\"name\":\"Visual Studio & diff Tools - Rows Across The Lake\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/index.php\\\/2019\\\/11\\\/02\\\/visual-studio-diff-tools\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/index.php\\\/2019\\\/11\\\/02\\\/visual-studio-diff-tools\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/wp-content\\\/uploads\\\/2022\\\/09\\\/6457522.jpg\",\"datePublished\":\"2019-11-02T18:00:04+00:00\",\"dateModified\":\"2022-09-14T11:33:25+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/index.php\\\/2019\\\/11\\\/02\\\/visual-studio-diff-tools\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/datablog.roman-halliday.com\\\/index.php\\\/2019\\\/11\\\/02\\\/visual-studio-diff-tools\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/index.php\\\/2019\\\/11\\\/02\\\/visual-studio-diff-tools\\\/#primaryimage\",\"url\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/wp-content\\\/uploads\\\/2022\\\/09\\\/6457522.jpg\",\"contentUrl\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/wp-content\\\/uploads\\\/2022\\\/09\\\/6457522.jpg\",\"width\":1600,\"height\":1067,\"caption\":\"From above of crop anonymous African American female comparing data in papers at table of office\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/index.php\\\/2019\\\/11\\\/02\\\/visual-studio-diff-tools\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Visual Studio &#038; diff Tools\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/#website\",\"url\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/\",\"name\":\"Rows Across The Lake\",\"description\":\"Data &amp; Databases\",\"publisher\":{\"@id\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/#\\\/schema\\\/person\\\/575f96d2590c3085923ff9e1b565748b\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/#\\\/schema\\\/person\\\/575f96d2590c3085923ff9e1b565748b\",\"name\":\"david\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/acddbc676a1d5c73795edcf0627ee39e5aa947da9033b58373e03d93122cb3b7?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/acddbc676a1d5c73795edcf0627ee39e5aa947da9033b58373e03d93122cb3b7?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/acddbc676a1d5c73795edcf0627ee39e5aa947da9033b58373e03d93122cb3b7?s=96&d=mm&r=g\",\"caption\":\"david\"},\"logo\":{\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/acddbc676a1d5c73795edcf0627ee39e5aa947da9033b58373e03d93122cb3b7?s=96&d=mm&r=g\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Visual Studio & diff Tools - Rows Across The Lake","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:\/\/datablog.roman-halliday.com\/index.php\/2019\/11\/02\/visual-studio-diff-tools\/","og_locale":"en_GB","og_type":"article","og_title":"Visual Studio & diff Tools - Rows Across The Lake","og_description":"A diff tool (software to compare the difference between two text files) is a valuable asset to those of us who spend more than a healthy portion of the day looking at text files. Mostly this is to understand, what is different between the original and new version of some code. Some time ago, I&hellip;Read More Read More","og_url":"https:\/\/datablog.roman-halliday.com\/index.php\/2019\/11\/02\/visual-studio-diff-tools\/","og_site_name":"Rows Across The Lake","article_published_time":"2019-11-02T18:00:04+00:00","article_modified_time":"2022-09-14T11:33:25+00:00","og_image":[{"url":"https:\/\/datablog.roman-halliday.com\/wp-content\/uploads\/2022\/09\/6457522.jpg","type":"","width":"","height":""}],"author":"david","twitter_card":"summary_large_image","twitter_creator":"@d_roman_h","twitter_site":"@d_roman_h","twitter_misc":{"Written by":"david","Estimated reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/datablog.roman-halliday.com\/index.php\/2019\/11\/02\/visual-studio-diff-tools\/#article","isPartOf":{"@id":"https:\/\/datablog.roman-halliday.com\/index.php\/2019\/11\/02\/visual-studio-diff-tools\/"},"author":{"name":"david","@id":"https:\/\/datablog.roman-halliday.com\/#\/schema\/person\/575f96d2590c3085923ff9e1b565748b"},"headline":"Visual Studio &#038; diff Tools","datePublished":"2019-11-02T18:00:04+00:00","dateModified":"2022-09-14T11:33:25+00:00","mainEntityOfPage":{"@id":"https:\/\/datablog.roman-halliday.com\/index.php\/2019\/11\/02\/visual-studio-diff-tools\/"},"wordCount":446,"commentCount":0,"publisher":{"@id":"https:\/\/datablog.roman-halliday.com\/#\/schema\/person\/575f96d2590c3085923ff9e1b565748b"},"image":{"@id":"https:\/\/datablog.roman-halliday.com\/index.php\/2019\/11\/02\/visual-studio-diff-tools\/#primaryimage"},"thumbnailUrl":"https:\/\/datablog.roman-halliday.com\/wp-content\/uploads\/2022\/09\/6457522.jpg","keywords":["diff","python"],"articleSection":["DIY Tools"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/datablog.roman-halliday.com\/index.php\/2019\/11\/02\/visual-studio-diff-tools\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/datablog.roman-halliday.com\/index.php\/2019\/11\/02\/visual-studio-diff-tools\/","url":"https:\/\/datablog.roman-halliday.com\/index.php\/2019\/11\/02\/visual-studio-diff-tools\/","name":"Visual Studio & diff Tools - Rows Across The Lake","isPartOf":{"@id":"https:\/\/datablog.roman-halliday.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/datablog.roman-halliday.com\/index.php\/2019\/11\/02\/visual-studio-diff-tools\/#primaryimage"},"image":{"@id":"https:\/\/datablog.roman-halliday.com\/index.php\/2019\/11\/02\/visual-studio-diff-tools\/#primaryimage"},"thumbnailUrl":"https:\/\/datablog.roman-halliday.com\/wp-content\/uploads\/2022\/09\/6457522.jpg","datePublished":"2019-11-02T18:00:04+00:00","dateModified":"2022-09-14T11:33:25+00:00","breadcrumb":{"@id":"https:\/\/datablog.roman-halliday.com\/index.php\/2019\/11\/02\/visual-studio-diff-tools\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/datablog.roman-halliday.com\/index.php\/2019\/11\/02\/visual-studio-diff-tools\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/datablog.roman-halliday.com\/index.php\/2019\/11\/02\/visual-studio-diff-tools\/#primaryimage","url":"https:\/\/datablog.roman-halliday.com\/wp-content\/uploads\/2022\/09\/6457522.jpg","contentUrl":"https:\/\/datablog.roman-halliday.com\/wp-content\/uploads\/2022\/09\/6457522.jpg","width":1600,"height":1067,"caption":"From above of crop anonymous African American female comparing data in papers at table of office"},{"@type":"BreadcrumbList","@id":"https:\/\/datablog.roman-halliday.com\/index.php\/2019\/11\/02\/visual-studio-diff-tools\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/datablog.roman-halliday.com\/"},{"@type":"ListItem","position":2,"name":"Visual Studio &#038; diff Tools"}]},{"@type":"WebSite","@id":"https:\/\/datablog.roman-halliday.com\/#website","url":"https:\/\/datablog.roman-halliday.com\/","name":"Rows Across The Lake","description":"Data &amp; Databases","publisher":{"@id":"https:\/\/datablog.roman-halliday.com\/#\/schema\/person\/575f96d2590c3085923ff9e1b565748b"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/datablog.roman-halliday.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":["Person","Organization"],"@id":"https:\/\/datablog.roman-halliday.com\/#\/schema\/person\/575f96d2590c3085923ff9e1b565748b","name":"david","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/secure.gravatar.com\/avatar\/acddbc676a1d5c73795edcf0627ee39e5aa947da9033b58373e03d93122cb3b7?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/acddbc676a1d5c73795edcf0627ee39e5aa947da9033b58373e03d93122cb3b7?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/acddbc676a1d5c73795edcf0627ee39e5aa947da9033b58373e03d93122cb3b7?s=96&d=mm&r=g","caption":"david"},"logo":{"@id":"https:\/\/secure.gravatar.com\/avatar\/acddbc676a1d5c73795edcf0627ee39e5aa947da9033b58373e03d93122cb3b7?s=96&d=mm&r=g"}}]}},"_links":{"self":[{"href":"https:\/\/datablog.roman-halliday.com\/index.php\/wp-json\/wp\/v2\/posts\/79","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/datablog.roman-halliday.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/datablog.roman-halliday.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/datablog.roman-halliday.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/datablog.roman-halliday.com\/index.php\/wp-json\/wp\/v2\/comments?post=79"}],"version-history":[{"count":3,"href":"https:\/\/datablog.roman-halliday.com\/index.php\/wp-json\/wp\/v2\/posts\/79\/revisions"}],"predecessor-version":[{"id":502,"href":"https:\/\/datablog.roman-halliday.com\/index.php\/wp-json\/wp\/v2\/posts\/79\/revisions\/502"}],"wp:attachment":[{"href":"https:\/\/datablog.roman-halliday.com\/index.php\/wp-json\/wp\/v2\/media?parent=79"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/datablog.roman-halliday.com\/index.php\/wp-json\/wp\/v2\/categories?post=79"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/datablog.roman-halliday.com\/index.php\/wp-json\/wp\/v2\/tags?post=79"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}