{"id":668,"date":"2026-03-15T00:56:53","date_gmt":"2026-03-14T23:56:53","guid":{"rendered":"https:\/\/boarscale.com\/?page_id=668"},"modified":"2026-03-15T00:59:33","modified_gmt":"2026-03-14T23:59:33","slug":"projet-le-verrou-de-precision","status":"publish","type":"page","link":"https:\/\/boarscale.com\/index.php\/projet-le-verrou-de-precision\/","title":{"rendered":"Projet: Le Verrou de Pr\u00e9cision"},"content":{"rendered":"\n<p>L&rsquo;addiction \u00e0 la dopamine transforme nos doigts en automates. Combien de fois avez-vous ouvert une application sans m\u00eame vous en rendre compte ? Le probl\u00e8me n&rsquo;est pas l&rsquo;application, c&rsquo;est <strong>l&rsquo;absence de friction<\/strong> entre l&rsquo;impulsion et l&rsquo;action.<\/p>\n\n\n\n<p>Le hack consiste \u00e0 installer un <strong>\u00ab\u00a0test de sobri\u00e9t\u00e9 cognitive\u00a0\u00bb<\/strong>. Avant d&rsquo;acc\u00e9der \u00e0 votre contenu \u00ab\u00a0plaisir\u00a0\u00bb, vous devez prouver que votre cortex pr\u00e9frontal est aux commandes via un micro-jeu de coordination.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">L&rsquo;Exercice : Le Test de Clic S\u00e9quentiel<\/h3>\n\n\n\n<p><em>Instructions : Cliquez sur les cercles dans l&rsquo;ordre num\u00e9rique (1, 2, 3&#8230;) en moins de 3 secondes pour d\u00e9bloquer l&rsquo;acc\u00e8s.<\/em><\/p>\n\n\n\n<div id=\"dopamine-gate\" style=\"background: #ffffff; border: 3px solid #000; padding: 30px; text-align: center; border-radius: 15px; min-height: 300px; position: relative; font-family: 'Courier New', Courier, monospace; box-shadow: 10px 10px 0px #000;\">\n    \n    <div id=\"gate-start\">\n        <h2 style=\"margin-top: 0;\">S\u00c9QUENCE DE LUCIDIT\u00c9<\/h2>\n        <p>Prouvez votre coordination pour d\u00e9bloquer l&rsquo;acc\u00e8s.<\/p>\n        <button onclick=\"startGame()\" style=\"background: #000; color: #fff; border: none; padding: 15px 30px; cursor: pointer; font-weight: bold; text-transform: uppercase;\">Initier le test<\/button>\n    <\/div>\n\n    <div id=\"game-area\" style=\"display: none; height: 200px; position: relative; background: #eee; border-radius: 10px; margin: 20px 0;\">\n        <\/div>\n\n    <div id=\"gate-success\" style=\"display: none;\">\n        <p style=\"font-weight: bold; color: #000;\">ACC\u00c8S AUTORIS\u00c9<\/p>\n        <button id=\"cat-button\" onclick=\"transformToCat()\" style=\"background: #ff4757; color: white; border: none; padding: 15px 30px; cursor: pointer; border-radius: 5px; font-size: 1.1em; transition: all 0.3s ease;\">\n            Cliquez pour acc\u00e9der au contenu\n        <\/button>\n        <div id=\"cat-display\" style=\"margin-top: 20px;\"><\/div>\n    <\/div>\n<\/div>\n\n<script>\nlet count = 1;\nconst totalCircles = 5;\nlet timer;\n\nfunction startGame() {\n    document.getElementById('gate-start').style.display = 'none';\n    const area = document.getElementById('game-area');\n    area.style.display = 'block';\n    area.innerHTML = '';\n    count = 1;\n\n    for (let i = 1; i <= totalCircles; i++) {\n        let btn = document.createElement('button');\n        btn.innerHTML = i;\n        btn.style.cssText = `\n            position: absolute;\n            left: ${Math.random() * 80}%;\n            top: ${Math.random() * 70}%;\n            width: 45px;\n            height: 45px;\n            border-radius: 50%;\n            border: 3px solid #000;\n            background: white;\n            font-weight: bold;\n            cursor: pointer;\n            z-index: 10;\n        `;\n        \n        btn.onclick = function() {\n            if (parseInt(this.innerHTML) === count) {\n                this.style.background = '#000';\n                this.style.color = 'white';\n                count++;\n                if (count > totalCircles) {\n                    clearTimeout(timer);\n                    showSuccess();\n                }\n            } else {\n                alert(\"Erreur de focus. Recommencez.\");\n                startGame();\n            }\n        };\n        area.appendChild(btn);\n    }\n\n    timer = setTimeout(() => {\n        alert(\"Temps \u00e9coul\u00e9. Votre attention a d\u00e9riv\u00e9.\");\n        document.getElementById('gate-start').style.display = 'block';\n        area.style.display = 'none';\n    }, 5000); \n}\n\nfunction showSuccess() {\n    document.getElementById('game-area').style.display = 'none';\n    document.getElementById('gate-success').style.display = 'block';\n}\n\nfunction transformToCat() {\n    const btn = document.getElementById('cat-button');\n    const display = document.getElementById('cat-display');\n    \n    \/\/ Effet de transformation\n    btn.innerHTML = \"CHARGEMENT DU F\u00c9LIN...\";\n    btn.style.background = \"#ffa502\";\n    \n    \/\/ Appel \u00e0 l'image de chat\n    const catImg = document.createElement('img');\n    catImg.src = \"https:\/\/cataas.com\/cat?width=300&height=200&timestamp=\" + new Date().getTime();\n    catImg.style.borderRadius = \"10px\";\n    catImg.style.maxWidth = \"100%\";\n    catImg.style.boxShadow = \"5px 5px 15px rgba(0,0,0,0.2)\";\n    \n    catImg.onload = function() {\n        btn.style.display = \"none\";\n        display.innerHTML = \"<p><em>R\u00e9compense s\u00e9rotoninergique alternative :<\/em><\/p>\";\n        display.appendChild(catImg);\n        display.innerHTML += \"<br><button onclick='location.reload()' style='margin-top:15px; border:none; background:none; text-decoration:underline; cursor:pointer;'>Recommencer le cycle<\/button>\";\n    };\n}\n<\/script>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>L&rsquo;addiction \u00e0 la dopamine transforme nos doigts en automates. Combien de fois avez-vous ouvert une application sans m\u00eame vous en rendre compte ? Le probl\u00e8me n&rsquo;est pas l&rsquo;application, c&rsquo;est l&rsquo;absence de friction entre l&rsquo;impulsion et l&rsquo;action. Le hack consiste \u00e0 installer un \u00ab\u00a0test de sobri\u00e9t\u00e9 cognitive\u00a0\u00bb. Avant d&rsquo;acc\u00e9der \u00e0 votre contenu \u00ab\u00a0plaisir\u00a0\u00bb, vous devez prouver [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-668","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/boarscale.com\/index.php\/wp-json\/wp\/v2\/pages\/668","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/boarscale.com\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/boarscale.com\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/boarscale.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/boarscale.com\/index.php\/wp-json\/wp\/v2\/comments?post=668"}],"version-history":[{"count":2,"href":"https:\/\/boarscale.com\/index.php\/wp-json\/wp\/v2\/pages\/668\/revisions"}],"predecessor-version":[{"id":671,"href":"https:\/\/boarscale.com\/index.php\/wp-json\/wp\/v2\/pages\/668\/revisions\/671"}],"wp:attachment":[{"href":"https:\/\/boarscale.com\/index.php\/wp-json\/wp\/v2\/media?parent=668"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}