{"id":811,"date":"2025-06-09T20:14:25","date_gmt":"2025-06-09T18:14:25","guid":{"rendered":"https:\/\/renor.it\/it-takes-ai-when-an-if-would-suffice\/"},"modified":"2025-12-20T15:54:18","modified_gmt":"2025-12-20T14:54:18","slug":"it-takes-ai-when-an-if-would-suffice","status":"publish","type":"post","link":"https:\/\/renor.it\/en\/blog\/artificial-intelligence-algorithms\/it-takes-ai-when-an-if-would-suffice\/","title":{"rendered":"\u201cIt takes AI!\u201d &#8211; When an if() would suffice."},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">The era of AI washing<\/h2>\n\n<p>Artificial intelligence is, without a shadow of a doubt, one of the most important technological developments and \u201cdiscoveries\u201d of our time. I use the term \u201cbreakthroughs\u201d in quotation marks because in fact, the theory behind AI dates all the way back to 1956, the year of the famous Dartmouth conference that sanctioned its official birth.   <br \/>Yet only in recent years has AI burst into the consumer and managerial universe, becoming a magic word good for every context: marketing, products, investor slides, company reports, etc.  <\/p>\n\n<p>The point is, if yesterday the fashion was the iPhone, today the fashion is artificial intelligence. Everyone wants to insert it everywhere, even where there is no need to integrate it. Sometimes, in fact, it is not only useless: it is less efficient, more fragile and more expensive to maintain than a classical finite-state algorithm. But it matters little: the important thing is to say that AI is there.   <\/p>\n\n<p>To better explain what I mean, I want to start with a glaring and absolutely real example.  <\/p>\n\n<p><strong>AI? No, just a while is enough: the case of the intelligent PDF <\/strong><\/p>\n\n<p>A short time ago for a staffing company we have as a client, I was asked to develop something to help them send all the CUs. Speaking of thousands of employees you can imagine the time it would have taken from the poor administrative workers to manually unpack a PDF containing all the CUs of all the employees, and send them one by one manually.   <\/p>\n\n<p>Let us then imagine that we have a textual PDF, containing thousands of Single Certifications, of each employee. Thousands of multiple documents from consecutive users. Each user has his CU that can have 8, 10, 12 pages and we want to divide it into as many PDFs as there are employees.    <\/p>\n\n<p>What would a developer do?<br \/>First it would open the file to be split, analyze it, and notice that the first page of each user&#8217;s CU contains the tax code in the header. Good: there is a pattern! <br \/>What do you think then?<\/p>\n\n<p><em>\u201cGreat! I write a script with a while that loops each page of the document starting from the first to the last, inside the loop I insert a regex that looks for a tax code, I validate it to make sure that what it fished for me is indeed a tax code and if the validation is successful, I mark that page as the start of a new CU of the employee. Continuing to process the other pages, as soon as I find another one, I save the whole previous block in a new PDF and send it as an attachment to an email extracting the employee&#8217;s data from the DB using as a search parameter just the tax code that I have in my nice variable and continue like that to the end.\u201d  <\/em><\/p>\n\n<p>Elegant solution. Linear. Readable. Reliable and above all very fast!   <br \/>No AI. Only structured logic, deterministic programming, and pattern analysis.   <\/p>\n\n<p>Yet they wanted AI: \u201cBut can&#8217;t we use AI to automatically identify where each document starts?\u201d<\/p>\n\n<p>Of course you can use AI, but using AI to figure out from which page to which page a CU starts and ends is like equipping yourself with a laser cannon to kill an ant. Also, AI has very long inference times, compared to the deterministic algorithm that processes huge masses of data in seconds. <\/p>\n\n<h2 class=\"wp-block-heading\">But what about the costs?<\/h2>\n\n<p>Of course! There are also costs! <br \/>Processing a document with thousands of employee CUs and tens of thousands of pages in addition to being time-consuming has costs that can be anything but insignificant. Depending on the model, one could spend even more than 500 euros to process tens of thousands of PDF pages.   <\/p>\n\n<h2 class=\"wp-block-heading\">Determinism vs. AI: two approaches compared <\/h2>\n\n<p>Once it is clear that in our PDF example the simplest and most effective solution is deterministic, it is worth reflecting more generally on when it makes sense to use a logical, predictable approach and when it may make sense to introduce an artificial intelligence layer.  <\/p>\n\n<h3 class=\"wp-block-heading\">The deterministic approach<\/h3>\n\n<p><strong>Logical, transparent, traceable<\/strong><\/p>\n\n<p>A deterministic algorithm is composed of explicit rules and predictable behavior. For every known input, the output is guaranteed and replicable. It does not learn, but does exactly what you tell it to do.    <\/p>\n\n<p>In the case of our PDF, the structure is clear because we have the fixed pattern of the tax code, variability is practically zero, and the target is logically definable. In these cases the deterministic approach has enormous advantages: it has a lot of computational efficiency and can therefore run successfully even on devices with minimal resources. It is reliable, easily testable, and can be debugged immediately. The whole flow is understandable even by a team not experienced in Machine Learning. And that is why going beyond this solution <strong>because we want AI<\/strong> is not only unwarranted but also counterproductive.      <\/p>\n\n<h3 class=\"wp-block-heading\">The AI-driven approach<\/h3>\n\n<p><strong>Flexible but poorly predictable, expensive, and not always justifiable.  <\/strong><\/p>\n\n<p>When we talk about AI we often mean systems capable of learning from examples (machine learning), generalizing patterns even in not perfectly defined contexts, handling ambiguity and noise in data. All of this is useful if and only if the data do not follow rigid patterns or patterns not known a priori, the context is chaotic, e.g., OCR on photos taken from smartphones that have unpredictable variability in quality, or lastly, explicit logic fails because the edge cases are infinite or otherwise unpredictable.   <\/p>\n\n<p>In our PDF example, there is no ambiguity, no noise: using a neural network to identify the tax code is wasteful, both technically and economically.  <\/p>\n\n<p>All this, however, does not stop certain companies, driven more by fashion than engineering, from coming up with solutions like, &#8220;let&#8217;s train an NLP model to recognize headers or let&#8217;s use GPT to segment documents, or let&#8217;s use a supervised classifier to figure out whether a document is the beginning or not&#8230; all to&#8230; <strong>Do what a preg_match()<\/strong> solves in one line of code.  <\/p>\n\n<p>Let us get our feet back on the ground and remember that AI for when impressive is only a tool. There is no such thing or at any rate, at least for a developer, there should be no war between deterministic approach and AI. They are both tools&#8230; But engineering logic teaches us to choose <strong>the simplest, most effective, and most justified tool for the problem it needs to solve<\/strong>. AI makes sense where determinism does not reach: computer vision on fuzzy images, speech recognition, predictions based on complex time series, deep semantic analysis. But where there is a rule, a predictable structure, a valid logic, AI is not only useless: it is noise, complication and cost.       <\/p>\n\n<h2 class=\"wp-block-heading\">Intelligence is not artificial, it is by design  <\/h2>\n\n<p>Artificial intelligence is an extraordinary tool, but like all powerful tools, it must be wielded judiciously. It is not a magic wand to wave over every problem, nor is it a key to slip into pitches to impress investors.   <\/p>\n\n<p>There is a fundamental difference between <strong>doing innovation<\/strong> and <strong>pretending innovation<\/strong>. Today, too many solutions are thought of starting with the tool and not the problem.   <br \/>The result is over-engineered systems that are expensive, fragile, often also unresponsive and ultimately useless.  <\/p>\n\n<p>Excuse me so much, but if you go into a company to solve problems for it and make it technologically efficient, the first thing you do is what? See where you can apply Artificial Intelligence? Or understand where the data comes from, how it moves, study how the company works, identify machinic processes that can be automated, and then propose solutions based on the problems found?  <\/p>\n\n<p>I would say with my eyes closed the second one!<\/p>\n\n<p>In the real world, good engineering is that which solves the problem in the simplest, most elegant and sustainable way possible. Even if it doesn&#8217;t make the news. Even if it doesn&#8217;t say AI-powered.  <\/p>\n\n<p>The future of computing will not be dominated by those who stick neural models everywhere, but by those who know how to choose when they really need to. By those who have the courage to say, <em>\u201cNo, an if() is enough here.\u201d<\/em> <\/p>\n\n<p>Perhaps it is from this technical sobriety that a new idea of competence can be reborn: one that is measured not in buzzwords but in design clarity, efficiency, and accountability.  <\/p>\n","protected":false},"excerpt":{"rendered":"<p>The era of AI washing Artificial intelligence is, without a shadow of a doubt, one of the most important technological developments and \u201cdiscoveries\u201d of our time. I use the term \u201cbreakthroughs\u201d in quotation marks because in fact, the theory behind AI dates all the way back to 1956, the year of the famous Dartmouth conference [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":806,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_writerflow_disable_suggestions":false,"footnotes":""},"categories":[1983,1976],"tags":[1843,1844,1348,1349,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1388,1856,1857,1858,1859,1860,1861,1862,1863,1864,1480],"class_list":["post-811","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-artificial-intelligence-algorithms","category-intelligenza-artificiale-algoritmi","tag-ai-costs","tag-ai-washing-en","tag-artificial-intelligence","tag-automation","tag-backend-development","tag-buzzword-en","tag-coding-en","tag-design-sobriety","tag-deterministic-algorithms","tag-efficient-scheduling","tag-emerging-technologies","tag-engineering-common-sense","tag-fashion-technology","tag-gpt-en","tag-if-statement-en","tag-machine-learning-en","tag-neural-networks-en","tag-overengineering-en","tag-pdf-automation-en","tag-regex-en","tag-software-design","tag-software-engineering","tag-software-engineering-ethics-en","tag-startup-tech-en","tag-technical-solutions","tag-technology-innovation"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.4 (Yoast SEO v27.6) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>\u201cIt takes AI!\u201d - When an if() would suffice. | RENOR &amp; Partners S.r.l.<\/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:\/\/renor.it\/en\/blog\/artificial-intelligence-algorithms\/it-takes-ai-when-an-if-would-suffice\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u201cIt takes AI!\u201d - When an if() would suffice.\" \/>\n<meta property=\"og:description\" content=\"The era of AI washing Artificial intelligence is, without a shadow of a doubt, one of the most important technological developments and \u201cdiscoveries\u201d of our time. I use the term \u201cbreakthroughs\u201d in quotation marks because in fact, the theory behind AI dates all the way back to 1956, the year of the famous Dartmouth conference [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/renor.it\/en\/blog\/artificial-intelligence-algorithms\/it-takes-ai-when-an-if-would-suffice\/\" \/>\n<meta property=\"og:site_name\" content=\"RENOR &amp; Partners S.r.l.\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/renorsrl\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/simone.renzi.3954\/\" \/>\n<meta property=\"article:published_time\" content=\"2025-06-09T18:14:25+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-20T14:54:18+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/renor.it\/wp-content\/uploads\/2025\/06\/aiovunque-1.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"1024\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"Simone Renzi\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Simone Renzi\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/renor.it\\\/en\\\/blog\\\/artificial-intelligence-algorithms\\\/it-takes-ai-when-an-if-would-suffice\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/renor.it\\\/en\\\/blog\\\/artificial-intelligence-algorithms\\\/it-takes-ai-when-an-if-would-suffice\\\/\"},\"author\":{\"name\":\"Simone Renzi\",\"@id\":\"https:\\\/\\\/renor.it\\\/en\\\/#\\\/schema\\\/person\\\/21343be04e5983a87f3a9a6182cf8795\"},\"headline\":\"\u201cIt takes AI!\u201d &#8211; When an if() would suffice.\",\"datePublished\":\"2025-06-09T18:14:25+00:00\",\"dateModified\":\"2025-12-20T14:54:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/renor.it\\\/en\\\/blog\\\/artificial-intelligence-algorithms\\\/it-takes-ai-when-an-if-would-suffice\\\/\"},\"wordCount\":1407,\"publisher\":{\"@id\":\"https:\\\/\\\/renor.it\\\/en\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/renor.it\\\/en\\\/blog\\\/artificial-intelligence-algorithms\\\/it-takes-ai-when-an-if-would-suffice\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/renor.it\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/aiovunque-1.webp\",\"keywords\":[\"AI costs\",\"AI washing\",\"artificial intelligence\",\"automation\",\"backend development\",\"buzzword\",\"coding\",\"design sobriety\",\"deterministic algorithms\",\"efficient scheduling\",\"emerging technologies\",\"engineering common sense\",\"fashion technology\",\"GPT\",\"if statement\",\"Machine Learning\",\"neural networks\",\"overengineering\",\"PDF automation\",\"regex\",\"software design\",\"software engineering\",\"software engineering ethics\",\"startup tech\",\"technical solutions\",\"Technology innovation\"],\"articleSection\":[\"Artificial Intelligence &amp; Algorithms\",\"Intelligenza Artificiale &amp; Algoritmi\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/renor.it\\\/en\\\/blog\\\/artificial-intelligence-algorithms\\\/it-takes-ai-when-an-if-would-suffice\\\/\",\"url\":\"https:\\\/\\\/renor.it\\\/en\\\/blog\\\/artificial-intelligence-algorithms\\\/it-takes-ai-when-an-if-would-suffice\\\/\",\"name\":\"\u201cIt takes AI!\u201d - When an if() would suffice. | RENOR &amp; Partners S.r.l.\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/renor.it\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/renor.it\\\/en\\\/blog\\\/artificial-intelligence-algorithms\\\/it-takes-ai-when-an-if-would-suffice\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/renor.it\\\/en\\\/blog\\\/artificial-intelligence-algorithms\\\/it-takes-ai-when-an-if-would-suffice\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/renor.it\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/aiovunque-1.webp\",\"datePublished\":\"2025-06-09T18:14:25+00:00\",\"dateModified\":\"2025-12-20T14:54:18+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/renor.it\\\/en\\\/blog\\\/artificial-intelligence-algorithms\\\/it-takes-ai-when-an-if-would-suffice\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/renor.it\\\/en\\\/blog\\\/artificial-intelligence-algorithms\\\/it-takes-ai-when-an-if-would-suffice\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/renor.it\\\/en\\\/blog\\\/artificial-intelligence-algorithms\\\/it-takes-ai-when-an-if-would-suffice\\\/#primaryimage\",\"url\":\"https:\\\/\\\/renor.it\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/aiovunque-1.webp\",\"contentUrl\":\"https:\\\/\\\/renor.it\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/aiovunque-1.webp\",\"width\":1024,\"height\":1024,\"caption\":\"Un confronto ironico tra semplicit\u00e0 ingegneristica e l\u2019uso modaiolo dell\u2019intelligenza artificiale: la voce della logica contro il fascino delle buzzword.\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/renor.it\\\/en\\\/blog\\\/artificial-intelligence-algorithms\\\/it-takes-ai-when-an-if-would-suffice\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/renor.it\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https:\\\/\\\/renor.it\\\/en\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Artificial Intelligence &amp; Algorithms\",\"item\":\"https:\\\/\\\/renor.it\\\/en\\\/blog\\\/artificial-intelligence-algorithms\\\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"\u201cIt takes AI!\u201d &#8211; When an if() would suffice.\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/renor.it\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/renor.it\\\/en\\\/\",\"name\":\"RENOR & Partners S.r.l.\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/renor.it\\\/en\\\/#organization\"},\"alternateName\":\"RENOR & Partners S.r.l.\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/renor.it\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/renor.it\\\/en\\\/#organization\",\"name\":\"RENOR & Partners S.r.l.\",\"url\":\"https:\\\/\\\/renor.it\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/renor.it\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/renor.it\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/logo-new-1.webp\",\"contentUrl\":\"https:\\\/\\\/renor.it\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/logo-new-1.webp\",\"width\":432,\"height\":146,\"caption\":\"RENOR & Partners S.r.l.\"},\"image\":{\"@id\":\"https:\\\/\\\/renor.it\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/renorsrl\",\"https:\\\/\\\/www.instagram.com\\\/renorpartners\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/renor-partners\\\/posts\\\/?feedView=all\"],\"description\":\"RENOR & Partners Srl \u00e8 una societ\u00e0 di consulenza tecnologica e ingegneristica specializzata in sviluppo software, cloud computing, integrazione di sistemi, intelligenza artificiale applicata e progettazione elettronica. L\u2019azienda supporta imprese e pubbliche amministrazioni nella realizzazione di soluzioni digitali affidabili, scalabili e orientate all\u2019efficienza, con un approccio pragmatico basato su competenze tecniche, progettazione su misura e innovazione concreta.\",\"email\":\"info@renor.it\",\"telephone\":\"3791489430\",\"legalName\":\"RENOR AND PARTNERS S.r.l.\",\"foundingDate\":\"2022-06-21\",\"vatID\":\"16768411007\",\"taxID\":\"16768411007\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"1\",\"maxValue\":\"10\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/renor.it\\\/en\\\/#\\\/schema\\\/person\\\/21343be04e5983a87f3a9a6182cf8795\",\"name\":\"Simone Renzi\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/54f81b51be6bda6d63a06a1cd6563d9b0d5778d7af4f0bda4e246fc3e5737e2e?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/54f81b51be6bda6d63a06a1cd6563d9b0d5778d7af4f0bda4e246fc3e5737e2e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/54f81b51be6bda6d63a06a1cd6563d9b0d5778d7af4f0bda4e246fc3e5737e2e?s=96&d=mm&r=g\",\"caption\":\"Simone Renzi\"},\"description\":\"Senior full-stack web engineer with over 20 years of experience in cloud architectures, AI, and SaaS solutions; member of Mensa Italia. Creator of platforms such as HR24.ai and Paghe.ai, he oversaw the web development of FNS, a neural network simulator cited in Scientific Reports (Nature Portfolio), and has collaborated on research projects with INFN \u2013 Laboratori Nazionali di Frascati, Universit\u00e0 di Roma \u201cTor Vergata\u201d, Universidad Complutense, Universidad Polit\u00e9cnica and Centro de Tecnolog\u00eda Biom\u00e9dica in Madrid. A classical pianist, he combines musical creativity and technological rigor in every project.\",\"sameAs\":[\"https:\\\/\\\/renor.it\",\"https:\\\/\\\/www.facebook.com\\\/simone.renzi.3954\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/simone-renzi\"],\"url\":\"https:\\\/\\\/renor.it\\\/en\\\/author\\\/thesimon\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"\u201cIt takes AI!\u201d - When an if() would suffice. | RENOR &amp; Partners S.r.l.","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:\/\/renor.it\/en\/blog\/artificial-intelligence-algorithms\/it-takes-ai-when-an-if-would-suffice\/","og_locale":"en_US","og_type":"article","og_title":"\u201cIt takes AI!\u201d - When an if() would suffice.","og_description":"The era of AI washing Artificial intelligence is, without a shadow of a doubt, one of the most important technological developments and \u201cdiscoveries\u201d of our time. I use the term \u201cbreakthroughs\u201d in quotation marks because in fact, the theory behind AI dates all the way back to 1956, the year of the famous Dartmouth conference [&hellip;]","og_url":"https:\/\/renor.it\/en\/blog\/artificial-intelligence-algorithms\/it-takes-ai-when-an-if-would-suffice\/","og_site_name":"RENOR &amp; Partners S.r.l.","article_publisher":"https:\/\/www.facebook.com\/renorsrl","article_author":"https:\/\/www.facebook.com\/simone.renzi.3954\/","article_published_time":"2025-06-09T18:14:25+00:00","article_modified_time":"2025-12-20T14:54:18+00:00","og_image":[{"width":1024,"height":1024,"url":"https:\/\/renor.it\/wp-content\/uploads\/2025\/06\/aiovunque-1.webp","type":"image\/webp"}],"author":"Simone Renzi","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Simone Renzi","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/renor.it\/en\/blog\/artificial-intelligence-algorithms\/it-takes-ai-when-an-if-would-suffice\/#article","isPartOf":{"@id":"https:\/\/renor.it\/en\/blog\/artificial-intelligence-algorithms\/it-takes-ai-when-an-if-would-suffice\/"},"author":{"name":"Simone Renzi","@id":"https:\/\/renor.it\/en\/#\/schema\/person\/21343be04e5983a87f3a9a6182cf8795"},"headline":"\u201cIt takes AI!\u201d &#8211; When an if() would suffice.","datePublished":"2025-06-09T18:14:25+00:00","dateModified":"2025-12-20T14:54:18+00:00","mainEntityOfPage":{"@id":"https:\/\/renor.it\/en\/blog\/artificial-intelligence-algorithms\/it-takes-ai-when-an-if-would-suffice\/"},"wordCount":1407,"publisher":{"@id":"https:\/\/renor.it\/en\/#organization"},"image":{"@id":"https:\/\/renor.it\/en\/blog\/artificial-intelligence-algorithms\/it-takes-ai-when-an-if-would-suffice\/#primaryimage"},"thumbnailUrl":"https:\/\/renor.it\/wp-content\/uploads\/2025\/06\/aiovunque-1.webp","keywords":["AI costs","AI washing","artificial intelligence","automation","backend development","buzzword","coding","design sobriety","deterministic algorithms","efficient scheduling","emerging technologies","engineering common sense","fashion technology","GPT","if statement","Machine Learning","neural networks","overengineering","PDF automation","regex","software design","software engineering","software engineering ethics","startup tech","technical solutions","Technology innovation"],"articleSection":["Artificial Intelligence &amp; Algorithms","Intelligenza Artificiale &amp; Algoritmi"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/renor.it\/en\/blog\/artificial-intelligence-algorithms\/it-takes-ai-when-an-if-would-suffice\/","url":"https:\/\/renor.it\/en\/blog\/artificial-intelligence-algorithms\/it-takes-ai-when-an-if-would-suffice\/","name":"\u201cIt takes AI!\u201d - When an if() would suffice. | RENOR &amp; Partners S.r.l.","isPartOf":{"@id":"https:\/\/renor.it\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/renor.it\/en\/blog\/artificial-intelligence-algorithms\/it-takes-ai-when-an-if-would-suffice\/#primaryimage"},"image":{"@id":"https:\/\/renor.it\/en\/blog\/artificial-intelligence-algorithms\/it-takes-ai-when-an-if-would-suffice\/#primaryimage"},"thumbnailUrl":"https:\/\/renor.it\/wp-content\/uploads\/2025\/06\/aiovunque-1.webp","datePublished":"2025-06-09T18:14:25+00:00","dateModified":"2025-12-20T14:54:18+00:00","breadcrumb":{"@id":"https:\/\/renor.it\/en\/blog\/artificial-intelligence-algorithms\/it-takes-ai-when-an-if-would-suffice\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/renor.it\/en\/blog\/artificial-intelligence-algorithms\/it-takes-ai-when-an-if-would-suffice\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/renor.it\/en\/blog\/artificial-intelligence-algorithms\/it-takes-ai-when-an-if-would-suffice\/#primaryimage","url":"https:\/\/renor.it\/wp-content\/uploads\/2025\/06\/aiovunque-1.webp","contentUrl":"https:\/\/renor.it\/wp-content\/uploads\/2025\/06\/aiovunque-1.webp","width":1024,"height":1024,"caption":"Un confronto ironico tra semplicit\u00e0 ingegneristica e l\u2019uso modaiolo dell\u2019intelligenza artificiale: la voce della logica contro il fascino delle buzzword."},{"@type":"BreadcrumbList","@id":"https:\/\/renor.it\/en\/blog\/artificial-intelligence-algorithms\/it-takes-ai-when-an-if-would-suffice\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/renor.it\/en\/"},{"@type":"ListItem","position":2,"name":"Blog","item":"https:\/\/renor.it\/en\/blog\/"},{"@type":"ListItem","position":3,"name":"Artificial Intelligence &amp; Algorithms","item":"https:\/\/renor.it\/en\/blog\/artificial-intelligence-algorithms\/"},{"@type":"ListItem","position":4,"name":"\u201cIt takes AI!\u201d &#8211; When an if() would suffice."}]},{"@type":"WebSite","@id":"https:\/\/renor.it\/en\/#website","url":"https:\/\/renor.it\/en\/","name":"RENOR & Partners S.r.l.","description":"","publisher":{"@id":"https:\/\/renor.it\/en\/#organization"},"alternateName":"RENOR & Partners S.r.l.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/renor.it\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/renor.it\/en\/#organization","name":"RENOR & Partners S.r.l.","url":"https:\/\/renor.it\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/renor.it\/en\/#\/schema\/logo\/image\/","url":"https:\/\/renor.it\/wp-content\/uploads\/2025\/12\/logo-new-1.webp","contentUrl":"https:\/\/renor.it\/wp-content\/uploads\/2025\/12\/logo-new-1.webp","width":432,"height":146,"caption":"RENOR & Partners S.r.l."},"image":{"@id":"https:\/\/renor.it\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/renorsrl","https:\/\/www.instagram.com\/renorpartners\/","https:\/\/www.linkedin.com\/company\/renor-partners\/posts\/?feedView=all"],"description":"RENOR & Partners Srl \u00e8 una societ\u00e0 di consulenza tecnologica e ingegneristica specializzata in sviluppo software, cloud computing, integrazione di sistemi, intelligenza artificiale applicata e progettazione elettronica. L\u2019azienda supporta imprese e pubbliche amministrazioni nella realizzazione di soluzioni digitali affidabili, scalabili e orientate all\u2019efficienza, con un approccio pragmatico basato su competenze tecniche, progettazione su misura e innovazione concreta.","email":"info@renor.it","telephone":"3791489430","legalName":"RENOR AND PARTNERS S.r.l.","foundingDate":"2022-06-21","vatID":"16768411007","taxID":"16768411007","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"1","maxValue":"10"}},{"@type":"Person","@id":"https:\/\/renor.it\/en\/#\/schema\/person\/21343be04e5983a87f3a9a6182cf8795","name":"Simone Renzi","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/54f81b51be6bda6d63a06a1cd6563d9b0d5778d7af4f0bda4e246fc3e5737e2e?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/54f81b51be6bda6d63a06a1cd6563d9b0d5778d7af4f0bda4e246fc3e5737e2e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/54f81b51be6bda6d63a06a1cd6563d9b0d5778d7af4f0bda4e246fc3e5737e2e?s=96&d=mm&r=g","caption":"Simone Renzi"},"description":"Senior full-stack web engineer with over 20 years of experience in cloud architectures, AI, and SaaS solutions; member of Mensa Italia. Creator of platforms such as HR24.ai and Paghe.ai, he oversaw the web development of FNS, a neural network simulator cited in Scientific Reports (Nature Portfolio), and has collaborated on research projects with INFN \u2013 Laboratori Nazionali di Frascati, Universit\u00e0 di Roma \u201cTor Vergata\u201d, Universidad Complutense, Universidad Polit\u00e9cnica and Centro de Tecnolog\u00eda Biom\u00e9dica in Madrid. A classical pianist, he combines musical creativity and technological rigor in every project.","sameAs":["https:\/\/renor.it","https:\/\/www.facebook.com\/simone.renzi.3954\/","https:\/\/www.linkedin.com\/in\/simone-renzi"],"url":"https:\/\/renor.it\/en\/author\/thesimon\/"}]}},"_links":{"self":[{"href":"https:\/\/renor.it\/en\/wp-json\/wp\/v2\/posts\/811","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/renor.it\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/renor.it\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/renor.it\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/renor.it\/en\/wp-json\/wp\/v2\/comments?post=811"}],"version-history":[{"count":0,"href":"https:\/\/renor.it\/en\/wp-json\/wp\/v2\/posts\/811\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/renor.it\/en\/wp-json\/wp\/v2\/media\/806"}],"wp:attachment":[{"href":"https:\/\/renor.it\/en\/wp-json\/wp\/v2\/media?parent=811"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/renor.it\/en\/wp-json\/wp\/v2\/categories?post=811"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/renor.it\/en\/wp-json\/wp\/v2\/tags?post=811"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}