{"id":19808,"date":"2026-02-26T07:11:51","date_gmt":"2026-02-26T05:11:51","guid":{"rendered":"https:\/\/www.juust.org\/?p=19808"},"modified":"2026-02-26T07:12:00","modified_gmt":"2026-02-26T05:12:00","slug":"nocode-ai","status":"publish","type":"post","link":"https:\/\/www.juust.org\/index.php\/nocode-ai\/2026\/02\/","title":{"rendered":"NoCode AI"},"content":{"rendered":"\n<p class=\"has-text-align-center\">Thessalonians 5:21 &#8220;\u201cTest everything; hold fast what is good.\u201d  <\/p>\n\n\n\n<p>When I learned programming AI in 1998, AI wasn\u2019t magic. It wasn\u2019t robots taking over the world. It was pattern recognition, statistics, and probability.<\/p>\n\n\n\n<p>That\u2019s it. No Magic.<\/p>\n\n\n\n<p>Artificial intelligence tried to imitate something humans had already been doing for millions of years.<\/p>\n\n\n\n<p>Imagine a group of early humans standing on a rocky hill. A tiger appears. Chaos ! People shout. Throw things. Swing sticks. Panic. Experiment. Eventually someone throws a stone and the tiger backs off. <\/p>\n\n\n\n<p>Stone gets a mental plus sign.<\/p>\n\n\n\n<p>Next day a black panther appears. It\u2019s not a tiger, but it looks similar. The brain searches its internal statistics: \u201cLast time: big striped predator \u2192 stones worked.\u201d So we try the stones first.<\/p>\n\n\n\n<p>That is intelligence in its raw form:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Recognize patterns.<\/li>\n\n\n\n<li>Reuse what worked before in similar situations.<\/li>\n\n\n\n<li>Adjust when it fails, try other solutions.<\/li>\n\n\n\n<li>Share the solution with the group.<\/li>\n<\/ul>\n\n\n\n<p>Humans became dominant not because we are the strongest, but because we are excellent at finding, copying, communicating, and improving solutions together. Groups that shared successful patterns survived more often. Those traits multiplied and became dominant traits.<\/p>\n\n\n\n<p>AI systems copy that principle.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">What a Large Language Model Actually Does<\/h2>\n\n\n\n<p>A Large Language Model is trained on enormous amounts of text to learn patterns. Under the hood, it calculates probabilities.<\/p>\n\n\n\n<p>Given a sentence, it predicts the most likely next word.<br \/>Then the next.<br \/>Then the next.<\/p>\n\n\n\n<p>It doesn\u2019t \u201cunderstand\u201d a tiger.<br \/>It predicts tiger-related words based on statistical patterns.<\/p>\n\n\n\n<p>It imitates intelligence by choosing the most probable next step.<\/p>\n\n\n\n<p>But here is the key difference:<\/p>\n\n\n\n<p>An LLM does not track its own long-term statistics during your conversation.<br \/>It does not independently discover new problems.<br \/>It does not improve itself in real time.<\/p>\n\n\n\n<p>That\u2019s why systems add feedback buttons. Human ratings are collected, and later the model is retrained. The learning happens outside the conversation, not inside it.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">My Simple 2-Out-Of-3 Strategy<\/h2>\n\n\n\n<p>In practical programming, I used a very simple decision system.<\/p>\n\n\n\n<p>Imagine a process that can choose between Solution A and Solution B.<\/p>\n\n\n\n<p>First run: A works.<br \/>Score: AAA.<\/p>\n\n\n\n<p>Next time A fails once. So we test B.<br \/>Score: AAB.<\/p>\n\n\n\n<p>Two out of three are still A \u2192 choose A.<\/p>\n\n\n\n<p>If failures continue, patterns shift:<br \/>ABA<br \/>ABB<\/p>\n\n\n\n<p>At some point B becomes statistically stronger.<\/p>\n\n\n\n<p>This is not fancy AI.<br \/>It is structured probability with memory.<\/p>\n\n\n\n<p>Keep score.<br \/>Pick the majority.<br \/>Adjust when trends imply a permanent change.<\/p>\n\n\n\n<p>Simple. Effective. <\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Real-World Example: Matching 1,800 Cost Centers<\/h2>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><a href=\"https:\/\/www.juust.org\/wp-content\/uploads\/2026\/02\/memory-game.avif\"><img fetchpriority=\"high\" decoding=\"async\" width=\"740\" height=\"740\" src=\"https:\/\/www.juust.org\/wp-content\/uploads\/2026\/02\/memory-game.avif\" alt=\"AI memory game\" class=\"wp-image-19870\" style=\"width:253px;height:auto\" srcset=\"https:\/\/www.juust.org\/wp-content\/uploads\/2026\/02\/memory-game.avif 740w, https:\/\/www.juust.org\/wp-content\/uploads\/2026\/02\/memory-game-300x300.jpg 300w, https:\/\/www.juust.org\/wp-content\/uploads\/2026\/02\/memory-game-150x150.jpg 150w\" sizes=\"(max-width: 740px) 100vw, 740px\" \/><\/a><\/figure>\n\n\n\n<p>I once had to match:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>1,800 cost centers (each with 6 attributes)<\/li>\n\n\n\n<li>1,500 bank statements (each with 5 attributes)<\/li>\n<\/ul>\n\n\n\n<p>In theory, that\u2019s up to 8,100,000 match operations.<\/p>\n\n\n\n<p>Brute force works.<br \/>But it\u2019s slow.<\/p>\n\n\n\n<p>After one full run, patterns appeared:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>600 matches happened between Cost Feature K1 and Bank Feature B1.<\/li>\n\n\n\n<li>300 matches between K1 and B2.<\/li>\n\n\n\n<li>And so on.<\/li>\n\n\n\n<li>an estimated 95% will remain the same next run<\/li>\n<\/ul>\n\n\n\n<p>So what do you do?<\/p>\n\n\n\n<p>You start next time with the most statistically successful pairing: K1-B1. <\/p>\n\n\n\n<p>If 95% of those 600 matches repeat reliably, you instantly eliminate thousands of unnecessary comparisons. Each direct rematch saves up to (5&#215;6) 30 match operations on 1.800 cost centers, 54.000 matching operations. Then you take the second most succesful matching pair (K1-B2) and only have to search 1200 costcenters, as 600 were matched in the first batch. That is search space minimization, an old technique. <\/p>\n\n\n\n<p>\u201cSmart search.\u201d<\/p>\n\n\n\n<p>Not by thinking harder.<br \/>By reusing stored success.<\/p>\n\n\n\n<p>Across the whole dataset, that eliminated roughly 95-98% of the search effort. If nothing changed, you don&#8217;t have to search for a solution, you already have it. <\/p>\n\n\n\n<p>That&#8217;s also the coder&#8217;s creed : DRY ~ Don&#8217;t Repeat Yourself. Reuse the solution parttern, code and write (standard) functions.<\/p>\n\n\n\n<p>Efficiency is often just memory applied as well. Same as with dynamic programming.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">ISO 9001 and the Military Mindset<\/h2>\n\n\n\n<p>Interestingly, quality standards like ISO 9001 are built on similar logic. The framework traces back to military standards developed in the United States to keep massive operations running reliably.<\/p>\n\n\n\n<p>When survival depends on logistics, discipline, and coordination, and covering each others back, you:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Define procedures.<\/li>\n\n\n\n<li>Standardize patterns.<\/li>\n\n\n\n<li>Measure everything.<\/li>\n\n\n\n<li>Improve continuously.<\/li>\n<\/ul>\n\n\n\n<p>That is our evolutionary survival method, our &#8216;intelligence&#8217; operation, translated into management.<\/p>\n\n\n\n<p>Define the pattern. Spot the problem, classify, test a solution pattern.<br \/>Execute it.<br \/>Measure it.<br \/>Change it or Improve it.<\/p>\n\n\n\n<p>Over and over.<\/p>\n\n\n\n<p>The difference is urgency.<\/p>\n\n\n\n<p>In the military, failure can mean life or death. That is the &#8216;tiger&#8217;, right there. In companies, the pressure is usually financial rather than existential. That changes behavior and mentality.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Discipline Is Learned, Not Installed<\/h2>\n\n\n\n<p>Young recruits entering the military often lack discipline, coordination skills, a sense of responsibility, and structured communication habits. The first phase is not combat training. It is behavioral standardization.<\/p>\n\n\n\n<p>Same with sailing, you have to get &#8216;onboarded&#8217;, and get used to a new rythm, a new way of life, learn your tasks and responsibilities, learn the terms and &#8216;command verbs&#8217;. Once you know the basics, you can work on any ship with any colleague. <\/p>\n\n\n\n<p>Companies experience something similar.<\/p>\n\n\n\n<p>New employees need time to learn:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Structured communication<\/li>\n\n\n\n<li>Process discipline<\/li>\n\n\n\n<li>Responsibilities<\/li>\n\n\n\n<li>Documentation habits<\/li>\n<\/ul>\n\n\n\n<p>Even something simple like riding a bicycle required structured training before you learned to signal your direction. But you need to learn the &#8216;rules&#8217; to get ahead safely in traffic.<\/p>\n\n\n\n<p>Communication is not automatic.<br \/>It is trained.<\/p>\n\n\n\n<p>And intelligent systems, whether human organizations or AI models, only perform well when patterns are clearly defined and feedback loops are active.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">The Big Picture<\/h2>\n\n\n\n<p>From early humans throwing stones\u2026<br \/>To statistical matching algorithms\u2026<br \/>To large language models\u2026<br \/>To ISO standards\u2026<\/p>\n\n\n\n<p>The core principles remain the same:<\/p>\n\n\n\n<p>Recognize patterns.<br \/>Track success.<br \/>Reuse what works.<br \/>Measure outcomes.<br \/>Adjust continuously.<\/p>\n\n\n\n<p>AI did not invent this logic.<\/p>\n\n\n\n<p>It mimicks our intelligence.<\/p>\n\n\n\n<p>And in many ways, we are still just very organized stone throwers, just armed with better statistics and better stones.<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>AI and ISO share the same core logic: recognize patterns, measure results, reuse what works, and continuously improve the system.<\/p>\n","protected":false},"author":5796,"featured_media":19868,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_sitemap_exclude":false,"_sitemap_priority":"","_sitemap_frequency":"","site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"set","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[484,457,102,305],"tags":[483,95],"class_list":["post-19808","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ai","category-economy","category-optimisation","category-programming","tag-ai","tag-juust"],"_links":{"self":[{"href":"https:\/\/www.juust.org\/index.php\/wp-json\/wp\/v2\/posts\/19808","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.juust.org\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.juust.org\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.juust.org\/index.php\/wp-json\/wp\/v2\/users\/5796"}],"replies":[{"embeddable":true,"href":"https:\/\/www.juust.org\/index.php\/wp-json\/wp\/v2\/comments?post=19808"}],"version-history":[{"count":3,"href":"https:\/\/www.juust.org\/index.php\/wp-json\/wp\/v2\/posts\/19808\/revisions"}],"predecessor-version":[{"id":19872,"href":"https:\/\/www.juust.org\/index.php\/wp-json\/wp\/v2\/posts\/19808\/revisions\/19872"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.juust.org\/index.php\/wp-json\/wp\/v2\/media\/19868"}],"wp:attachment":[{"href":"https:\/\/www.juust.org\/index.php\/wp-json\/wp\/v2\/media?parent=19808"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.juust.org\/index.php\/wp-json\/wp\/v2\/categories?post=19808"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.juust.org\/index.php\/wp-json\/wp\/v2\/tags?post=19808"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}