{"id":723,"date":"2009-09-30T02:25:17","date_gmt":"2009-09-30T07:25:17","guid":{"rendered":"http:\/\/stager.tv\/?p=723"},"modified":"2009-09-30T02:25:17","modified_gmt":"2009-09-30T07:25:17","slug":"the-flip-side-of-logo-maths","status":"publish","type":"post","link":"http:\/\/stager.tv\/?p=723","title":{"rendered":"The Flip Side of Logo Maths"},"content":{"rendered":"<p style=\"text-align: center;\"><strong><span style=\"font-family: Verdana,Arial,Helvetica,sans-serif; font-size: x-small;\">Originally published in the September 2000 issue of Australia&#8217;s <em>Hotsource<\/em> online newsletter<\/span><\/strong><\/p>\n<p align=\"left\"><span style=\"font-family: Verdana,Arial,Helvetica,sans-serif; font-size: x-small;\">LogoWriter                    and MicroWorlds have done so much for interdisciplinary projects                    that it is useful to remember that MicroWorlds can play a major                    role in the development of mathematical knowledge. This issue                    and next will explore the numerical side of MicroWorlds.<\/span><\/p>\n<p align=\"left\"><span style=\"font-family: Verdana,Arial,Helvetica,sans-serif; font-size: x-small;\"><strong>First                    the Boring Stuff<\/strong><br \/>\nMicroWorlds procedures come in two categories, commands and                    procedures. Most Logo-users are quite comfortable with commands                    such as CG, FD, RT and SETC. Commands may or may not take inputs                    and they always produce an action. Every Logo expression (line                    of code) must begin with a command. This is why typing HEADING                    in the command centre produces the error message I don&#8217;t know                    what to do with HEADING. SHOW HEADING, FD HEADING, RT HEADING                    * 2 will all work because HEADING reports the turtle&#8217;s current                    orientation and hopes a command is listening. Commands may have                    any number of hoppers, but they never have a spout. REPEAT is                    an example of a two input (hopper) command.<\/span><\/p>\n<p align=\"left\"><span style=\"font-family: Verdana,Arial,Helvetica,sans-serif; font-size: x-small;\">Every                    one input command beginning with the prefix, SET, has a corresponding                    reporter with no inputs. For example:<\/span><\/p>\n<table border=\"0\" width=\"100%\">\n<tbody>\n<tr>\n<td width=\"27%\">Command<\/td>\n<td width=\"73%\">Reporter<\/td>\n<\/tr>\n<tr>\n<td width=\"27%\">SETC<\/td>\n<td width=\"73%\">COLOR<\/td>\n<\/tr>\n<tr>\n<td width=\"27%\">SETH<\/td>\n<td width=\"73%\">HEADING<\/td>\n<\/tr>\n<tr>\n<td width=\"27%\">SETPOS<\/td>\n<td width=\"73%\">POS<\/td>\n<\/tr>\n<tr>\n<td width=\"27%\">SETBG<\/td>\n<td width=\"73%\">BG<\/td>\n<\/tr>\n<tr>\n<td width=\"27%\">SETX<\/td>\n<td width=\"73%\">XCOR<\/td>\n<\/tr>\n<tr>\n<td width=\"27%\">SETTEXT1<\/td>\n<td width=\"73%\">TEXT1 (where text1 is the name of a textbox)<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p align=\"left\"><span style=\"font-family: Verdana,Arial,Helvetica,sans-serif; font-size: x-small;\"><strong>At                    the core of it all<br \/>\n<\/strong>Reporters are procedures that may or may not take an input,                    but they always output a result. Reporters are also known as                    functions or operations. Reporters are absolutely essential                    for most mathematical and interactive MicroWorlds projects.                    They pass information that can be used by other procedures or                    turtles. Reporters may have any number of hoppers, but they                    always have just one spout.<\/span><\/p>\n<p align=\"left\"><span style=\"font-family: Verdana,Arial,Helvetica,sans-serif; font-size: x-small;\"><strong>It&#8217;s                    your call<br \/>\n<\/strong>You can write your own reporters if you remember one simple                    rule. Every reporter procedure contains one output. When Logo                    encounters the OUTPUT reporter, the procedure is terminated.                    To create a new reporter you need to remember the rule about                    OUTPUT and decide how many inputs the reporter needs. For example,                    if we wanted to write a procedure to double a number, we would                    only need one input.<\/span><\/p>\n<p align=\"left\"><span style=\"font-family: Verdana,Arial,Helvetica,sans-serif; font-size: x-small;\">to                    double :number<br \/>\noutput :number * 2<br \/>\nend <\/span><\/p>\n<p align=\"left\"><span style=\"font-family: Verdana,Arial,Helvetica,sans-serif; font-size: x-small;\">or<\/span><\/p>\n<p align=\"left\"><span style=\"font-family: Verdana,Arial,Helvetica,sans-serif; font-size: x-small;\">to                    double :number<br \/>\noutput :number + :number<br \/>\nend <\/span><\/p>\n<p align=\"left\"><span style=\"font-family: Verdana,Arial,Helvetica,sans-serif; font-size: x-small;\">Type:                    DOUBLE 45 in the command centre and see what happens? Why did                    you receive an error message?<\/span><\/p>\n<p align=\"left\"><span style=\"font-family: Verdana,Arial,Helvetica,sans-serif; font-size: x-small;\">Many                    people who wish to double a number would write the following                    procedure.<\/span><\/p>\n<p align=\"left\"><span style=\"font-family: Verdana,Arial,Helvetica,sans-serif; font-size: x-small;\">To                    dumb.double :number<br \/>\nshow :number * 2<br \/>\nend <\/span><\/p>\n<p align=\"left\"><span style=\"font-family: Verdana,Arial,Helvetica,sans-serif; font-size: x-small;\">Then                    if they type, DUMB.DOUBLE 45 in the command centre they will                    get what they think is the desired result. This is the result                    they need only if they want to see the number 90 appear in the                    command centre.<\/span><\/p>\n<p align=\"left\"><span style=\"font-family: Verdana,Arial,Helvetica,sans-serif; font-size: x-small;\">Try                    typing the following instructions in the command centre:<br \/>\nFD DUMB.DOUBLE<br \/>\n45 DUMB.DOUBLE DUMB.DOUBLE 45 <\/span><\/p>\n<p align=\"left\"><span style=\"font-family: Verdana,Arial,Helvetica,sans-serif; font-size: x-small;\">Now                    try typing:<\/span><\/p>\n<p align=\"left\"><span style=\"font-family: Verdana,Arial,Helvetica,sans-serif; font-size: x-small;\">SHOW                    DOUBLE 45<br \/>\nFD DOUBLE 45 RT DOUBLE 45<br \/>\nSHOW DOUBLE DOUBLE DOUBLE 45 <\/span><\/p>\n<p align=\"left\"><span style=\"font-family: Verdana,Arial,Helvetica,sans-serif; font-size: x-small;\">Our                    DOUBLE procedure is much more flexible and versatile than DUMB.DOUBLE. <\/span><\/p>\n<p align=\"left\"><span style=\"font-family: Verdana,Arial,Helvetica,sans-serif; font-size: x-small;\"><strong>They                    can speak to each other<br \/>\n<\/strong>Reporters can perform a manipulation\/operation on an input                    and then report that result to another reporter. Logo (MicroWorlds)                    reads reporters from right to left since you can&#8217;t type from                    top to bottom. The following graphic illustrates FD ADD5 DOUBLE                    DOUBLE 5. <\/span><\/p>\n<p align=\"left\"><span style=\"font-family: Verdana,Arial,Helvetica,sans-serif; font-size: x-small;\">Logo                    is a prefix language. That means that inputs always follow the                    procedures. Since humans like the standard arithmetic operators                    (+-*\/), Logo will tolerate them, but often requires parentheses                    for grouping. These infix reporters tend to give the turtle                    indigestion. Logo much prefers PRODUCT 3 4 to 3 * 4. See how                    SHOW DOUBLE DOUBLE 3 + 4 behaves if you add parentheses, like                    SHOW (DOUBLE DOUBLE 3) + 4.<\/span><\/p>\n<p align=\"left\"><span style=\"font-family: Verdana,Arial,Helvetica,sans-serif; font-size: x-small;\"><strong>Make                    it simple<br \/>\n<\/strong>Young children can use similar simple arithmetic reporters                    to leverage their own turtle graphics. For example, a child                    incapable of calculating twice the distance for the turtle travel                    could use a DOUBLE or TWICE reporter and operate algorithmically.                    These procedures could be written by a teacher ahead of time                    or by the student herself.<\/span><\/p>\n<p align=\"left\"><span style=\"font-family: Verdana,Arial,Helvetica,sans-serif; font-size: x-small;\">Operation                    of fractions may also be explored with simple reporters.<\/span><\/p>\n<p align=\"left\"><span style=\"font-family: Verdana,Arial,Helvetica,sans-serif; font-size: x-small;\">To                    3fourths :number<br \/>\noutput :number * 3 \/ 4<br \/>\nend <\/span><\/p>\n<p align=\"left\"><span style=\"font-family: Verdana,Arial,Helvetica,sans-serif; font-size: x-small;\">to                    2thirds :number<br \/>\noutput :number * 2 \/ 3<br \/>\nend <\/span><\/p>\n<p align=\"left\"><span style=\"font-family: Verdana,Arial,Helvetica,sans-serif; font-size: x-small;\">to                    1half :number<br \/>\noutput :number \/ 2<br \/>\nend <\/span><\/p>\n<p align=\"left\"><span style=\"font-family: Verdana,Arial,Helvetica,sans-serif; font-size: x-small;\">To                    &#8220;play with&#8221; multiplication of fractions, try typing:<br \/>\nSHOW 3fourths 100<br \/>\nSHOW 1half 100<br \/>\nSHOW 2thirds 3fourths 100 <\/span><\/p>\n<p align=\"left\"><span style=\"font-family: Verdana,Arial,Helvetica,sans-serif; font-size: x-small;\">You                    may of course use these fractional reporters to command the                    turtle. Type the following BAR procedure on the procedure page.<\/span><\/p>\n<p align=\"left\"><span style=\"font-family: Verdana,Arial,Helvetica,sans-serif; font-size: x-small;\">To                    bar :height<br \/>\npd repeat 2 [fd :height rt 90 FD 25 rt 90]<br \/>\npu rt 90 FD 35 lt 90<br \/>\nend <\/span><\/p>\n<p align=\"left\"><span style=\"font-family: Verdana,Arial,Helvetica,sans-serif; font-size: x-small;\">See                    what happens if you type the following in the command centre.<\/span><\/p>\n<p align=\"left\"><span style=\"font-family: Verdana,Arial,Helvetica,sans-serif; font-size: x-small;\">BAR                    100<br \/>\nBAR 3fourths<br \/>\n100 BAR 1half 100<br \/>\nBAR 2thirds 3fourths 100 <\/span><\/p>\n<p align=\"left\"><span style=\"font-family: Verdana,Arial,Helvetica,sans-serif; font-size: x-small;\"><strong>Battle                    of the Functions<\/strong><br \/>\nYou can make a game out of all these arithmetic reporters. Put                    kids in groups of four or five and have them each contribute                    one new arithmetic procedure in the style of DOUBLE. They may                    use their own imprecise names for the reporters if they wish                    (as long as they can explain its function to their peers). Each                    kid takes turns inventing a number problem consisting of stacked-up                    reporters and one numerical input. The object of the game is                    to invent a problem that is difficult, but not impossible to                    solve in one&#8217;s head. Wiseguys are penalized by the rules of                    the game.<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Originally published in the September 2000 issue of Australia&#8217;s Hotsource online newsletter LogoWriter and MicroWorlds have done so much for interdisciplinary projects that it is &hellip; <\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[479,446,430,434,429],"tags":[542,549,551,550,543],"class_list":["post-723","post","type-post","status-publish","format-standard","hentry","category-11-computing","category-classic-stager","category-creativity","category-learning","category-project-based-learning","tag-logo-programming","tag-logowriter","tag-math-education","tag-maths-education","tag-microworlds"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>The Flip Side of Logo Maths - Stager-to-Go<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/stager.tv\/?p=723\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"The Flip Side of Logo Maths - Stager-to-Go\" \/>\n<meta property=\"og:description\" content=\"Originally published in the September 2000 issue of Australia&#8217;s Hotsource online newsletter LogoWriter and MicroWorlds have done so much for interdisciplinary projects that it is &hellip;\" \/>\n<meta property=\"og:url\" content=\"http:\/\/stager.tv\/?p=723\" \/>\n<meta property=\"og:site_name\" content=\"Stager-to-Go\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/gary.stager\/\" \/>\n<meta property=\"article:published_time\" content=\"2009-09-30T07:25:17+00:00\" \/>\n<meta name=\"author\" content=\"Gary Stager\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@garystager\" \/>\n<meta name=\"twitter:site\" content=\"@garystager\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Gary Stager\" \/>\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\":\"http:\\\/\\\/stager.tv\\\/?p=723#article\",\"isPartOf\":{\"@id\":\"http:\\\/\\\/stager.tv\\\/?p=723\"},\"author\":{\"name\":\"Gary Stager\",\"@id\":\"http:\\\/\\\/stager.tv\\\/#\\\/schema\\\/person\\\/8bd320bea4758fc56f376ecdd9b8b184\"},\"headline\":\"The Flip Side of Logo Maths\",\"datePublished\":\"2009-09-30T07:25:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"http:\\\/\\\/stager.tv\\\/?p=723\"},\"wordCount\":859,\"commentCount\":2,\"keywords\":[\"Logo programming\",\"LogoWriter\",\"math education\",\"Maths education\",\"MicroWorlds\"],\"articleSection\":[\"1:1 computing\",\"classic Stager\",\"creativity\",\"learning\",\"project-based learning\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"http:\\\/\\\/stager.tv\\\/?p=723#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"http:\\\/\\\/stager.tv\\\/?p=723\",\"url\":\"http:\\\/\\\/stager.tv\\\/?p=723\",\"name\":\"The Flip Side of Logo Maths - Stager-to-Go\",\"isPartOf\":{\"@id\":\"http:\\\/\\\/stager.tv\\\/#website\"},\"datePublished\":\"2009-09-30T07:25:17+00:00\",\"author\":{\"@id\":\"http:\\\/\\\/stager.tv\\\/#\\\/schema\\\/person\\\/8bd320bea4758fc56f376ecdd9b8b184\"},\"breadcrumb\":{\"@id\":\"http:\\\/\\\/stager.tv\\\/?p=723#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\\\/\\\/stager.tv\\\/?p=723\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\\\/\\\/stager.tv\\\/?p=723#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\\\/\\\/stager.tv\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"The Flip Side of Logo Maths\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\\\/\\\/stager.tv\\\/#website\",\"url\":\"http:\\\/\\\/stager.tv\\\/\",\"name\":\"Stager-to-Go\",\"description\":\"The personal blog of Gary S. Stager, Ph.D.\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\\\/\\\/stager.tv\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"http:\\\/\\\/stager.tv\\\/#\\\/schema\\\/person\\\/8bd320bea4758fc56f376ecdd9b8b184\",\"name\":\"Gary Stager\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\\\/\\\/stager.tv\\\/wp-content\\\/uploads\\\/2024\\\/03\\\/Gary-gravatar.png\",\"url\":\"http:\\\/\\\/stager.tv\\\/wp-content\\\/uploads\\\/2024\\\/03\\\/Gary-gravatar.png\",\"contentUrl\":\"http:\\\/\\\/stager.tv\\\/wp-content\\\/uploads\\\/2024\\\/03\\\/Gary-gravatar.png\",\"caption\":\"Gary Stager\"},\"description\":\"Veteran educator Gary Stager, Ph.D. is the author of Twenty Things to Do with a Computer - Forward 50, co-author of\u00a0Invent To Learn \u2014 Making, Tinkering, and Engineering in the Classroom, publisher at\u00a0Constructing Modern Knowledge Press,\u00a0and the founder of the\u00a0Constructing Modern Knowledge\u00a0summer institute. He led professional development in the world\u2019s first 1:1 laptop schools thirty years ago and designed one of the oldest online graduate school programs. Gary is also the curator of The Seymour Papert archives at DailyPapert.com. Learn more about\u00a0Gary here.\",\"sameAs\":[\"http:\\\/\\\/cmkpress.com\\\/gary\"],\"url\":\"http:\\\/\\\/stager.tv\\\/?author=2\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"The Flip Side of Logo Maths - Stager-to-Go","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":"http:\/\/stager.tv\/?p=723","og_locale":"en_US","og_type":"article","og_title":"The Flip Side of Logo Maths - Stager-to-Go","og_description":"Originally published in the September 2000 issue of Australia&#8217;s Hotsource online newsletter LogoWriter and MicroWorlds have done so much for interdisciplinary projects that it is &hellip;","og_url":"http:\/\/stager.tv\/?p=723","og_site_name":"Stager-to-Go","article_publisher":"https:\/\/www.facebook.com\/gary.stager\/","article_published_time":"2009-09-30T07:25:17+00:00","author":"Gary Stager","twitter_card":"summary_large_image","twitter_creator":"@garystager","twitter_site":"@garystager","twitter_misc":{"Written by":"Gary Stager","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"http:\/\/stager.tv\/?p=723#article","isPartOf":{"@id":"http:\/\/stager.tv\/?p=723"},"author":{"name":"Gary Stager","@id":"http:\/\/stager.tv\/#\/schema\/person\/8bd320bea4758fc56f376ecdd9b8b184"},"headline":"The Flip Side of Logo Maths","datePublished":"2009-09-30T07:25:17+00:00","mainEntityOfPage":{"@id":"http:\/\/stager.tv\/?p=723"},"wordCount":859,"commentCount":2,"keywords":["Logo programming","LogoWriter","math education","Maths education","MicroWorlds"],"articleSection":["1:1 computing","classic Stager","creativity","learning","project-based learning"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["http:\/\/stager.tv\/?p=723#respond"]}]},{"@type":"WebPage","@id":"http:\/\/stager.tv\/?p=723","url":"http:\/\/stager.tv\/?p=723","name":"The Flip Side of Logo Maths - Stager-to-Go","isPartOf":{"@id":"http:\/\/stager.tv\/#website"},"datePublished":"2009-09-30T07:25:17+00:00","author":{"@id":"http:\/\/stager.tv\/#\/schema\/person\/8bd320bea4758fc56f376ecdd9b8b184"},"breadcrumb":{"@id":"http:\/\/stager.tv\/?p=723#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/stager.tv\/?p=723"]}]},{"@type":"BreadcrumbList","@id":"http:\/\/stager.tv\/?p=723#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/stager.tv\/"},{"@type":"ListItem","position":2,"name":"The Flip Side of Logo Maths"}]},{"@type":"WebSite","@id":"http:\/\/stager.tv\/#website","url":"http:\/\/stager.tv\/","name":"Stager-to-Go","description":"The personal blog of Gary S. Stager, Ph.D.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/stager.tv\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"http:\/\/stager.tv\/#\/schema\/person\/8bd320bea4758fc56f376ecdd9b8b184","name":"Gary Stager","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/stager.tv\/wp-content\/uploads\/2024\/03\/Gary-gravatar.png","url":"http:\/\/stager.tv\/wp-content\/uploads\/2024\/03\/Gary-gravatar.png","contentUrl":"http:\/\/stager.tv\/wp-content\/uploads\/2024\/03\/Gary-gravatar.png","caption":"Gary Stager"},"description":"Veteran educator Gary Stager, Ph.D. is the author of Twenty Things to Do with a Computer - Forward 50, co-author of\u00a0Invent To Learn \u2014 Making, Tinkering, and Engineering in the Classroom, publisher at\u00a0Constructing Modern Knowledge Press,\u00a0and the founder of the\u00a0Constructing Modern Knowledge\u00a0summer institute. He led professional development in the world\u2019s first 1:1 laptop schools thirty years ago and designed one of the oldest online graduate school programs. Gary is also the curator of The Seymour Papert archives at DailyPapert.com. Learn more about\u00a0Gary here.","sameAs":["http:\/\/cmkpress.com\/gary"],"url":"http:\/\/stager.tv\/?author=2"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"http:\/\/stager.tv\/index.php?rest_route=\/wp\/v2\/posts\/723","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/stager.tv\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/stager.tv\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/stager.tv\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"http:\/\/stager.tv\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=723"}],"version-history":[{"count":0,"href":"http:\/\/stager.tv\/index.php?rest_route=\/wp\/v2\/posts\/723\/revisions"}],"wp:attachment":[{"href":"http:\/\/stager.tv\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=723"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/stager.tv\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=723"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/stager.tv\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=723"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}