{"id":310,"date":"2024-04-09T07:26:21","date_gmt":"2024-04-09T06:26:21","guid":{"rendered":"https:\/\/vivertido.com\/?p=310"},"modified":"2024-04-09T08:22:52","modified_gmt":"2024-04-09T07:22:52","slug":"more-p5-examples","status":"publish","type":"post","link":"https:\/\/vivertido.com\/?p=310","title":{"rendered":"More P5 examples"},"content":{"rendered":"\n<div data-beyondwords-marker=\"7d8a8345-c8fb-47d0-af4a-ab8d7ed3c296\" class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex\">\n<div data-beyondwords-marker=\"02896a36-6644-4816-aeef-9d2e3e581b9f\" class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div data-beyondwords-marker=\"78c32e42-8c0e-4d6e-b84f-abf2957ade38\" class=\"wp-block-gutenbergp5-p5js gutenbergp5-block-p5js gutenbergp5-align-center\"><iframe frameborder=\"0\" srcdoc=\"\n        <!DOCTYPE html&gt;\n        <html&gt;\n            <head&gt;\n            <script src=&quot;https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/p5.js\/1.6.0\/p5.min.js&quot; integrity=&quot;sha512-3RlxD1bW34eFKPwj9gUXEWtdSMC59QqIqHnD8O\/NoTwSJhgxRizdcFVQhUMFyTp5RwLTDL0Lbcqtl8b7bFAzog==&quot; crossorigin=&quot;anonymous&quot; referrerpolicy=&quot;no-referrer&quot;&gt;<\/script&gt;\n            <\/head&gt;\n            <body style=&quot;padding: 0; margin: 0;&quot;&gt;<\/body&gt;\n            <footer&gt;\n                <script&gt;\n                    let yoff = 0.0; \/\/ 2nd dimension of perlin noise\n\nfunction setup() {\n  createCanvas(710, 1000);\n}\n\nfunction draw() {\n  background(255);\n\n  fill('#C43302');\n  \/\/ We are going to draw a polygon out of the wave points\n  beginShape();\n\n  let xoff = 4; \/\/ Option #1: 2D Noise\n  \/\/let xoff = yoff +11; \/\/ Option #2: 1D Noise\n\n  \/\/ Iterate over horizontal pixels\n  for (let x = 0; x <= width; x += 10) {\n    \/\/ Calculate a y value according to noise, map to\n\n    \/\/ Option #1: 2D Noise\n    let y = map(noise(xoff, yoff), 3, 1, 50, 300);\n\n    \/\/ Option #2: 1D Noise\n    \/\/ let y = map(noise(xoff), 0, 1, 200,300);\n\n    \/\/ Set the vertex\n    vertex(x, y-340);\n    \/\/ Increment x dimension for noise\n    xoff += 0.05;\n  }\n  \/\/ increment y dimension for noise\n  yoff += 0.01;\n  vertex(width, height);\n  vertex(0, height);\n  endShape(CLOSE);\n}\n\n                <\/script&gt;\n            <\/footer&gt;\n        <\/html&gt;\n        \" sandbox=\"allow-scripts allow-same-origin allow-presentation\" scrolling=\"yes\" style=\"width:100%;height:800px;\" width=\"100%\" height=\"800px\" class=\"gutenbergp5-noresize\"><\/iframe><\/div>\n<\/div>\n\n\n\n<div data-beyondwords-marker=\"7b61bbd4-5521-4387-91ad-2b6b37f858b5\" class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div data-beyondwords-marker=\"aa02f303-5721-4d38-b061-ccc8fc7499bf\" class=\"wp-block-gutenbergp5-p5js gutenbergp5-block-p5js gutenbergp5-align-center\"><iframe frameborder=\"0\" srcdoc=\"\n        <!DOCTYPE html&gt;\n        <html&gt;\n            <head&gt;\n            <script src=&quot;https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/p5.js\/1.6.0\/p5.min.js&quot; integrity=&quot;sha512-3RlxD1bW34eFKPwj9gUXEWtdSMC59QqIqHnD8O\/NoTwSJhgxRizdcFVQhUMFyTp5RwLTDL0Lbcqtl8b7bFAzog==&quot; crossorigin=&quot;anonymous&quot; referrerpolicy=&quot;no-referrer&quot;&gt;<\/script&gt;\n            <\/head&gt;\n            <body style=&quot;padding: 0; margin: 0;&quot;&gt;<\/body&gt;\n            <footer&gt;\n                <script&gt;\n                    let x, y;\nlet ang, r;\nlet mode = 3;\nlet count = 0;\n\nfunction setup() {\n\tcreateCanvas(windowWidth, windowHeight);\n\tdrawBackground();\n\tmousePressed();\n}\n\nfunction draw() {\n\tswitch (mode) {\n\t\tcase 0:\n\t\t\tif (frameCount % 5 == 0 &amp;&amp; frameCount < 450) drawLeaf(random(width), random(height), height \/ 24, random(TAU), color(255, random(220, 225), 71, random(100, 200)), color(255, random(200, 255), 71, random(80, 150)));\n\t\t\tbreak;\n\n\t\tcase 1:\n\t\t\tif (frameCount % 3 == 0 &amp;&amp; y < height * 1.25) {\n\t\t\t\tdrawLeaf(x, y, height \/ 24, random(HALF_PI - PI \/ 8, HALF_PI + PI \/ 8), color(255, random(220, 225), 71, random(100, 200)), color(255, random(200, 255), 71, random(120, 180)));\n\t\t\t\tx += height \/ 5;\n\t\t\t\tif (x &gt; width) {\n\t\t\t\t\tx = (height \/ 10) * (count % 2);\n\t\t\t\t\ty += height \/ 8;\n\t\t\t\t\tcount += 1;\n\t\t\t\t}\n\t\t\t}\n\t\t\tbreak;\n\n\t\tcase 2:\n\t\t\tpush();\n\t\t\ttranslate(width \/ 2, height \/ 2);\n\t\t\tif (frameCount % 3 == 0 &amp;&amp; frameCount < 500) {\n\t\t\t\tang += PI \/ r;\n\t\t\t\tif (ang &gt; TAU) {\n\t\t\t\t\tang = ang % TAU;\n\t\t\t\t\tr += 3;\n\t\t\t\t}\n\t\t\t\tx = r * cos(ang) * height \/ 40 * (width \/ height);\n\t\t\t\ty = r * sin(ang) * height \/ 40;\n\t\t\t\tdrawLeaf(x, y, height \/ 24, ang + random(11 * PI \/ 12, 13 * PI \/ 12), color(255, random(220, 225), 71, random(100, 200)), color(255, random(200, 255), 71, random(120, 180)));\n\t\t\t}\n\t\t\tpop();\n\t\t\tbreak;\n\n\t\tcase 3:\n\t\t\tif (frameCount % 3 == 0 &amp;&amp; y < 1.5 * height) {\n\t\t\t\tang = map(x, 0, width, HALF_PI, 5 * HALF_PI);\n\t\t\t\tdrawLeaf(x, y, height \/ 24, ang, color(255, random(220, 225), 71, random(100, 200)), color(255, random(200, 255), 71, random(80, 150)));\n\t\t\t\tx += height \/ 5;\n\t\t\t\tif (x &gt; 1.25 * width) {\n\t\t\t\t\tx = (height \/ 15) * (count % 2);\n\t\t\t\t\ty += height \/ 8;\n\t\t\t\t\tcount += 1;\n\t\t\t\t}\n\t\t\t}\n\t\t\tbreak;\n\t}\n}\n\nfunction drawLeaf(x, y, s, ang, str, fll) {\n\tlet dip = random(0.75, 0.95);\n\tnoiseSeed(random(1000));\n\tpush();\n\ttranslate(x, y);\n\trotate(HALF_PI + ang);\n\tlet span = random(PI \/ 2.8, PI \/ 1.8);\n\n\t\/\/leaf body\n\tfill(fll);\n\tstroke(str);\n\tstrokeWeight(s \/ 40);\n\tbeginShape();\n\tvertex(0, 0);\n\tvertex(0, 0);\n\tcurveVertex((-s \/ 1.5) * sin(span - PI \/ 9), (s \/ 1.5) * cos(span - PI \/ 9));\n\tlet count = 0;\n\tfor (let a = -span; a <= span; a += PI \/ 36) {\n\t\tlet r = 2 + cos(a \/ 1.5);\n\t\tif (abs(a) < PI \/ 72 || abs(a) &gt; 0.9 * span) r *= dip;\n\t\tlet stretch = (1 + (noise(a + TAU) \/ 15));\n\t\tif (count % 2 == 1) curveVertex(s * sin(a) * r * stretch, s * cos(a) * r * stretch);\n\t\telse curveVertex(s * sin(a) * r, s * cos(a) * r);\n\t\tcount++;\n\t}\n\tcurveVertex((-s \/ 1.5) * sin(-span + PI \/ 9), (s \/ 1.5) * cos(-span + PI \/ 9));\n\tvertex(0, 0);\n\tvertex(0, 0);\n\tendShape();\n\n\t\/\/leaf strands\n\tfor (let flip of [-1, 1]) {\n\t\tpush();\n\t\tscale(-flip, 1);\n\t\tnoFill();\n\t\tcount = 0;\n\t\tfor (let a = -span * 0.95; a <= 0; a += PI \/ 72) {\n\t\t\tlet bend = 1;\n\t\t\tlet r = 2 + cos(a \/ 1.5);\n\t\t\tlet stretch = (1 + (noise(a + TAU) \/ 40));\n\t\t\tif (count % 2 == 1) r *= stretch;\n\t\t\tif (abs(a) < PI \/ 36 || abs(a) &gt; 0.9 * span) r *= dip;\n\t\t\tstr.setAlpha(random(60, 180))\n\t\t\tstroke(str);\n\t\t\tcurve(s * sin(a - 0.75) * -r, s * cos(a - 0.75) * r, 0, s \/ 8, bend * s * sin(a) * r, s * cos(a) * r, s * sin(a - 0.25) * 2 * r, s * cos(a - 0.25) * 2 * r);\n\t\t\tcount++;\n\t\t}\n\t\tpop();\n\t}\n\tstrokeWeight(s \/ 12);\n\tstroke(str);\n\tnoFill();\n\tlet twist = random(-4, 4)\n\tcurve(s, s, 0, 0, 0, -random(3.5, 4) * s, s * -twist, s * 2)\n\tpop();\n}\n\nfunction mousePressed() {\n\tmode = (mode + 1) % 4;\n\tdrawBackground();\n\tcount = 0;\n\tang = 0;\n\tx = height \/ 18;\n\ty = 0;\n\tr = 3;\n\tframeCount = 0;\n}\n\nfunction drawBackground() {\n\tbackground(0);\n\tlet start = color('rgb(75,68,5)');\n\tlet end = color('rgb(0,0,0)');\n\tfor (let y = 0; y < height; y++) {\n\t\tlet step = map(y, 0, height, 0, 1);\n\t\tlet s = lerpColor(start, end, step);\n\t\tstroke(s);\n\t\tline(0, y, width, y);\n\t}\n}\n                <\/script&gt;\n            <\/footer&gt;\n        <\/html&gt;\n        \" sandbox=\"allow-scripts allow-same-origin allow-presentation\" scrolling=\"no\" style=\"width:100%;height:1000px;overflow:hidden;\" width=\"100%\" height=\"1000px\" class=\"gutenbergp5-noresize\"><\/iframe><\/div>\n<\/div>\n<\/div>\n\n\n\n<div data-beyondwords-marker=\"da311178-cee1-4f24-92e9-04cb00ace31d\" class=\"wp-block-group is-vertical is-layout-flex wp-container-core-group-is-layout-8cf370e7 wp-block-group-is-layout-flex\">\n<p data-beyondwords-marker=\"70c250e7-9cd7-467b-bfd0-61e29ac4655c\"><a href=\"https:\/\/openprocessing.org\/sketch\/1000875\/\">OpenProcessing example<\/a> of sequencing w\/ clicks.<\/p>\n\n\n\n<p data-beyondwords-marker=\"6fc0da3b-b9a7-4a18-8bef-460e7673aa02\"><\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>OpenProcessing example of sequencing w\/ clicks.<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"single-wide.php","format":"standard","meta":{"newspack_popups_has_disabled_popups":false,"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_jetpack_memberships_contains_paid_content":false,"newspack_featured_image_position":"","newspack_post_subtitle":"","newspack_article_summary_title":"Overview:","newspack_article_summary":"","newspack_hide_updated_date":false,"newspack_show_updated_date":false,"footnotes":"","beyondwords_generate_audio":"1","beyondwords_project_id":"40426","beyondwords_content_id":"61434322-d022-4a91-a3d7-334dbb2aa207","beyondwords_player_style":"","beyondwords_language_id":"","beyondwords_title_voice_id":"","beyondwords_body_voice_id":"","beyondwords_summary_voice_id":"","beyondwords_error_message":"","beyondwords_disabled":"1","beyondwords_delete_content":"","beyondwords_podcast_id":"61434322-d022-4a91-a3d7-334dbb2aa207","beyondwords_hash":"","publish_post_to_speechkit":"","speechkit_hash":"","speechkit_generate_audio":"","speechkit_project_id":"","speechkit_podcast_id":"","speechkit_error_message":"","speechkit_disabled":"","speechkit_access_key":"","speechkit_error":"","speechkit_info":"","speechkit_response":"","speechkit_retries":"","speechkit_updated_at":"","_speechkit_link":"","_speechkit_text":""},"categories":[1],"tags":[],"class_list":["post-310","post","type-post","status-publish","format-standard","hentry","category-blog","entry"],"aioseo_notices":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.9.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>More P5 examples - Vivertido<\/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:\/\/vivertido.com\/?p=310\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"More P5 examples - Vivertido\" \/>\n<meta property=\"og:description\" content=\"OpenProcessing example of sequencing w\/ clicks.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vivertido.com\/?p=310\" \/>\n<meta property=\"og:site_name\" content=\"Vivertido\" \/>\n<meta property=\"article:published_time\" content=\"2024-04-09T06:26:21+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-04-09T07:22:52+00:00\" \/>\n<meta name=\"author\" content=\"vivertido.com\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"vivertido.com\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. 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:\/\/vivertido.com\/?p=310#article\",\"isPartOf\":{\"@id\":\"https:\/\/vivertido.com\/?p=310\"},\"author\":{\"name\":\"vivertido.com\",\"@id\":\"https:\/\/vivertido.com\/#\/schema\/person\/2e183ccad2e49913b43081da4f61d98c\"},\"headline\":\"More P5 examples\",\"datePublished\":\"2024-04-09T06:26:21+00:00\",\"dateModified\":\"2024-04-09T07:22:52+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/vivertido.com\/?p=310\"},\"wordCount\":9,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/vivertido.com\/#organization\"},\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/vivertido.com\/?p=310#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/vivertido.com\/?p=310\",\"url\":\"https:\/\/vivertido.com\/?p=310\",\"name\":\"More P5 examples - Vivertido\",\"isPartOf\":{\"@id\":\"https:\/\/vivertido.com\/#website\"},\"datePublished\":\"2024-04-09T06:26:21+00:00\",\"dateModified\":\"2024-04-09T07:22:52+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/vivertido.com\/?p=310#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/vivertido.com\/?p=310\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/vivertido.com\/?p=310#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/vivertido.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"More P5 examples\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/vivertido.com\/#website\",\"url\":\"https:\/\/vivertido.com\/\",\"name\":\"Vivertido\",\"description\":\"Visualize dead fascists\",\"publisher\":{\"@id\":\"https:\/\/vivertido.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/vivertido.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/vivertido.com\/#organization\",\"name\":\"Vivertido\",\"url\":\"https:\/\/vivertido.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/vivertido.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/i0.wp.com\/vivertido.com\/wp-content\/uploads\/2024\/01\/cropped-vivertido.png?fit=783%2C286&ssl=1\",\"contentUrl\":\"https:\/\/i0.wp.com\/vivertido.com\/wp-content\/uploads\/2024\/01\/cropped-vivertido.png?fit=783%2C286&ssl=1\",\"width\":783,\"height\":286,\"caption\":\"Vivertido\"},\"image\":{\"@id\":\"https:\/\/vivertido.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/vivertido.com\/#\/schema\/person\/2e183ccad2e49913b43081da4f61d98c\",\"name\":\"vivertido.com\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/vivertido.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/0c9468890a01702b00dbb125c96668050d3deb688186e11ab70928489a930683?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/0c9468890a01702b00dbb125c96668050d3deb688186e11ab70928489a930683?s=96&d=mm&r=g\",\"caption\":\"vivertido.com\"},\"sameAs\":[\"http:\/\/vivertido.com\"],\"url\":\"https:\/\/vivertido.com\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"More P5 examples - Vivertido","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:\/\/vivertido.com\/?p=310","og_locale":"en_US","og_type":"article","og_title":"More P5 examples - Vivertido","og_description":"OpenProcessing example of sequencing w\/ clicks.","og_url":"https:\/\/vivertido.com\/?p=310","og_site_name":"Vivertido","article_published_time":"2024-04-09T06:26:21+00:00","article_modified_time":"2024-04-09T07:22:52+00:00","author":"vivertido.com","twitter_card":"summary_large_image","twitter_misc":{"Written by":"vivertido.com","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/vivertido.com\/?p=310#article","isPartOf":{"@id":"https:\/\/vivertido.com\/?p=310"},"author":{"name":"vivertido.com","@id":"https:\/\/vivertido.com\/#\/schema\/person\/2e183ccad2e49913b43081da4f61d98c"},"headline":"More P5 examples","datePublished":"2024-04-09T06:26:21+00:00","dateModified":"2024-04-09T07:22:52+00:00","mainEntityOfPage":{"@id":"https:\/\/vivertido.com\/?p=310"},"wordCount":9,"commentCount":0,"publisher":{"@id":"https:\/\/vivertido.com\/#organization"},"articleSection":["Blog"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/vivertido.com\/?p=310#respond"]}]},{"@type":"WebPage","@id":"https:\/\/vivertido.com\/?p=310","url":"https:\/\/vivertido.com\/?p=310","name":"More P5 examples - Vivertido","isPartOf":{"@id":"https:\/\/vivertido.com\/#website"},"datePublished":"2024-04-09T06:26:21+00:00","dateModified":"2024-04-09T07:22:52+00:00","breadcrumb":{"@id":"https:\/\/vivertido.com\/?p=310#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vivertido.com\/?p=310"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/vivertido.com\/?p=310#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vivertido.com\/"},{"@type":"ListItem","position":2,"name":"More P5 examples"}]},{"@type":"WebSite","@id":"https:\/\/vivertido.com\/#website","url":"https:\/\/vivertido.com\/","name":"Vivertido","description":"Visualize dead fascists","publisher":{"@id":"https:\/\/vivertido.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vivertido.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/vivertido.com\/#organization","name":"Vivertido","url":"https:\/\/vivertido.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vivertido.com\/#\/schema\/logo\/image\/","url":"https:\/\/i0.wp.com\/vivertido.com\/wp-content\/uploads\/2024\/01\/cropped-vivertido.png?fit=783%2C286&ssl=1","contentUrl":"https:\/\/i0.wp.com\/vivertido.com\/wp-content\/uploads\/2024\/01\/cropped-vivertido.png?fit=783%2C286&ssl=1","width":783,"height":286,"caption":"Vivertido"},"image":{"@id":"https:\/\/vivertido.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/vivertido.com\/#\/schema\/person\/2e183ccad2e49913b43081da4f61d98c","name":"vivertido.com","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vivertido.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/0c9468890a01702b00dbb125c96668050d3deb688186e11ab70928489a930683?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0c9468890a01702b00dbb125c96668050d3deb688186e11ab70928489a930683?s=96&d=mm&r=g","caption":"vivertido.com"},"sameAs":["http:\/\/vivertido.com"],"url":"https:\/\/vivertido.com\/?author=1"}]}},"parsely":{"version":"1.1.0","meta":{"@context":"https:\/\/schema.org","@type":"NewsArticle","headline":"More P5 examples","url":"http:\/\/vivertido.com\/?p=310","mainEntityOfPage":{"@type":"WebPage","@id":"http:\/\/vivertido.com\/?p=310"},"thumbnailUrl":"","image":{"@type":"ImageObject","url":""},"articleSection":"Blog","author":[{"@type":"Person","name":"vivertido.com"}],"creator":["vivertido.com"],"publisher":{"@type":"Organization","name":"Vivertido","logo":""},"keywords":[],"dateCreated":"2024-04-09T06:26:21Z","datePublished":"2024-04-09T06:26:21Z","dateModified":"2024-04-09T07:22:52Z"},"rendered":"<script type=\"application\/ld+json\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@type\":\"NewsArticle\",\"headline\":\"More P5 examples\",\"url\":\"http:\\\/\\\/vivertido.com\\\/?p=310\",\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"http:\\\/\\\/vivertido.com\\\/?p=310\"},\"thumbnailUrl\":\"\",\"image\":{\"@type\":\"ImageObject\",\"url\":\"\"},\"articleSection\":\"Blog\",\"author\":[{\"@type\":\"Person\",\"name\":\"vivertido.com\"}],\"creator\":[\"vivertido.com\"],\"publisher\":{\"@type\":\"Organization\",\"name\":\"Vivertido\",\"logo\":\"\"},\"keywords\":[],\"dateCreated\":\"2024-04-09T06:26:21Z\",\"datePublished\":\"2024-04-09T06:26:21Z\",\"dateModified\":\"2024-04-09T07:22:52Z\"}<\/script>","tracker_url":"https:\/\/cdn.parsely.com\/keys\/vivertido.com\/p.js"},"jetpack_sharing_enabled":true,"jetpack_featured_media_url":"","jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/vivertido.com\/index.php?rest_route=\/wp\/v2\/posts\/310","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vivertido.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/vivertido.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/vivertido.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/vivertido.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=310"}],"version-history":[{"count":14,"href":"https:\/\/vivertido.com\/index.php?rest_route=\/wp\/v2\/posts\/310\/revisions"}],"predecessor-version":[{"id":328,"href":"https:\/\/vivertido.com\/index.php?rest_route=\/wp\/v2\/posts\/310\/revisions\/328"}],"wp:attachment":[{"href":"https:\/\/vivertido.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=310"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/vivertido.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=310"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/vivertido.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=310"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}