

{"id":13685,"date":"2022-12-19T11:03:25","date_gmt":"2022-12-19T16:03:25","guid":{"rendered":"https:\/\/rud.is\/b\/?p=13685"},"modified":"2022-12-19T11:03:25","modified_gmt":"2022-12-19T16:03:25","slug":"2022-hanukkah-of-data-puzzle-1","status":"publish","type":"post","link":"https:\/\/rud.is\/b\/2022\/12\/19\/2022-hanukkah-of-data-puzzle-1\/","title":{"rendered":"2022 Hanukkah of Data \u2022\u00a0Puzzle 1"},"content":{"rendered":"<p>Visiting #2 and doing some <code>$WORK<\/code>-work, but intrigued with <a href=\"https:\/\/hanukkah.bluebird.sh\/5783\/\">Hanukkah of Data<\/a> since Puzzle 0 was solvable with a ZIP password cracker (the calendar date math seemed too trivial to bother with).<\/p>\n<p>Decided to fall back to R for this (vs Observable for the Advent of Code which I&#8217;ll dedicate time to finishing next week).<\/p>\n<p>R has a {phonenumber} package, so we&#8217;ll cheat and use that despite it being very brutish in how it does the <code>letterToNumber()<\/code> conversion.<\/p>\n<p>No spoilers besides the code.<\/p>\n<pre><code class=\"language-r\">library(phonenumber)\nlibrary(tidyverse)\n\ncust &lt;- read_csv(\"~\/Downloads\/noahs-csv\/noahs-customers.csv\")\n\ncust |&gt; \n  filter(!grepl(\"[01]\", phone)) |&gt; # only care abt letters\n  mutate(\n    last_name = stri_replace_all_regex(name, \"(II|III|IV|Jr\\\\.)\", \"\"), # get rid of suffix if any\n  ) |&gt; \n  separate( # get only the last name\n    col = last_name,\n    into = c(\"x1\", \"x2\", \"last_name\"),\n    sep = \" \",\n    fill = \"left\"\n  ) |&gt; \n  filter(\n    nchar(last_name) == 10 # only complete last names\n  ) |&gt; \n  mutate(\n    last_name = toupper(last_name),\n    phone = gsub(\"-\", \"\", phone) # we're going to compare so remove the '-'\n  ) |&gt; \n  select(last_name, phone) |&gt; \n  mutate(\n    trans = strsplit(xx$last_name, \"\") |&gt; \n      map_chr(~map(.x, letterToNumber) |&gt; paste0(collapse=\"\")) # feels like I cld optimize this\n  ) |&gt; \n  filter(trans == phone)\n<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Visiting #2 and doing some $WORK-work, but intrigued with Hanukkah of Data since Puzzle 0 was solvable with a ZIP password cracker (the calendar date math seemed too trivial to bother with). Decided to fall back to R for this (vs Observable for the Advent of Code which I&#8217;ll dedicate time to finishing next week). [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"activitypub_content_warning":"","activitypub_content_visibility":"","activitypub_max_image_attachments":3,"activitypub_interaction_policy_quote":"anyone","activitypub_status":"","footnotes":""},"categories":[91],"tags":[],"class_list":["post-13685","post","type-post","status-publish","format-standard","hentry","category-r"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>2022 Hanukkah of Data \u2022\u00a0Puzzle 1 - rud.is<\/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:\/\/rud.is\/b\/2022\/12\/19\/2022-hanukkah-of-data-puzzle-1\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"2022 Hanukkah of Data \u2022\u00a0Puzzle 1 - rud.is\" \/>\n<meta property=\"og:description\" content=\"Visiting #2 and doing some $WORK-work, but intrigued with Hanukkah of Data since Puzzle 0 was solvable with a ZIP password cracker (the calendar date math seemed too trivial to bother with). Decided to fall back to R for this (vs Observable for the Advent of Code which I&#8217;ll dedicate time to finishing next week). [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/rud.is\/b\/2022\/12\/19\/2022-hanukkah-of-data-puzzle-1\/\" \/>\n<meta property=\"og:site_name\" content=\"rud.is\" \/>\n<meta property=\"article:published_time\" content=\"2022-12-19T16:03:25+00:00\" \/>\n<meta name=\"author\" content=\"hrbrmstr\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"hrbrmstr\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/rud.is\\\/b\\\/2022\\\/12\\\/19\\\/2022-hanukkah-of-data-puzzle-1\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/rud.is\\\/b\\\/2022\\\/12\\\/19\\\/2022-hanukkah-of-data-puzzle-1\\\/\"},\"author\":{\"name\":\"hrbrmstr\",\"@id\":\"https:\\\/\\\/rud.is\\\/b\\\/#\\\/schema\\\/person\\\/d7cb7487ab0527447f7fda5c423ff886\"},\"headline\":\"2022 Hanukkah of Data \u2022\u00a0Puzzle 1\",\"datePublished\":\"2022-12-19T16:03:25+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/rud.is\\\/b\\\/2022\\\/12\\\/19\\\/2022-hanukkah-of-data-puzzle-1\\\/\"},\"wordCount\":86,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\\\/\\\/rud.is\\\/b\\\/#\\\/schema\\\/person\\\/d7cb7487ab0527447f7fda5c423ff886\"},\"articleSection\":[\"R\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/rud.is\\\/b\\\/2022\\\/12\\\/19\\\/2022-hanukkah-of-data-puzzle-1\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/rud.is\\\/b\\\/2022\\\/12\\\/19\\\/2022-hanukkah-of-data-puzzle-1\\\/\",\"url\":\"https:\\\/\\\/rud.is\\\/b\\\/2022\\\/12\\\/19\\\/2022-hanukkah-of-data-puzzle-1\\\/\",\"name\":\"2022 Hanukkah of Data \u2022\u00a0Puzzle 1 - rud.is\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/rud.is\\\/b\\\/#website\"},\"datePublished\":\"2022-12-19T16:03:25+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/rud.is\\\/b\\\/2022\\\/12\\\/19\\\/2022-hanukkah-of-data-puzzle-1\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/rud.is\\\/b\\\/2022\\\/12\\\/19\\\/2022-hanukkah-of-data-puzzle-1\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/rud.is\\\/b\\\/2022\\\/12\\\/19\\\/2022-hanukkah-of-data-puzzle-1\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/rud.is\\\/b\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"2022 Hanukkah of Data \u2022\u00a0Puzzle 1\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/rud.is\\\/b\\\/#website\",\"url\":\"https:\\\/\\\/rud.is\\\/b\\\/\",\"name\":\"rud.is\",\"description\":\"&quot;In God we trust. All others must bring data&quot;\",\"publisher\":{\"@id\":\"https:\\\/\\\/rud.is\\\/b\\\/#\\\/schema\\\/person\\\/d7cb7487ab0527447f7fda5c423ff886\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/rud.is\\\/b\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/rud.is\\\/b\\\/#\\\/schema\\\/person\\\/d7cb7487ab0527447f7fda5c423ff886\",\"name\":\"hrbrmstr\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/i0.wp.com\\\/rud.is\\\/b\\\/wp-content\\\/uploads\\\/2023\\\/10\\\/ukr-shield.png?fit=460%2C460&ssl=1\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/rud.is\\\/b\\\/wp-content\\\/uploads\\\/2023\\\/10\\\/ukr-shield.png?fit=460%2C460&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/rud.is\\\/b\\\/wp-content\\\/uploads\\\/2023\\\/10\\\/ukr-shield.png?fit=460%2C460&ssl=1\",\"width\":460,\"height\":460,\"caption\":\"hrbrmstr\"},\"logo\":{\"@id\":\"https:\\\/\\\/i0.wp.com\\\/rud.is\\\/b\\\/wp-content\\\/uploads\\\/2023\\\/10\\\/ukr-shield.png?fit=460%2C460&ssl=1\"},\"description\":\"Don't look at me\u2026I do what he does \u2014 just slower. #rstats avuncular \u2022 ?Resistance Fighter \u2022 Cook \u2022 Christian \u2022 [Master] Chef des Donn\u00e9es de S\u00e9curit\u00e9 @ @rapid7\",\"sameAs\":[\"http:\\\/\\\/rud.is\"],\"url\":\"https:\\\/\\\/rud.is\\\/b\\\/author\\\/hrbrmstr\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"2022 Hanukkah of Data \u2022\u00a0Puzzle 1 - rud.is","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:\/\/rud.is\/b\/2022\/12\/19\/2022-hanukkah-of-data-puzzle-1\/","og_locale":"en_US","og_type":"article","og_title":"2022 Hanukkah of Data \u2022\u00a0Puzzle 1 - rud.is","og_description":"Visiting #2 and doing some $WORK-work, but intrigued with Hanukkah of Data since Puzzle 0 was solvable with a ZIP password cracker (the calendar date math seemed too trivial to bother with). Decided to fall back to R for this (vs Observable for the Advent of Code which I&#8217;ll dedicate time to finishing next week). [&hellip;]","og_url":"https:\/\/rud.is\/b\/2022\/12\/19\/2022-hanukkah-of-data-puzzle-1\/","og_site_name":"rud.is","article_published_time":"2022-12-19T16:03:25+00:00","author":"hrbrmstr","twitter_card":"summary_large_image","twitter_misc":{"Written by":"hrbrmstr","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/rud.is\/b\/2022\/12\/19\/2022-hanukkah-of-data-puzzle-1\/#article","isPartOf":{"@id":"https:\/\/rud.is\/b\/2022\/12\/19\/2022-hanukkah-of-data-puzzle-1\/"},"author":{"name":"hrbrmstr","@id":"https:\/\/rud.is\/b\/#\/schema\/person\/d7cb7487ab0527447f7fda5c423ff886"},"headline":"2022 Hanukkah of Data \u2022\u00a0Puzzle 1","datePublished":"2022-12-19T16:03:25+00:00","mainEntityOfPage":{"@id":"https:\/\/rud.is\/b\/2022\/12\/19\/2022-hanukkah-of-data-puzzle-1\/"},"wordCount":86,"commentCount":2,"publisher":{"@id":"https:\/\/rud.is\/b\/#\/schema\/person\/d7cb7487ab0527447f7fda5c423ff886"},"articleSection":["R"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/rud.is\/b\/2022\/12\/19\/2022-hanukkah-of-data-puzzle-1\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/rud.is\/b\/2022\/12\/19\/2022-hanukkah-of-data-puzzle-1\/","url":"https:\/\/rud.is\/b\/2022\/12\/19\/2022-hanukkah-of-data-puzzle-1\/","name":"2022 Hanukkah of Data \u2022\u00a0Puzzle 1 - rud.is","isPartOf":{"@id":"https:\/\/rud.is\/b\/#website"},"datePublished":"2022-12-19T16:03:25+00:00","breadcrumb":{"@id":"https:\/\/rud.is\/b\/2022\/12\/19\/2022-hanukkah-of-data-puzzle-1\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/rud.is\/b\/2022\/12\/19\/2022-hanukkah-of-data-puzzle-1\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/rud.is\/b\/2022\/12\/19\/2022-hanukkah-of-data-puzzle-1\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/rud.is\/b\/"},{"@type":"ListItem","position":2,"name":"2022 Hanukkah of Data \u2022\u00a0Puzzle 1"}]},{"@type":"WebSite","@id":"https:\/\/rud.is\/b\/#website","url":"https:\/\/rud.is\/b\/","name":"rud.is","description":"&quot;In God we trust. All others must bring data&quot;","publisher":{"@id":"https:\/\/rud.is\/b\/#\/schema\/person\/d7cb7487ab0527447f7fda5c423ff886"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/rud.is\/b\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/rud.is\/b\/#\/schema\/person\/d7cb7487ab0527447f7fda5c423ff886","name":"hrbrmstr","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2023\/10\/ukr-shield.png?fit=460%2C460&ssl=1","url":"https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2023\/10\/ukr-shield.png?fit=460%2C460&ssl=1","contentUrl":"https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2023\/10\/ukr-shield.png?fit=460%2C460&ssl=1","width":460,"height":460,"caption":"hrbrmstr"},"logo":{"@id":"https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2023\/10\/ukr-shield.png?fit=460%2C460&ssl=1"},"description":"Don't look at me\u2026I do what he does \u2014 just slower. #rstats avuncular \u2022 ?Resistance Fighter \u2022 Cook \u2022 Christian \u2022 [Master] Chef des Donn\u00e9es de S\u00e9curit\u00e9 @ @rapid7","sameAs":["http:\/\/rud.is"],"url":"https:\/\/rud.is\/b\/author\/hrbrmstr\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p23idr-3yJ","jetpack_likes_enabled":true,"jetpack-related-posts":[{"id":13688,"url":"https:\/\/rud.is\/b\/2022\/12\/20\/2022-hanukkah-of-data-puzzle-2\/","url_meta":{"origin":13685,"position":0},"title":"2022 Hanukkah of Data \u2022 Puzzle 2","author":"hrbrmstr","date":"2022-12-20","format":false,"excerpt":"Ref: https:\/\/rud.is\/b\/2022\/12\/19\/2022-hanukkah-of-data-puzzle-1\/ library(tidyverse) cust <- read_csv(\"~\/Downloads\/noahs-csv\/noahs-customers.csv\") orders_items <- read_csv(\"~\/Downloads\/noahs-csv\/noahs-orders_items.csv\") orders <- read_csv(\"~\/Downloads\/noahs-csv\/noahs-orders.csv\") products <- read_csv(\"~\/Downloads\/noahs-csv\/noahs-products.csv\") orders_items |> left_join(products) -> oip orders |> left_join(oip) -> orders orders |> filter( 2017 == lubridate::year(ordered), grepl(\"cleaner|bagel\", desc, ignore.case=TRUE) ) |> group_by(customerid, orderid) |> summarise( ord = paste0(desc, collapse=\"; \"), n = n() ) |>\u2026","rel":"","context":"In &quot;R&quot;","block_context":{"text":"R","link":"https:\/\/rud.is\/b\/category\/r\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":11712,"url":"https:\/\/rud.is\/b\/2019\/01\/02\/apache-drill-1-15-0-sergeant-0-8-0-pcapng-support-proper-column-types-mounds-of-new-metadata\/","url_meta":{"origin":13685,"position":1},"title":"Apache Drill 1.15.0 + sergeant 0.8.0 = pcapng Support, Proper Column Types &#038; Mounds of New Metadata","author":"hrbrmstr","date":"2019-01-02","format":false,"excerpt":"Apache Drill is an innovative distributed SQL engine designed to enable data exploration and analytics on non-relational datastores [...] without having to create and manage schemas. [...] It has a schema-free JSON document model similar to MongoDB and Elasticsearch; [a plethora of APIs, including] ANSI SQL, ODBC\/JDBC, and HTTP[S] REST;\u2026","rel":"","context":"In &quot;Apache Drill&quot;","block_context":{"text":"Apache Drill","link":"https:\/\/rud.is\/b\/category\/apache-drill\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":12855,"url":"https:\/\/rud.is\/b\/2020\/11\/20\/updated-apache-drill-r-jdbc-interface-package-sergeant-caffeinated-with-dbplyr-2-x-compatibility\/","url_meta":{"origin":13685,"position":2},"title":"Updated Apache Drill R JDBC Interface Package {sergeant.caffeinated} With {dbplyr} 2.x Compatibility","author":"hrbrmstr","date":"2020-11-20","format":false,"excerpt":"While the future of the Apache Drill ecosystem is somewhat in-play (MapR \u2014 a major sponsoring org for the project \u2014 is kinda dead), I still use it almost daily (on my local home office cluster) to avoid handing over any more money to Amazon than I\/we already do. The\u2026","rel":"","context":"In &quot;Apache Drill&quot;","block_context":{"text":"Apache Drill","link":"https:\/\/rud.is\/b\/category\/apache-drill\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":6172,"url":"https:\/\/rud.is\/b\/2017\/08\/24\/reticulating-readability\/","url_meta":{"origin":13685,"position":3},"title":"Reticulating Readability","author":"hrbrmstr","date":"2017-08-24","format":false,"excerpt":"I needed to clean some web HTML content for a project and I usually use hgr::clean_text() for it and that generally works pretty well. The clean_text() function uses an XSLT stylesheet to try to remove all non-\"main text content\" from an HTML document and it usually does a good job\u2026","rel":"","context":"In &quot;R&quot;","block_context":{"text":"R","link":"https:\/\/rud.is\/b\/category\/r\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":7992,"url":"https:\/\/rud.is\/b\/2018\/01\/19\/the-friday-rstats-puzzler-2018-01-19\/","url_meta":{"origin":13685,"position":4},"title":"The Friday #rstats PuzzleR : 2018-01-19","author":"hrbrmstr","date":"2018-01-19","format":false,"excerpt":"Peter Meissner (@marvin_dpr) released crossword.r? to CRAN today. It's a spiffy package that makes it dead simple to generate crossword puzzles. He also made a super spiffy javascript library to pair with it, which can turn crossword model output into an interactive puzzle. I thought I'd combine those two creations\u2026","rel":"","context":"In &quot;puzzler&quot;","block_context":{"text":"puzzler","link":"https:\/\/rud.is\/b\/category\/puzzler\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2018\/01\/DT7sT28V4AAlhNQ.jpg?fit=1200%2C1048&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2018\/01\/DT7sT28V4AAlhNQ.jpg?fit=1200%2C1048&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2018\/01\/DT7sT28V4AAlhNQ.jpg?fit=1200%2C1048&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2018\/01\/DT7sT28V4AAlhNQ.jpg?fit=1200%2C1048&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/rud.is\/b\/wp-content\/uploads\/2018\/01\/DT7sT28V4AAlhNQ.jpg?fit=1200%2C1048&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":3413,"url":"https:\/\/rud.is\/b\/2015\/05\/15\/u-s-drought-monitoring-with-hexbin-state-maps-in-r\/","url_meta":{"origin":13685,"position":5},"title":"U.S. Drought Monitoring With Hexbin State Maps in R","author":"hrbrmstr","date":"2015-05-15","format":false,"excerpt":"On the news, today, of the early stages of drought hitting the U.S. northeast states I decided to springboard off of yesterday's post and show a more practical use of hexbin state maps than the built-in (and still purpose unknown to me) \"bees\" data. The U.S. Drought Monitor site supplies\u2026","rel":"","context":"In &quot;cartography&quot;","block_context":{"text":"cartography","link":"https:\/\/rud.is\/b\/category\/cartography\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/rud.is\/b\/wp-json\/wp\/v2\/posts\/13685","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/rud.is\/b\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/rud.is\/b\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/rud.is\/b\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/rud.is\/b\/wp-json\/wp\/v2\/comments?post=13685"}],"version-history":[{"count":0,"href":"https:\/\/rud.is\/b\/wp-json\/wp\/v2\/posts\/13685\/revisions"}],"wp:attachment":[{"href":"https:\/\/rud.is\/b\/wp-json\/wp\/v2\/media?parent=13685"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/rud.is\/b\/wp-json\/wp\/v2\/categories?post=13685"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/rud.is\/b\/wp-json\/wp\/v2\/tags?post=13685"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}