{"id":36577,"date":"2019-10-31T22:12:27","date_gmt":"2019-10-31T19:12:27","guid":{"rendered":"https:\/\/prohoster.info\/blog\/vot-zachem-nuzhna-shkolnaya-algebra\/"},"modified":"2019-10-31T22:12:27","modified_gmt":"2019-10-31T19:12:27","slug":"vot-zachem-nuzhna-shkolnaya-algebra","status":"publish","type":"post","link":"https:\/\/prohoster.info\/en\/blog\/news\/vot-zachem-nuzhna-shkolnaya-algebra","title":{"rendered":"Here\u2019s why school algebra is important","gt_translate_keys":[{"key":"rendered","format":"text"}]},"content":{"rendered":"<p>Usually, when asked \"what is the purpose of mathematics?\", people respond with something like \"it\u2019s a workout for the mind\". In my opinion, that explanation falls short. When a person engages in physical exercises, they know the exact names of the muscle groups being developed. However, discussions about mathematics remain too abstract. Which specific \"muscles of the mind\" are trained by school algebra? It doesn\u2019t resemble true mathematics, where great discoveries are made. What does the ability to find the derivative of complex functions provide?<\/p>\n<p>Teaching programming to weaker students has led me to a more precise answer to the question of \"why?\" In this article, I will try to convey this to you.<\/p>\n<p><img decoding=\"async\" alt=\"Here\u2019s why school algebra is important\" src=\"\/wp-content\/uploads\/2019\/07\/68c529ad50470860a474ba8d910ff00f.jpg\" style=\"display:block;margin: 0 auto;\" \/><noindex><a rel=\"nofollow\" name=\"habracut\"><\/a><\/noindex><br \/>\nIn school, a considerable amount of time is devoted to transforming and simplifying expressions. For example: 81\u00d72 + 126xy + 49y\u00b2 needs to be transformed as (9x + 7y)\u00b2.<\/p>\n<p>In this example, the student is expected to recall the formula for the square of a sum. <\/p>\n<p><img decoding=\"async\" alt=\"Here\u2019s why school algebra is important\" src=\"\/wp-content\/uploads\/2019\/07\/7b8f583cf587730de2f76011f83b05b2.jpg\" style=\"display:block;margin: 0 auto;\" \/><\/p>\n<p>\nIn more complex cases, the obtained expression can be used for further transformations. For example:<\/p>\n<p><img decoding=\"async\" alt=\"Here\u2019s why school algebra is important\" src=\"\/wp-content\/uploads\/2019\/07\/fe1570cc2f91020281abd22b47aad458.jpg\" style=\"display:block;margin: 0 auto;\" \/><\/p>\n<p>\nit first transforms into<\/p>\n<p><img decoding=\"async\" alt=\"Here\u2019s why school algebra is important\" src=\"\/wp-content\/uploads\/2019\/07\/0aaa7d8b4dbf3d4c8e331a44088fc863.jpg\" style=\"display:block;margin: 0 auto;\" \/><\/p>\n<p>\nand then, with the clarification that (a + 2b) != 0, it results in<\/p>\n<p><img decoding=\"async\" alt=\"Here\u2019s why school algebra is important\" src=\"\/wp-content\/uploads\/2019\/07\/a95f9f03442ae65be217f70d4039b433.jpg\" style=\"display:block;margin: 0 auto;\" \/><\/p>\n<p>To achieve this result, the student needs to recognize the initial expression and then apply three formulas:<\/p>\n<ul>\n<li>The square of a sum<\/li>\n<li>Difference of squares<\/li>\n<li>Canceling common factors in a fraction<\/li>\n<\/ul>\n<p>\nIn regular school algebra classes, we spent almost all our time engaging in such expression transformations. At university in higher mathematics, not much changed. We were taught how to find derivatives (integrals, etc.) and given a ton of problems. Was this useful? In my opinion, yes. As a result of these exercises:<\/p>\n<ol>\n<li>The skill of transforming expressions was honed.<\/li>\n<li>Attention to detail developed.<\/li>\n<li>An ideal was formed \u2014 a concise expression to strive for.<\/li>\n<\/ol>\n<p>\nIn my view, having such an ideal, skill, and quality is extremely beneficial in a developer's daily work. Simplifying an expression essentially means altering its structure to enhance understanding without changing its meaning. Does this remind you of anything?<\/p>\n<p>It's practically the definition of refactoring from the book of the same name by Martin Fowler.<\/p>\n<p>In his work, the author formulates them as follows:<\/p>\n<blockquote><p>Refactoring (noun): a change in the internal structure of software aimed at making its operation easier to understand and simplifying modifications, without affecting observable behavior.\n<\/p><\/blockquote>\n<blockquote><p>To refactor (verb): to change the structure of software by applying a series of refactorings, without affecting its behavior.\n<\/p><\/blockquote>\n<p>The book provides 'formulas' that need to be recognized in the source code and rules for their transformation.<\/p>\n<p>As a simple example, let's consider the 'introduction of an explanatory variable' from the book:<\/p>\n<pre><code class=\"plaintext\">if ( (platform.toUpperCase().indexOf(\"MAC\") &gt; -1 ) &amp;&amp;\n    (browser.toUpperCase().indexOf(\"IE\") &gt; -1 )&amp;&amp;\n    wasInitialized() &amp;&amp; resize &gt; 0 ) {\n    \/\/ do something\n}<\/code><\/pre>\n<p>\nParts of the expression need to be written into a variable whose name explains its purpose.<\/p>\n<pre><code class=\"plaintext\">final boolean isMacOS = platform.toUpperCase().indexOf(\"MAC\") &gt; -1;\nfinal boolean isIEBrowser = browser.toUpperCase().indexOf(\"IE\") &gt; -1;\nfinal boolean isResized = resize &gt; 0;\nif(isMacOS &amp;&amp; isIEBrowser &amp;&amp; wasInitialized() &amp;&amp; isResized) {\n   \/\/ do something\n}\n<\/code><\/pre>\n<p>\nImagine a person who cannot simplify algebraic expressions using the square of the sum and difference of squares formula.<\/p>\n<p>Do you think this person can refactor code?<\/p>\n<p>Will he even be able to write code that is understandable to others if he does not have an ideal of conciseness formed? In my opinion \u2014 no.<\/p>\n<p>However, everyone learns in school, while only a minority becomes programmers. Is the skill of transforming expressions useful for ordinary people? I think yes. But the skill is applied in a more abstract form: one needs to assess the situation and choose the next action to move closer to the goal. In pedagogy, this phenomenon is called <noindex><a rel=\"nofollow\" href=\"https:\/\/current_pedagogy.academic.ru\/1191\/PERENOS\">transfer (of skill)<\/a><\/noindex>.<\/p>\n<p>The most vivid examples arise in DIY home repairs using makeshift methods. As a result, those 'tricks' and life hacks appear, one of which is depicted at CDWV. The author of the idea had a piece of wood, a wire, and four screws. Remembering the pattern of a lamp holder, he assembled a homemade socket from them.<\/p>\n<p>Even when driving a vehicle, the driver is constantly recognizing patterns in the surrounding world and performing the corresponding maneuvers to reach the destination.<\/p>\n<blockquote><p>When you die, you don't know about it; it is only difficult for others. The same is true when you have not mastered mathematics\u2026<\/p><\/blockquote>\n<p>What happens if a person fails to master expression transformation? From time to time, I conduct individual sessions with students who struggled with math in school. Usually, they completely get stuck on the topic of loops. So much so that we have to work on \"algebra\" in a programming language.<br \/>\nThis happens because the main technique when writing loops is to transform a group of identical expressions.<\/p>\n<p>Suppose the program's output should look like this:<\/p>\n<blockquote><p>Introduction<br \/>\nChapter 1<br \/>\nChapter 2<br \/>\nChapter 3<br \/>\nChapter 4<br \/>\nChapter 5<br \/>\nChapter 6<br \/>\nChapter 7<br \/>\nConclusion<\/p><\/blockquote>\n<p> A trivial program to achieve this result looks like this:<\/p>\n<pre><code class=\"cs\">static void Main(string[] args)\n{\n    Console.WriteLine(\"Introduction\");\n    Console.WriteLine(\"Chapter 1\");\n    Console.WriteLine(\"Chapter 2\");\n    Console.WriteLine(\"Chapter 3\");\n    Console.WriteLine(\"Chapter 4\");\n    Console.WriteLine(\"Chapter 5\");\n    Console.WriteLine(\"Chapter 6\");\n    Console.WriteLine(\"Chapter 7\");\n    Console.WriteLine(\"Conclusion\");\n}<\/code><\/pre>\n<p>\nBut this solution is far from an elegant ideal. First, one needs to find the repeating group of actions and then transform it. In the end, you'll get a solution like this:<\/p>\n<pre><code class=\"cs\">static void Main(string[] args)\n{\n    Console.WriteLine(\"Introduction\");\n    for (int i = 1; i &lt;= 7; i++)\n    {\n        Console.WriteLine(&quot;Chapter &quot; + i);\n    }\n    Console.WriteLine(&quot;Conclusion&quot;);\n}<\/code><\/pre>\n<p>\nIf a person did not master mathematics in time, they will also struggle to perform such transformations. They simply will not have the necessary skills. That is why the topic of loops is the first obstacle in training a developer.<\/p>\n<p>Similar problems arise in other areas as well. If a person cannot use available tools, they cannot demonstrate practical ingenuity. Critics may say that their hands do not come from the right place. This manifests on the road as an inability to correctly assess the situation and choose a maneuver, which can sometimes lead to tragic consequences.<\/p>\n<p>Conclusions:<\/p>\n<ol>\n<li>School and university mathematics are necessary so that we can make the world better with the tools we have.<\/li>\n<li>If you are studying and having trouble with learning loops, try going back to the basics \u2014 school algebra. Take a 9th-grade problem set and solve examples from it.<\/li>\n<\/ol>\n<p>Source: <a content=\"nofollow\" rel=\"nofollow\" href=\"https:\/\/habr.com\/ru\/post\/456156\/\">habr.com<\/a><\/p>","protected":false,"gt_translate_keys":[{"key":"rendered","format":"html"}]},"excerpt":{"rendered":"<p>\u041e\u0431\u044b\u0447\u043d\u043e \u043d\u0430 \u0432\u043e\u043f\u0440\u043e\u0441 \u00ab\u0437\u0430\u0447\u0435\u043c \u043d\u0443\u0436\u043d\u0430 \u043c\u0430\u0442\u0435\u043c\u0430\u0442\u0438\u043a\u0430?\u00bb \u043e\u0442\u0432\u0435\u0447\u0430\u044e\u0442 \u0447\u0442\u043e-\u0442\u043e \u0432\u0440\u043e\u0434\u0435 \u00ab\u0433\u0438\u043c\u043d\u0430\u0441\u0442\u0438\u043a\u0430 \u0434\u043b\u044f \u0443\u043c\u0430\u00bb. \u041d\u0430 \u043c\u043e\u0439 \u0432\u0437\u0433\u043b\u044f\u0434, \u044d\u0442\u043e\u0433\u043e \u043e\u0431\u044a\u044f\u0441\u043d\u0435\u043d\u0438\u044f \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e. \u041a\u043e\u0433\u0434\u0430 \u0447\u0435\u043b\u043e\u0432\u0435\u043a \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u0435\u0442 \u0444\u0438\u0437\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0443\u043f\u0440\u0430\u0436\u043d\u0435\u043d\u0438\u044f, \u0442\u043e \u043e\u043d \u0437\u043d\u0430\u0435\u0442 \u0442\u043e\u0447\u043d\u043e\u0435 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0433\u0440\u0443\u043f\u043f \u043c\u044b\u0448\u0446, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u0440\u0438 \u044d\u0442\u043e\u043c \u0440\u0430\u0437\u0432\u0438\u0432\u0430\u044e\u0442\u0441\u044f. \u041d\u043e \u0440\u0430\u0437\u0433\u043e\u0432\u043e\u0440\u044b \u043f\u0440\u043e \u043c\u0430\u0442\u0435\u043c\u0430\u0442\u0438\u043a\u0443 \u043e\u0441\u0442\u0430\u044e\u0442\u0441\u044f \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u0430\u0431\u0441\u0442\u0440\u0430\u043a\u0442\u043d\u044b\u043c\u0438. \u041a\u0430\u043a\u0438\u0435 \u043a\u043e\u043d\u043a\u0440\u0435\u0442\u043d\u043e \u00ab\u043c\u044b\u0448\u0446\u044b \u0443\u043c\u0430\u00bb \u0442\u0440\u0435\u043d\u0438\u0440\u0443\u044e\u0442\u0441\u044f \u0448\u043a\u043e\u043b\u044c\u043d\u043e\u0439 \u0430\u043b\u0433\u0435\u0431\u0440\u043e\u0439? \u041e\u043d\u0430 \u0432\u0435\u0434\u044c \u0441\u043e\u0432\u0441\u0435\u043c \u043d\u0435 \u043f\u043e\u0445\u043e\u0436\u0430 \u043d\u0430 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0443\u044e [&hellip;]<\/p>\n","protected":false,"gt_translate_keys":[{"key":"rendered","format":"html"}]},"author":1,"featured_media":27386,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[702],"tags":[],"class_list":["post-36577","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-news"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.1.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"\u041e\u0431\u044b\u0447\u043d\u043e \u043d\u0430 \u0432\u043e\u043f\u0440\u043e\u0441 \u00ab\u0437\u0430\u0447\u0435\u043c \u043d\u0443\u0436\u043d\u0430 \u043c\u0430\u0442\u0435\u043c\u0430\u0442\u0438\u043a\u0430?\u00bb \u043e\u0442\u0432\u0435\u0447\u0430\u044e\u0442 \u0447\u0442\u043e-\u0442\u043e \u0432\u0440\u043e\u0434\u0435 \u00ab\u0433\u0438\u043c\u043d\u0430\u0441\u0442\u0438\u043a\u0430 \u0434\u043b\u044f \u0443\u043c\u0430\u00bb. \u041d\u0430 \u043c\u043e\u0439 \u0432\u0437\u0433\u043b\u044f\u0434, \u044d\u0442\u043e\u0433\u043e \u043e\u0431\u044a\u044f\u0441\u043d\u0435\u043d\u0438\u044f \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Yuri Gagarin\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/prohoster.info\/en\/blog\/news\/vot-zachem-nuzhna-shkolnaya-algebra\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.1.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"ProHoster | \u041a\u0443\u043f\u0438\u0442\u044c \u043d\u0430\u0434\u0435\u0436\u043d\u044b\u0439 \u0445\u043e\u0441\u0442\u0438\u043d\u0433 \u0434\u043b\u044f \u0441\u0430\u0439\u0442\u043e\u0432 \u0441 \u0437\u0430\u0449\u0438\u0442\u043e\u0439 \u043e\u0442 DDoS, VPS VDS \u0441\u0435\u0440\u0432\u0435\u0440\u044b\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"\ud83e\udd47\u0412\u043e\u0442 \u0437\u0430\u0447\u0435\u043c \u043d\u0443\u0436\u043d\u0430 \u0448\u043a\u043e\u043b\u044c\u043d\u0430\u044f \u0430\u043b\u0433\u0435\u0431\u0440\u0430 | ProHoster\" \/>\n\t\t<meta property=\"og:description\" content=\"\u041e\u0431\u044b\u0447\u043d\u043e \u043d\u0430 \u0432\u043e\u043f\u0440\u043e\u0441 \u00ab\u0437\u0430\u0447\u0435\u043c \u043d\u0443\u0436\u043d\u0430 \u043c\u0430\u0442\u0435\u043c\u0430\u0442\u0438\u043a\u0430?\u00bb \u043e\u0442\u0432\u0435\u0447\u0430\u044e\u0442 \u0447\u0442\u043e-\u0442\u043e \u0432\u0440\u043e\u0434\u0435 \u00ab\u0433\u0438\u043c\u043d\u0430\u0441\u0442\u0438\u043a\u0430 \u0434\u043b\u044f \u0443\u043c\u0430\u00bb. \u041d\u0430 \u043c\u043e\u0439 \u0432\u0437\u0433\u043b\u044f\u0434, \u044d\u0442\u043e\u0433\u043e \u043e\u0431\u044a\u044f\u0441\u043d\u0435\u043d\u0438\u044f \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/prohoster.info\/en\/blog\/news\/vot-zachem-nuzhna-shkolnaya-algebra\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg\" \/>\n\t\t<meta property=\"og:image:width\" content=\"350\" \/>\n\t\t<meta property=\"og:image:height\" content=\"350\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2019-10-31T19:12:27+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2019-10-31T19:12:27+00:00\" \/>\n\t\t<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/prohoster\" \/>\n\t\t<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/prohoster\" \/>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"\ud83e\udd47Here's Why You Need School Algebra | ProHoster","description":"Usually, when asked 'why is mathematics necessary?' people respond with something like 'it's exercise for the mind.' In my opinion, this explanation is insufficient.","canonical_url":"https:\/\/prohoster.info\/en\/blog\/news\/vot-zachem-nuzhna-shkolnaya-algebra","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":null,"og:locale":"en_US","og:site_name":"ProHoster | \u041a\u0443\u043f\u0438\u0442\u044c \u043d\u0430\u0434\u0435\u0436\u043d\u044b\u0439 \u0445\u043e\u0441\u0442\u0438\u043d\u0433 \u0434\u043b\u044f \u0441\u0430\u0439\u0442\u043e\u0432 \u0441 \u0437\u0430\u0449\u0438\u0442\u043e\u0439 \u043e\u0442 DDoS, VPS VDS \u0441\u0435\u0440\u0432\u0435\u0440\u044b","og:type":"article","og:title":"\ud83e\udd47\u0412\u043e\u0442 \u0437\u0430\u0447\u0435\u043c \u043d\u0443\u0436\u043d\u0430 \u0448\u043a\u043e\u043b\u044c\u043d\u0430\u044f \u0430\u043b\u0433\u0435\u0431\u0440\u0430 | ProHoster","og:description":"\u041e\u0431\u044b\u0447\u043d\u043e \u043d\u0430 \u0432\u043e\u043f\u0440\u043e\u0441 \u00ab\u0437\u0430\u0447\u0435\u043c \u043d\u0443\u0436\u043d\u0430 \u043c\u0430\u0442\u0435\u043c\u0430\u0442\u0438\u043a\u0430?\u00bb \u043e\u0442\u0432\u0435\u0447\u0430\u044e\u0442 \u0447\u0442\u043e-\u0442\u043e \u0432\u0440\u043e\u0434\u0435 \u00ab\u0433\u0438\u043c\u043d\u0430\u0441\u0442\u0438\u043a\u0430 \u0434\u043b\u044f \u0443\u043c\u0430\u00bb. \u041d\u0430 \u043c\u043e\u0439 \u0432\u0437\u0433\u043b\u044f\u0434, \u044d\u0442\u043e\u0433\u043e \u043e\u0431\u044a\u044f\u0441\u043d\u0435\u043d\u0438\u044f \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e.","og:url":"https:\/\/prohoster.info\/en\/blog\/news\/vot-zachem-nuzhna-shkolnaya-algebra","og:image":"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg","og:image:secure_url":"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg","og:image:width":350,"og:image:height":350,"article:published_time":"2019-10-31T19:12:27+00:00","article:modified_time":"2019-10-31T19:12:27+00:00","article:publisher":"https:\/\/www.facebook.com\/prohoster","article:author":"https:\/\/www.facebook.com\/prohoster"},"aioseo_meta_data":{"post_id":"36577","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,"seo_analyzer_scan_date":"2026-01-22 03:56:20","breadcrumb_settings":null,"limit_modified_date":false,"reviewed_by":null,"ai":null,"created":"2021-03-01 01:42:26","updated":"2026-01-22 03:56:20","focus_keyword":null,"additional_keywords":null,"truseo_locale":null},"gt_translate_keys":[{"key":"link","format":"url"}],"_links":{"self":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts\/36577","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/comments?post=36577"}],"version-history":[{"count":0,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts\/36577\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/media\/27386"}],"wp:attachment":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/media?parent=36577"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/categories?post=36577"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/tags?post=36577"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}