{"id":1388,"date":"2024-02-05T19:13:20","date_gmt":"2024-02-05T19:13:20","guid":{"rendered":"https:\/\/beams-experiments.com\/?page_id=1388"},"modified":"2024-09-06T08:00:05","modified_gmt":"2024-09-06T07:00:05","slug":"tactical-decision-making-human","status":"publish","type":"page","link":"https:\/\/beams-experiments.com\/index.php\/tactical-decision-making-human\/","title":{"rendered":"Task-DMT-H"},"content":{"rendered":"\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>GreenGrove Garden Services Case Study<\/title>\n     <style>\n        table {\n            width: 100%;\n            border-collapse: collapse;\n        }\n        table, th, td {\n            border: 1px solid black;\n        }\n        th, td {\n            padding: 10px;\n            text-align: left;\n        }\n        th {\n            background-color: #f2f2f2;\n        }\n        h1 {\n            font-size: 18px;\n            text-align: center;\n            font-weight: bold;\n            margin-bottom: 8px;\n        }\n        p {\n            font-size: 14px;\n            margin-bottom: 8px;\n        }\n        input[type=range] {\n            -webkit-appearance: none;\n            width: 100%;\n            height: 5px;\n            background: #ddd;\n            outline: none;\n            opacity: 0.8;\n            transition: opacity .2s;\n        }\n        input[type=range]:hover {\n            opacity: 1;\n        }\n        .slider-container {\n            width: 100%;\n            margin: 20px 0;\n        }\n        .slider {\n            -webkit-appearance: none;\n            width: 100%;\n            height: 5px;\n            background: #ddd;\n            outline: none;\n            opacity: 0.7;\n            transition: opacity .2s;\n        }\n        .slider:hover {\n            opacity: 1;\n        }\n        .slider::-webkit-slider-thumb {\n            -webkit-appearance: none;\n            appearance: none;\n            width: 20px;\n            height: 20px;\n            background: #4CAF50;\n            cursor: pointer;\n        }\n        .slider::-moz-range-thumb {\n            width: 20px;\n            height: 20px;\n            background: #4CAF50;\n            cursor: pointer;\n        }\n        .slider-labels {\n            display: flex;\n            justify-content: space-between;\n            padding: 0 10px;\n        }\n        .slider-labels span {\n            position: relative;\n            text-align: center;\n            width: 1px;\n            background: #ddd;\n            height: 10px;\n            line-height: 20px;\n            font-size: 14px;\n        }\n        .small-font-table, .small-font-table th, .small-font-table td {\n            font-size: 13px;\n        }\n#loadingSpinnerPage {\n    border: 5px solid #f3f3f3; \/* Light grey border *\/\n    border-top: 5px solid #3498db; \/* Blue border for the top *\/\n    border-radius: 50%;\n    width: 60px;\n    height: 60px;\n    animation: spin 2s linear infinite;\n     position: fixed; \/* Position it relative to the viewport *\/\n    top: 50%; \/* Move it down 50% of the viewport height *\/\n    left: 50%; \/* Move it right 50% of the viewport width *\/\n    transform: translate(-50%, -50%); \/* Offset the spinner by half its width\/height to center it *\/\n    z-index: 9999; \/* Ensure it is above other content *\/\n}\n@keyframes spin {\n    0% { transform: rotate(0deg); }\n    100% { transform: rotate(360deg); }\n}\n\n#progressBarContainer {\n            width: 90%;\n            background-color: #e0e0e0;\n            border-radius: 5px;\n            margin-top: 20px;\n        }\n#progressBar {\n            height: 10px;\n            background-color: #007bff;\n            border-radius: 5px;\n            width: 44%;\n        }\n        #progressText {\n            text-align: center;\n            margin-top: 5px;\n        }\n        #nextButton {\n            display: block;\n            padding: 10px 20px;\n            background-color: #007bff;\n            color: white;\n            border: none;\n            border-radius: 5px;\n            cursor: pointer;\n            margin: 10px auto;\n            width: fit-content;\n            position: relative;\n        }\n        #nextButton:disabled {\n            cursor: not-allowed;\n            opacity: 0.5;\n        }\n    <\/style>\n    <script src=\"https:\/\/code.jquery.com\/jquery-3.6.0.min.js\"><\/script>\n<script>\n\/\/ Show an initial alert immediately\nalert(\"Please wait for the full page to load before interacting with it. This may depend on your internet speed.\");\n$('#loadingSpinnerPage').show();\n        document.addEventListener('DOMContentLoaded', function() {\n            $('#loadingSpinnerPage').hide();\n\/\/check if user already did this section\nif (localStorage.getItem('tacticalScore')) {\n    \/\/ If 'tacticalScore' already exists, make alert\n     alert ('You already did this section. Moving you back!');\n \/\/ Get the current task index from the URL or set to 0 if not present\n    const urlParams = new URLSearchParams(window.location.search);\n    let taskIndex = parseInt(urlParams.get('taskIndex')) || 0;\nwindow.location.href = 'https:\/\/beams-experiments.com\/index.php\/interim-task-questionnaire-h\/?taskIndex=' + taskIndex;\n  }\n\/\/tracking time screen not attended\nlet timePageNotVisibleStart = 0;\nlet totalTimeNotVisible = 0; \/\/ initialize totalTimeNotVisible\n\nfunction updateTotalTimeNotVisible() {\n    if (document.visibilityState === 'hidden' && timePageNotVisibleStart !== 0) {\n        \/\/ Calculate time page was not visible and reset start time\n        const notVisibleDuration = Date.now() - timePageNotVisibleStart;\n        totalTimeNotVisible += Math.round(notVisibleDuration \/ 1000);\n        timePageNotVisibleStart = 0;\n    }\n    \/\/ Optionally log the updated total time here for debugging\n}\n\ndocument.addEventListener('visibilitychange', () => {\n    \/\/console.log('Visibility changed to:', document.visibilityState);\n    if (document.visibilityState === 'visible') {\n        if (timePageNotVisibleStart !== 0) {\n            const notVisibleDuration = Date.now() - timePageNotVisibleStart;\n           \/\/ console.log('Not visible duration (ms):', notVisibleDuration);\n            totalTimeNotVisible += Math.round(notVisibleDuration \/ 1000); \/\/ Convert ms to seconds and accumulate\n            \/\/console.log('Total time not visible (s):', totalTimeNotVisible);\n            timePageNotVisibleStart = 0; \/\/ Reset the start time\n        }\n    } else {\n        timePageNotVisibleStart = Date.now();\n    }f\n});\n            const nextButton = document.getElementById('nextButton');\n            const inputs = document.querySelectorAll('input[type=radio]');\n            const confidenceSlider = document.getElementById('confidence');\n            const radioGroups = [...new Set(Array.from(inputs).map(input => input.name))];\n            let confidenceMoved = false;\n            var startTime = Date.now();\n            const taskSequence = JSON.parse(localStorage.getItem('taskSequence'));\n            const groupID = localStorage.getItem('groupID'); \/\/ Retrieve groupID from local storage\n\n            \/\/ Get the current task index from the URL or set to 0 if not present\n            const urlParams = new URLSearchParams(window.location.search);\n            let taskIndex = parseInt(urlParams.get('taskIndex')) || 0;\n\/\/ Total number of pages: 15  \nconst totalPages = 15;\n\n\/\/ Function to update the progress bar and progress text\nfunction updateProgressBar(taskIndex) {\n    \/\/ Current page: Pre-task is page 4, tasks are 5-9, and post-task is page 10\n    const currentPage = taskIndex*2 + 5; \/\/ +5 to account for previous pages; *2 to account for each task its interim questionnaire\n\n    \/\/ Calculate the progress percentage\n    const progressPercentage = (currentPage \/ totalPages) * 100;\n\n    \/\/ Update the progress bar width\n    document.getElementById('progressBar').style.width = `${progressPercentage}%`;\n\n    \/\/ Update the progress text\n    document.getElementById('progressText').innerText = `Page ${currentPage} out of ${totalPages}`;\n}\n\n\/\/ Call updateProgressBar with the current taskIndex on page load\nupdateProgressBar(taskIndex);\n\n            \/\/ Function to go to the next task or the post-task questionnaire\n            function goToNextTask() {\n                \n               window.location.href = 'https:\/\/beams-experiments.com\/index.php\/interim-task-questionnaire-h\/?taskIndex=' + taskIndex;\n                \n            }\n\n            function checkFormCompletion() {\n                const allRadiosChecked = radioGroups.every(name => {\n                    return document.querySelector(`input[name=\"${name}\"]:checked`);\n                });\n                nextButton.disabled = !(allRadiosChecked && confidenceMoved);\n            }\n\n            inputs.forEach(input => {\n                input.addEventListener('change', checkFormCompletion);\n            });\n\n            confidenceSlider.addEventListener('input', function() {\n                confidenceMoved = true;\n                checkFormCompletion();\n            });\n\n\n            function setupExclusiveRanking() {\n                inputs.forEach(radio => {\n                    radio.addEventListener('change', () => {\n                        if (radio.type === 'radio') {\n                            inputs.forEach(otherRadio => {\n                                if (otherRadio !== radio && otherRadio.name !== radio.name && otherRadio.value === radio.value) {\n                                    otherRadio.checked = false;\n                                }\n                            });\n                        }\n                        checkFormCompletion();\n                    });\n                });\n            }\n            setupExclusiveRanking();\n\n            document.getElementById('decisionForm').addEventListener('submit', function(event) {\n                event.preventDefault();\n                calculateScoreAndSave();\n               \n                \/\/calculate task time \n                var endTime = Date.now();\n                \/\/ Calculate the duration in milliseconds\n                var durationMillis = endTime - startTime;\n                \/\/ Convert duration to seconds or minutes as needed\n                var tacticalTaskTime = durationMillis \/ 1000;\n                localStorage.setItem('tacticalTaskTime', tacticalTaskTime );\n                console.log('Tactical task Time is ', tacticalTaskTime);\n                localStorage.setItem('finalTotalTimeNotVisible', totalTimeNotVisible.toString());\n\n                 goToNextTask();\n            });\n\n            function calculateScoreAndSave() {\n                let tacticalScore = 0;\n                try {\n                    const correctAnswers = [5, 1, 3, 2, 4];\n                    correctAnswers.forEach((correctAnswer, index) => {\n                        const userAnswer = parseInt(document.querySelector(`input[name=\"rank${index + 1}\"]:checked`)?.value);\n                        const deviation = Math.abs(correctAnswer - userAnswer);\n                        tacticalScore += deviation * 12;\n                    });\n\n                    console.log(`tacticalScore : ${tacticalScore}`);\n                    localStorage.setItem('tacticalScore', tacticalScore );\n\n                    const tacticalConfidence = document.getElementById('confidence').value;\n                    console.log(`Confidence: ${tacticalConfidence}`);\n                    localStorage.setItem('tacticalConfidence', tacticalConfidence);\n                } catch (error) {\n                    console.error('Error calculating score:', error);\n                }\n            }\n        });\n    <\/script>\n<\/head>\n<body>\n    <h1>GreenGrove Garden Services \u2013 Case Study<\/h1>\n    <form id=\"decisionForm\">\n        <p>GreenGrove Garden Services, founded and owned by Mr. Hamilton, has been operational for five years. What started as a small enterprise with just Mr. Hamilton and a truck has now expanded to a fleet of three trucks equipped with the necessary tools. The business typically employs around 10 college students during the summer, with each truck manned by three students, including at least one experienced student in each group to maintain quality standards and train new recruits. Mr. Hamilton now focuses on promoting the service and overseeing his team. Recently, clients have shown interest in tree and shrub maintenance, which would require new equipment and knowledge. Although Mr. Hamilton believes his current customer base would remain stable without this expansion, he sees potential revenue growth by offering these additional services.<\/p>\n        <p>What should Mr. Hamilton do? (rank 1-5)<\/p>\n        <table class=\"small-font-table\">\n            <tr>\n                <th>Action<\/th>\n                <th>1 (Most Important)<\/th>\n                <th>2<\/th>\n                <th>3<\/th>\n                <th>4<\/th>\n                <th>5 (Least Important)<\/th>\n            <\/tr>\n            <tr>\n                <td>1. Expand into the tree and shrub-care business first by learning the business and then training his employees.<\/td>\n                <td><input type=\"radio\" name=\"rank1\" value=\"1\"><\/td>\n                <td><input type=\"radio\" name=\"rank1\" value=\"2\"><\/td>\n                <td><input type=\"radio\" name=\"rank1\" value=\"3\"><\/td>\n                <td><input type=\"radio\" name=\"rank1\" value=\"4\"><\/td>\n                <td><input type=\"radio\" name=\"rank1\" value=\"5\"><\/td>\n            <\/tr>\n            <tr>\n                <td>2. Decide whether to maintain the business as it is or to grow.<\/td>\n                <td><input type=\"radio\" name=\"rank2\" value=\"1\"><\/td>\n                <td><input type=\"radio\" name=\"rank2\" value=\"2\"><\/td>\n                <td><input type=\"radio\" name=\"rank2\" value=\"3\"><\/td>\n                <td><input type=\"radio\" name=\"rank2\" value=\"4\"><\/td>\n                <td><input type=\"radio\" name=\"rank2\" value=\"5\"><\/td>\n            <\/tr>\n            <tr>\n                <td>3. Survey the market to see if there is a need he can fill.<\/td>\n                <td><input type=\"radio\" name=\"rank3\" value=\"1\"><\/td>\n                <td><input type=\"radio\" name=\"rank3\" value=\"2\"><\/td>\n                <td><input type=\"radio\" name=\"rank3\" value=\"3\"><\/td>\n                <td><input type=\"radio\" name=\"rank3\" value=\"4\"><\/td>\n                <td><input type=\"radio\" name=\"rank3\" value=\"5\"><\/td>\n            <\/tr>\n            <tr>\n                <td>4. Do a business plan and cost\/benefit analysis so he can make an informed decision.<\/td>\n                <td><input type=\"radio\" name=\"rank4\" value=\"1\"><\/td>\n                <td><input type=\"radio\" name=\"rank4\" value=\"2\"><\/td>\n                <td><input type=\"radio\" name=\"rank4\" value=\"3\"><\/td>\n                <td><input type=\"radio\" name=\"rank4\" value=\"4\"><\/td>\n                <td><input type=\"radio\" name=\"rank4\" value=\"5\"><\/td>\n            <\/tr>\n            <tr>\n                <td>5. Determine whether or not he can provide the new service effectively using seasonal help.<\/td>\n                <td><input type=\"radio\" name=\"rank5\" value=\"1\"><\/td>\n                <td><input type=\"radio\" name=\"rank5\" value=\"2\"><\/td>\n                <td><input type=\"radio\" name=\"rank5\" value=\"3\"><\/td>\n                <td><input type=\"radio\" name=\"rank5\" value=\"4\"><\/td>\n                <td><input type=\"radio\" name=\"rank5\" value=\"5\"><\/td>\n            <\/tr>\n        <\/table>\n        <p>How confident are you in your ranking order?<\/p>\n        <div class=\"slider-container\">\n            <input type=\"range\" id=\"confidence\" name=\"confidence\" min=\"0\" max=\"10\" step=\"1\" class=\"slider\">\n            <div class=\"slider-labels\">\n                <span>0<\/span><span>1<\/span><span>2<\/span><span>3<\/span><span>4<\/span><span>5<\/span><span>6<\/span><span>7<\/span><span>8<\/span><span>9<\/span><span>10<\/span>\n            <\/div>\n        <\/div>\n        <button type=\"submit\" id=\"nextButton\" disabled>Next<\/button>\n<\/div>\n <div id=\"progressBarContainer\">\n    <div id=\"progressBar\"><\/div>\n<\/div>\n<div id=\"progressText\">Page 1 out of 15<\/div>\n    <\/form>\n    <div id=\"loadingSpinnerPage\"><\/div>\n    \n<\/body>\n<\/html>\n","protected":false},"excerpt":{"rendered":"<p>GreenGrove Garden Services Case Study GreenGrove Garden Services \u2013 Case Study GreenGrove Garden Services, founded and owned by Mr. Hamilton, has been operational for five years. What started as a small enterprise with just Mr. Hamilton and a truck has now expanded to a fleet of three trucks equipped with the necessary tools. The business [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"om_disable_all_campaigns":false,"footnotes":""},"class_list":["post-1388","page","type-page","status-publish","hentry"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.8 - aioseo.com -->\n\t<meta name=\"description\" content=\"GreenGrove Garden Services Case Study GreenGrove Garden Services \u2013 Case Study GreenGrove Garden Services, founded and owned by Mr. Hamilton, has been operational for five years. What started as a small enterprise with just Mr. Hamilton and a truck has now expanded to a fleet of three trucks equipped with the necessary tools. The business\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/beams-experiments.com\/index.php\/tactical-decision-making-human\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.8\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"beams-experiments.com -\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Task-DMT-H - beams-experiments.com\" \/>\n\t\t<meta property=\"og:description\" content=\"GreenGrove Garden Services Case Study GreenGrove Garden Services \u2013 Case Study GreenGrove Garden Services, founded and owned by Mr. Hamilton, has been operational for five years. What started as a small enterprise with just Mr. Hamilton and a truck has now expanded to a fleet of three trucks equipped with the necessary tools. The business\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/beams-experiments.com\/index.php\/tactical-decision-making-human\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2024-02-05T19:13:20+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2024-09-06T07:00:05+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Task-DMT-H - beams-experiments.com\" \/>\n\t\t<meta name=\"twitter:description\" content=\"GreenGrove Garden Services Case Study GreenGrove Garden Services \u2013 Case Study GreenGrove Garden Services, founded and owned by Mr. Hamilton, has been operational for five years. What started as a small enterprise with just Mr. Hamilton and a truck has now expanded to a fleet of three trucks equipped with the necessary tools. The business\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/beams-experiments.com\\\/index.php\\\/tactical-decision-making-human\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/beams-experiments.com#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/beams-experiments.com\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/beams-experiments.com\\\/index.php\\\/tactical-decision-making-human\\\/#listItem\",\"name\":\"Task-DMT-H\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/beams-experiments.com\\\/index.php\\\/tactical-decision-making-human\\\/#listItem\",\"position\":2,\"name\":\"Task-DMT-H\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/beams-experiments.com#listItem\",\"name\":\"Home\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/beams-experiments.com\\\/#organization\",\"name\":\"beams-experiments.com\",\"url\":\"https:\\\/\\\/beams-experiments.com\\\/\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/beams-experiments.com\\\/index.php\\\/tactical-decision-making-human\\\/#webpage\",\"url\":\"https:\\\/\\\/beams-experiments.com\\\/index.php\\\/tactical-decision-making-human\\\/\",\"name\":\"Task-DMT-H - beams-experiments.com\",\"description\":\"GreenGrove Garden Services Case Study GreenGrove Garden Services \\u2013 Case Study GreenGrove Garden Services, founded and owned by Mr. Hamilton, has been operational for five years. What started as a small enterprise with just Mr. Hamilton and a truck has now expanded to a fleet of three trucks equipped with the necessary tools. The business\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/beams-experiments.com\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/beams-experiments.com\\\/index.php\\\/tactical-decision-making-human\\\/#breadcrumblist\"},\"datePublished\":\"2024-02-05T19:13:20+00:00\",\"dateModified\":\"2024-09-06T08:00:05+01:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/beams-experiments.com\\\/#website\",\"url\":\"https:\\\/\\\/beams-experiments.com\\\/\",\"name\":\"beams-experiments.com\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/beams-experiments.com\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Task-DMT-H - beams-experiments.com","description":"GreenGrove Garden Services Case Study GreenGrove Garden Services \u2013 Case Study GreenGrove Garden Services, founded and owned by Mr. Hamilton, has been operational for five years. What started as a small enterprise with just Mr. Hamilton and a truck has now expanded to a fleet of three trucks equipped with the necessary tools. The business","canonical_url":"https:\/\/beams-experiments.com\/index.php\/tactical-decision-making-human\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/beams-experiments.com\/index.php\/tactical-decision-making-human\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/beams-experiments.com#listItem","position":1,"name":"Home","item":"https:\/\/beams-experiments.com","nextItem":{"@type":"ListItem","@id":"https:\/\/beams-experiments.com\/index.php\/tactical-decision-making-human\/#listItem","name":"Task-DMT-H"}},{"@type":"ListItem","@id":"https:\/\/beams-experiments.com\/index.php\/tactical-decision-making-human\/#listItem","position":2,"name":"Task-DMT-H","previousItem":{"@type":"ListItem","@id":"https:\/\/beams-experiments.com#listItem","name":"Home"}}]},{"@type":"Organization","@id":"https:\/\/beams-experiments.com\/#organization","name":"beams-experiments.com","url":"https:\/\/beams-experiments.com\/"},{"@type":"WebPage","@id":"https:\/\/beams-experiments.com\/index.php\/tactical-decision-making-human\/#webpage","url":"https:\/\/beams-experiments.com\/index.php\/tactical-decision-making-human\/","name":"Task-DMT-H - beams-experiments.com","description":"GreenGrove Garden Services Case Study GreenGrove Garden Services \u2013 Case Study GreenGrove Garden Services, founded and owned by Mr. Hamilton, has been operational for five years. What started as a small enterprise with just Mr. Hamilton and a truck has now expanded to a fleet of three trucks equipped with the necessary tools. The business","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/beams-experiments.com\/#website"},"breadcrumb":{"@id":"https:\/\/beams-experiments.com\/index.php\/tactical-decision-making-human\/#breadcrumblist"},"datePublished":"2024-02-05T19:13:20+00:00","dateModified":"2024-09-06T08:00:05+01:00"},{"@type":"WebSite","@id":"https:\/\/beams-experiments.com\/#website","url":"https:\/\/beams-experiments.com\/","name":"beams-experiments.com","inLanguage":"en-US","publisher":{"@id":"https:\/\/beams-experiments.com\/#organization"}}]},"og:locale":"en_US","og:site_name":"beams-experiments.com -","og:type":"article","og:title":"Task-DMT-H - beams-experiments.com","og:description":"GreenGrove Garden Services Case Study GreenGrove Garden Services \u2013 Case Study GreenGrove Garden Services, founded and owned by Mr. Hamilton, has been operational for five years. What started as a small enterprise with just Mr. Hamilton and a truck has now expanded to a fleet of three trucks equipped with the necessary tools. The business","og:url":"https:\/\/beams-experiments.com\/index.php\/tactical-decision-making-human\/","article:published_time":"2024-02-05T19:13:20+00:00","article:modified_time":"2024-09-06T07:00:05+00:00","twitter:card":"summary_large_image","twitter:title":"Task-DMT-H - beams-experiments.com","twitter:description":"GreenGrove Garden Services Case Study GreenGrove Garden Services \u2013 Case Study GreenGrove Garden Services, founded and owned by Mr. Hamilton, has been operational for five years. What started as a small enterprise with just Mr. Hamilton and a truck has now expanded to a fleet of three trucks equipped with the necessary tools. The business"},"aioseo_meta_data":{"post_id":"1388","title":null,"description":null,"keywords":[],"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"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":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"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":"WebPage","isEnabled":true},"graphs":[]},"schema_type":"default","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":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2024-02-05 19:13:20","updated":"2025-06-06 19:58:06","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/beams-experiments.com\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tTask-DMT-H\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/beams-experiments.com"},{"label":"Task-DMT-H","link":"https:\/\/beams-experiments.com\/index.php\/tactical-decision-making-human\/"}],"_links":{"self":[{"href":"https:\/\/beams-experiments.com\/index.php\/wp-json\/wp\/v2\/pages\/1388","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/beams-experiments.com\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/beams-experiments.com\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/beams-experiments.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/beams-experiments.com\/index.php\/wp-json\/wp\/v2\/comments?post=1388"}],"version-history":[{"count":89,"href":"https:\/\/beams-experiments.com\/index.php\/wp-json\/wp\/v2\/pages\/1388\/revisions"}],"predecessor-version":[{"id":3503,"href":"https:\/\/beams-experiments.com\/index.php\/wp-json\/wp\/v2\/pages\/1388\/revisions\/3503"}],"wp:attachment":[{"href":"https:\/\/beams-experiments.com\/index.php\/wp-json\/wp\/v2\/media?parent=1388"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}