{"id":998,"date":"2025-10-26T13:16:26","date_gmt":"2025-10-26T13:16:26","guid":{"rendered":"https:\/\/eolais.cloud\/?p=998"},"modified":"2025-10-26T13:16:49","modified_gmt":"2025-10-26T13:16:49","slug":"simple-explanation-crowdfunding-dao-project","status":"publish","type":"post","link":"https:\/\/eolais.cloud\/index.php\/2025\/10\/26\/simple-explanation-crowdfunding-dao-project\/","title":{"rendered":"Simple Explanation: Crowdfunding DAO Project"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">\ud83c\udfaf&nbsp;<strong>What This Project Is<\/strong><\/h2>\n\n\n\n<p>A&nbsp;<strong>web application<\/strong>&nbsp;that lets people create and fund community projects together, where everyone can see where the money goes and vote on decisions.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\ud83d\udd27&nbsp;<strong>What We Built<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Backend Server<\/strong>\u00a0(Node.js\/Express): Handles data and rules<\/li>\n\n\n\n<li><strong>Frontend Website<\/strong>\u00a0(HTML\/CSS\/JavaScript): User interface<\/li>\n\n\n\n<li><strong>No Database<\/strong>: Uses JavaScript arrays to store data (resets when server restarts)<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">\ud83c\udfd7\ufe0f&nbsp;<strong>How It Works &#8211; Simple Flow<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">1.&nbsp;<strong>Join the Community<\/strong><\/h3>\n\n\n\n<p>javascript<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">\/\/ You become a member\n{\n  name: \"Alice\",\n  walletAddress: \"0x123abc\",\n  joinDate: \"2024-01-15\"\n}<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">2.&nbsp;<strong>Create a Project<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Title: &#8220;Save the Community Garden&#8221;<\/li>\n\n\n\n<li>Goal: $2,000<\/li>\n\n\n\n<li>Description: &#8220;Renovate our local garden&#8221;<\/li>\n\n\n\n<li>Creator: Your wallet address<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">3.&nbsp;<strong>People Donate<\/strong><\/h3>\n\n\n\n<p>javascript<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">\/\/ Transparent donations\ncampaign.currentAmount += 50; \/\/ Everyone sees this update<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">4.&nbsp;<strong>Community Votes<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Members vote \ud83d\udc4d or \ud83d\udc4e on projects<\/li>\n\n\n\n<li>Everyone sees real-time results<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">5.&nbsp;<strong>Track Progress<\/strong><\/h3>\n\n\n\n<p>javascript<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">\/\/ Visual progress bar\nprogressWidth = (currentAmount \/ goalAmount) * 100 + \"%\";<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">\ud83d\udcbb&nbsp;<strong>Files We Created<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Backend<\/strong>&nbsp;(<code>simple-dao-server.js<\/code>)<\/h3>\n\n\n\n<p>javascript<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">\/\/ Handles:\napp.post('\/api\/campaigns')        \/\/ Create projects\napp.post('\/api\/campaigns\/donate') \/\/ Accept donations  \napp.post('\/api\/campaigns\/vote')   \/\/ Process votes\napp.get('\/api\/campaigns')         \/\/ Show all projects<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Frontend<\/strong>&nbsp;(<code>public\/index.html<\/code>)<\/h3>\n\n\n\n<p>html<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;!-- User Interface with:\n- Join DAO form\n- Create project form  \n- Projects display with progress bars\n- Voting buttons\n- Real-time updates\n--&gt;<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">\ud83d\ude80&nbsp;<strong>How to Run It<\/strong><\/h2>\n\n\n\n<ol start=\"1\" class=\"wp-block-list\">\n<li><strong>Open Visual Studio Code<\/strong><\/li>\n\n\n\n<li><strong>Terminal \u2192 New Terminal<\/strong><\/li>\n\n\n\n<li><strong>Run these commands:<\/strong><\/li>\n<\/ol>\n\n\n\n<p>bash<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">npm install\nnpm start<\/pre>\n\n\n\n<ol start=\"4\" class=\"wp-block-list\">\n<li><strong>Open browser to:<\/strong>\u00a0<code>http:\/\/localhost:3000<\/code><\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\">\ud83c\udfae&nbsp;<strong>What You Can Do<\/strong><\/h2>\n\n\n\n<ol start=\"1\" class=\"wp-block-list\">\n<li><strong>Join<\/strong>\u00a0&#8211; Enter name &amp; wallet address<\/li>\n\n\n\n<li><strong>Create<\/strong>\u00a0&#8211; Start a funding campaign<\/li>\n\n\n\n<li><strong>Donate<\/strong>\u00a0&#8211; Contribute to projects<\/li>\n\n\n\n<li><strong>Vote<\/strong>\u00a0&#8211; \ud83d\udc4d or \ud83d\udc4e on campaigns<\/li>\n\n\n\n<li><strong>Watch<\/strong>\u00a0&#8211; See real-time progress<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\">\ud83d\udd0d&nbsp;<strong>Key Features<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Transparent<\/strong>: Everyone sees all transactions<\/li>\n\n\n\n<li><strong>Democratic<\/strong>: Community votes on projects<\/li>\n\n\n\n<li><strong>Real-time<\/strong>: Progress updates instantly<\/li>\n\n\n\n<li><strong>Simple<\/strong>: No blockchain complexity<\/li>\n\n\n\n<li><strong>Visual<\/strong>: Progress bars and status indicators<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">\ud83d\udcca&nbsp;<strong>Example Project Display<\/strong><\/h2>\n\n\n\n<p>text<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">\ud83c\udf3b Save the Community Garden\n\"Renovate our local garden space\"\n\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2591\u2591\u2591\u2591\u2591\u2591 65% ($1,300 \/ $2,000)\nStatus: active  |  Votes: 12 \ud83d\udc4d 2 \ud83d\udc4e\n[Donate 1 ETH] [Vote \ud83d\udc4d] [Vote \ud83d\udc4e]<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">\ud83d\udca1&nbsp;<strong>Why This Matters<\/strong><\/h2>\n\n\n\n<p>This demonstrates how&nbsp;<strong>regular web technology<\/strong>&nbsp;(JavaScript) can create transparent, community-controlled funding systems without needing complex blockchain setup.<\/p>\n\n\n\n<p>Get full project here <a href=\"https:\/\/github.com\/saintmavshero\/DAO\">https:\/\/github.com\/saintmavshero\/DAO<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\ud83c\udfaf&nbsp;What This Project Is A&nbsp;web application&nbsp;that lets people create and fund community projects together, where everyone can see where the money goes and vote on decisions. \ud83d\udd27&nbsp;What We Built \ud83c\udfd7\ufe0f&nbsp;How It Works &#8211; Simple Flow 1.&nbsp;Join the Community javascript \/\/ You become a member { name: &#8220;Alice&#8221;, walletAddress: &#8220;0x123abc&#8221;, joinDate: &#8220;2024-01-15&#8221; } 2.&nbsp;Create a Project [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"ocean_post_layout":"","ocean_both_sidebars_style":"","ocean_both_sidebars_content_width":0,"ocean_both_sidebars_sidebars_width":0,"ocean_sidebar":"","ocean_second_sidebar":"","ocean_disable_margins":"enable","ocean_add_body_class":"","ocean_shortcode_before_top_bar":"","ocean_shortcode_after_top_bar":"","ocean_shortcode_before_header":"","ocean_shortcode_after_header":"","ocean_has_shortcode":"","ocean_shortcode_after_title":"","ocean_shortcode_before_footer_widgets":"","ocean_shortcode_after_footer_widgets":"","ocean_shortcode_before_footer_bottom":"","ocean_shortcode_after_footer_bottom":"","ocean_display_top_bar":"default","ocean_display_header":"default","ocean_header_style":"","ocean_center_header_left_menu":"","ocean_custom_header_template":"","ocean_custom_logo":0,"ocean_custom_retina_logo":0,"ocean_custom_logo_max_width":0,"ocean_custom_logo_tablet_max_width":0,"ocean_custom_logo_mobile_max_width":0,"ocean_custom_logo_max_height":0,"ocean_custom_logo_tablet_max_height":0,"ocean_custom_logo_mobile_max_height":0,"ocean_header_custom_menu":"","ocean_menu_typo_font_family":"","ocean_menu_typo_font_subset":"","ocean_menu_typo_font_size":0,"ocean_menu_typo_font_size_tablet":0,"ocean_menu_typo_font_size_mobile":0,"ocean_menu_typo_font_size_unit":"px","ocean_menu_typo_font_weight":"","ocean_menu_typo_font_weight_tablet":"","ocean_menu_typo_font_weight_mobile":"","ocean_menu_typo_transform":"","ocean_menu_typo_transform_tablet":"","ocean_menu_typo_transform_mobile":"","ocean_menu_typo_line_height":0,"ocean_menu_typo_line_height_tablet":0,"ocean_menu_typo_line_height_mobile":0,"ocean_menu_typo_line_height_unit":"","ocean_menu_typo_spacing":0,"ocean_menu_typo_spacing_tablet":0,"ocean_menu_typo_spacing_mobile":0,"ocean_menu_typo_spacing_unit":"","ocean_menu_link_color":"","ocean_menu_link_color_hover":"","ocean_menu_link_color_active":"","ocean_menu_link_background":"","ocean_menu_link_hover_background":"","ocean_menu_link_active_background":"","ocean_menu_social_links_bg":"","ocean_menu_social_hover_links_bg":"","ocean_menu_social_links_color":"","ocean_menu_social_hover_links_color":"","ocean_disable_title":"default","ocean_disable_heading":"default","ocean_post_title":"","ocean_post_subheading":"","ocean_post_title_style":"","ocean_post_title_background_color":"","ocean_post_title_background":0,"ocean_post_title_bg_image_position":"","ocean_post_title_bg_image_attachment":"","ocean_post_title_bg_image_repeat":"","ocean_post_title_bg_image_size":"","ocean_post_title_height":0,"ocean_post_title_bg_overlay":0.5,"ocean_post_title_bg_overlay_color":"","ocean_disable_breadcrumbs":"default","ocean_breadcrumbs_color":"","ocean_breadcrumbs_separator_color":"","ocean_breadcrumbs_links_color":"","ocean_breadcrumbs_links_hover_color":"","ocean_display_footer_widgets":"default","ocean_display_footer_bottom":"default","ocean_custom_footer_template":"","ocean_post_oembed":"","ocean_post_self_hosted_media":"","ocean_post_video_embed":"","ocean_link_format":"","ocean_link_format_target":"self","ocean_quote_format":"","ocean_quote_format_link":"post","ocean_gallery_link_images":"on","ocean_gallery_id":[],"footnotes":""},"categories":[33,18],"tags":[],"class_list":["post-998","post","type-post","status-publish","format-standard","hentry","category-blockchain-programming","category-programming-experience","entry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.3.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Simple Explanation: Crowdfunding DAO Project - Future Knowledge<\/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:\/\/eolais.cloud\/index.php\/2025\/10\/26\/simple-explanation-crowdfunding-dao-project\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Simple Explanation: Crowdfunding DAO Project - Future Knowledge\" \/>\n<meta property=\"og:description\" content=\"\ud83c\udfaf&nbsp;What This Project Is A&nbsp;web application&nbsp;that lets people create and fund community projects together, where everyone can see where the money goes and vote on decisions. \ud83d\udd27&nbsp;What We Built \ud83c\udfd7\ufe0f&nbsp;How It Works &#8211; Simple Flow 1.&nbsp;Join the Community javascript \/\/ You become a member { name: &quot;Alice&quot;, walletAddress: &quot;0x123abc&quot;, joinDate: &quot;2024-01-15&quot; } 2.&nbsp;Create a Project [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/eolais.cloud\/index.php\/2025\/10\/26\/simple-explanation-crowdfunding-dao-project\/\" \/>\n<meta property=\"og:site_name\" content=\"Future Knowledge\" \/>\n<meta property=\"article:published_time\" content=\"2025-10-26T13:16:26+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-26T13:16:49+00:00\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\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:\/\/eolais.cloud\/index.php\/2025\/10\/26\/simple-explanation-crowdfunding-dao-project\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/eolais.cloud\/index.php\/2025\/10\/26\/simple-explanation-crowdfunding-dao-project\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/eolais.cloud\/#\/schema\/person\/33c4c6a8180d2be14d8a664a8addb9d1\"},\"headline\":\"Simple Explanation: Crowdfunding DAO Project\",\"datePublished\":\"2025-10-26T13:16:26+00:00\",\"dateModified\":\"2025-10-26T13:16:49+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/eolais.cloud\/index.php\/2025\/10\/26\/simple-explanation-crowdfunding-dao-project\/\"},\"wordCount\":246,\"publisher\":{\"@id\":\"https:\/\/eolais.cloud\/#organization\"},\"articleSection\":[\"Blockchain Programming\",\"Programming\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/eolais.cloud\/index.php\/2025\/10\/26\/simple-explanation-crowdfunding-dao-project\/\",\"url\":\"https:\/\/eolais.cloud\/index.php\/2025\/10\/26\/simple-explanation-crowdfunding-dao-project\/\",\"name\":\"Simple Explanation: Crowdfunding DAO Project - Future Knowledge\",\"isPartOf\":{\"@id\":\"https:\/\/eolais.cloud\/#website\"},\"datePublished\":\"2025-10-26T13:16:26+00:00\",\"dateModified\":\"2025-10-26T13:16:49+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/eolais.cloud\/index.php\/2025\/10\/26\/simple-explanation-crowdfunding-dao-project\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/eolais.cloud\/index.php\/2025\/10\/26\/simple-explanation-crowdfunding-dao-project\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/eolais.cloud\/index.php\/2025\/10\/26\/simple-explanation-crowdfunding-dao-project\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/eolais.cloud\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Simple Explanation: Crowdfunding DAO Project\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/eolais.cloud\/#website\",\"url\":\"https:\/\/eolais.cloud\/\",\"name\":\"Future Knowledge\",\"description\":\"Future Knowledge\",\"publisher\":{\"@id\":\"https:\/\/eolais.cloud\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/eolais.cloud\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/eolais.cloud\/#organization\",\"name\":\"Future Knowledge\",\"url\":\"https:\/\/eolais.cloud\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/eolais.cloud\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/eolais.cloud\/wp-content\/uploads\/2025\/06\/Untitled-design.png\",\"contentUrl\":\"https:\/\/eolais.cloud\/wp-content\/uploads\/2025\/06\/Untitled-design.png\",\"width\":1472,\"height\":832,\"caption\":\"Future Knowledge\"},\"image\":{\"@id\":\"https:\/\/eolais.cloud\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/eolais.cloud\/#\/schema\/person\/33c4c6a8180d2be14d8a664a8addb9d1\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/eolais.cloud\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/87f974e7730934d5b3fc85bd20956cdb4b3182c2ecccfa67c47e7d9345fe48a4?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/87f974e7730934d5b3fc85bd20956cdb4b3182c2ecccfa67c47e7d9345fe48a4?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"https:\/\/eolais.cloud\"],\"url\":\"https:\/\/eolais.cloud\/index.php\/author\/admin_idjqjwfo\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Simple Explanation: Crowdfunding DAO Project - Future Knowledge","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:\/\/eolais.cloud\/index.php\/2025\/10\/26\/simple-explanation-crowdfunding-dao-project\/","og_locale":"en_US","og_type":"article","og_title":"Simple Explanation: Crowdfunding DAO Project - Future Knowledge","og_description":"\ud83c\udfaf&nbsp;What This Project Is A&nbsp;web application&nbsp;that lets people create and fund community projects together, where everyone can see where the money goes and vote on decisions. \ud83d\udd27&nbsp;What We Built \ud83c\udfd7\ufe0f&nbsp;How It Works &#8211; Simple Flow 1.&nbsp;Join the Community javascript \/\/ You become a member { name: \"Alice\", walletAddress: \"0x123abc\", joinDate: \"2024-01-15\" } 2.&nbsp;Create a Project [&hellip;]","og_url":"https:\/\/eolais.cloud\/index.php\/2025\/10\/26\/simple-explanation-crowdfunding-dao-project\/","og_site_name":"Future Knowledge","article_published_time":"2025-10-26T13:16:26+00:00","article_modified_time":"2025-10-26T13:16:49+00:00","author":"admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/eolais.cloud\/index.php\/2025\/10\/26\/simple-explanation-crowdfunding-dao-project\/#article","isPartOf":{"@id":"https:\/\/eolais.cloud\/index.php\/2025\/10\/26\/simple-explanation-crowdfunding-dao-project\/"},"author":{"name":"admin","@id":"https:\/\/eolais.cloud\/#\/schema\/person\/33c4c6a8180d2be14d8a664a8addb9d1"},"headline":"Simple Explanation: Crowdfunding DAO Project","datePublished":"2025-10-26T13:16:26+00:00","dateModified":"2025-10-26T13:16:49+00:00","mainEntityOfPage":{"@id":"https:\/\/eolais.cloud\/index.php\/2025\/10\/26\/simple-explanation-crowdfunding-dao-project\/"},"wordCount":246,"publisher":{"@id":"https:\/\/eolais.cloud\/#organization"},"articleSection":["Blockchain Programming","Programming"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/eolais.cloud\/index.php\/2025\/10\/26\/simple-explanation-crowdfunding-dao-project\/","url":"https:\/\/eolais.cloud\/index.php\/2025\/10\/26\/simple-explanation-crowdfunding-dao-project\/","name":"Simple Explanation: Crowdfunding DAO Project - Future Knowledge","isPartOf":{"@id":"https:\/\/eolais.cloud\/#website"},"datePublished":"2025-10-26T13:16:26+00:00","dateModified":"2025-10-26T13:16:49+00:00","breadcrumb":{"@id":"https:\/\/eolais.cloud\/index.php\/2025\/10\/26\/simple-explanation-crowdfunding-dao-project\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/eolais.cloud\/index.php\/2025\/10\/26\/simple-explanation-crowdfunding-dao-project\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/eolais.cloud\/index.php\/2025\/10\/26\/simple-explanation-crowdfunding-dao-project\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/eolais.cloud\/"},{"@type":"ListItem","position":2,"name":"Simple Explanation: Crowdfunding DAO Project"}]},{"@type":"WebSite","@id":"https:\/\/eolais.cloud\/#website","url":"https:\/\/eolais.cloud\/","name":"Future Knowledge","description":"Future Knowledge","publisher":{"@id":"https:\/\/eolais.cloud\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/eolais.cloud\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/eolais.cloud\/#organization","name":"Future Knowledge","url":"https:\/\/eolais.cloud\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/eolais.cloud\/#\/schema\/logo\/image\/","url":"https:\/\/eolais.cloud\/wp-content\/uploads\/2025\/06\/Untitled-design.png","contentUrl":"https:\/\/eolais.cloud\/wp-content\/uploads\/2025\/06\/Untitled-design.png","width":1472,"height":832,"caption":"Future Knowledge"},"image":{"@id":"https:\/\/eolais.cloud\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/eolais.cloud\/#\/schema\/person\/33c4c6a8180d2be14d8a664a8addb9d1","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/eolais.cloud\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/87f974e7730934d5b3fc85bd20956cdb4b3182c2ecccfa67c47e7d9345fe48a4?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/87f974e7730934d5b3fc85bd20956cdb4b3182c2ecccfa67c47e7d9345fe48a4?s=96&d=mm&r=g","caption":"admin"},"sameAs":["https:\/\/eolais.cloud"],"url":"https:\/\/eolais.cloud\/index.php\/author\/admin_idjqjwfo\/"}]}},"jetpack_featured_media_url":"","_links":{"self":[{"href":"https:\/\/eolais.cloud\/index.php\/wp-json\/wp\/v2\/posts\/998","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/eolais.cloud\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/eolais.cloud\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/eolais.cloud\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/eolais.cloud\/index.php\/wp-json\/wp\/v2\/comments?post=998"}],"version-history":[{"count":1,"href":"https:\/\/eolais.cloud\/index.php\/wp-json\/wp\/v2\/posts\/998\/revisions"}],"predecessor-version":[{"id":999,"href":"https:\/\/eolais.cloud\/index.php\/wp-json\/wp\/v2\/posts\/998\/revisions\/999"}],"wp:attachment":[{"href":"https:\/\/eolais.cloud\/index.php\/wp-json\/wp\/v2\/media?parent=998"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/eolais.cloud\/index.php\/wp-json\/wp\/v2\/categories?post=998"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/eolais.cloud\/index.php\/wp-json\/wp\/v2\/tags?post=998"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}