<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Manny Frank</title>
    <description>The latest articles on DEV Community by Manny Frank (@mannyfrank_07).</description>
    <link>https://dev.to/mannyfrank_07</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3939611%2F12642065-9d14-4eda-8ade-c55d75241dd8.jpg</url>
      <title>DEV Community: Manny Frank</title>
      <link>https://dev.to/mannyfrank_07</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mannyfrank_07"/>
    <language>en</language>
    <item>
      <title>Can Spec-Driven Development Make AI-Generated Code More Reliable?</title>
      <dc:creator>Manny Frank</dc:creator>
      <pubDate>Tue, 15 Sep 2026 11:03:03 +0000</pubDate>
      <link>https://dev.to/mannyfrank_07/can-spec-driven-development-make-ai-generated-code-more-reliable-a9o</link>
      <guid>https://dev.to/mannyfrank_07/can-spec-driven-development-make-ai-generated-code-more-reliable-a9o</guid>
      <description>&lt;p&gt;AI coding tools can produce code quickly, but speed does not solve unclear requirements. If an AI agent receives incomplete context, it may simply build the wrong feature faster.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://geekyants.com/antflow-ai" rel="noopener noreferrer"&gt;AntFlow AI&lt;/a&gt; approaches this problem through spec-driven development. It connects business intent, structured requirements, technical specifications, task planning, multi-agent implementation, independent verification, and repository delivery in one workflow.&lt;/p&gt;

&lt;p&gt;Instead of asking one AI agent to generate and approve its own work, AntFlow AI separates the process. Builder agents implement tasks, while a verifier agent reviews the output before it reaches a human-controlled approval stage.&lt;/p&gt;

&lt;h2&gt;
  
  
  Where could this approach be useful?
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Building an MVP when requirements are still evolving&lt;/li&gt;
&lt;li&gt;Breaking complex features into smaller, testable tasks&lt;/li&gt;
&lt;li&gt;Modernizing legacy applications without losing business context&lt;/li&gt;
&lt;li&gt;Reducing rework caused by misunderstood requirements&lt;/li&gt;
&lt;li&gt;Reviewing AI-generated code before merging it&lt;/li&gt;
&lt;li&gt;Coordinating development across existing GitHub or GitLab repositories&lt;/li&gt;
&lt;li&gt;Maintaining traceability in security-sensitive projects&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The platform is not positioned as a replacement for developers. Human teams still review requirements, approve important decisions, handle exceptions, and control final delivery.&lt;/p&gt;

&lt;p&gt;The interesting question is whether defining better specifications before implementation can make AI-assisted development more predictable without adding unnecessary documentation.&lt;/p&gt;

&lt;p&gt;Would your team trust AI-generated code more if every change could be traced back to an approved specification and independently verified before merging?&lt;/p&gt;

</description>
      <category>forum</category>
      <category>ai</category>
      <category>programming</category>
      <category>softwaredevelopment</category>
    </item>
    <item>
      <title>Building PCI DSS-Ready AI Finance Products: What Changes When a Chatbot Touches Payments</title>
      <dc:creator>Manny Frank</dc:creator>
      <pubDate>Tue, 15 Sep 2026 05:53:42 +0000</pubDate>
      <link>https://dev.to/mannyfrank_07/building-pci-dss-ready-ai-finance-products-what-changes-when-a-chatbot-touches-payments-29f1</link>
      <guid>https://dev.to/mannyfrank_07/building-pci-dss-ready-ai-finance-products-what-changes-when-a-chatbot-touches-payments-29f1</guid>
      <description>&lt;p&gt;AI chatbots in finance are moving well beyond answering account FAQs.&lt;/p&gt;

&lt;p&gt;They can retrieve financial information, assist with disputes, support loan workflows, help with payments, and increasingly interact with systems that can trigger real transactions.&lt;/p&gt;

&lt;p&gt;That changes the engineering problem.&lt;/p&gt;

&lt;p&gt;A chatbot that only answers questions can operate within a relatively controlled environment. A chatbot that can access payment information or influence a transaction becomes part of a much larger security and compliance surface.&lt;/p&gt;

&lt;p&gt;A recent &lt;a href="https://geekyants.com/blog/building-pci-dss-ready-ai-finance-products-chatbot-architecture-payment-security-and-production-challenges" rel="noopener noreferrer"&gt;analysis of PCI DSS-ready AI finance products&lt;/a&gt; explores this transition, particularly the architecture decisions required when AI, payment systems and financial data meet in the same product.&lt;/p&gt;

&lt;p&gt;The interesting part isn't simply making an AI chatbot "PCI compliant."&lt;/p&gt;

&lt;p&gt;It's designing the system so the AI doesn't need to handle sensitive payment data in the first place.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Real Problem With AI Finance Chatbots
&lt;/h2&gt;

&lt;p&gt;Financial institutions have used machine learning for years in areas such as fraud detection, credit scoring and risk management.&lt;/p&gt;

&lt;p&gt;Generative AI changes the interface.&lt;/p&gt;

&lt;p&gt;Instead of navigating several screens, a customer can ask:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"Why was my payment declined?"&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Or:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"Can you help me dispute this transaction?"&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Or:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"Can I make this payment now?"&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The interface becomes conversational, but the underlying workflow remains complicated.&lt;/p&gt;

&lt;p&gt;The chatbot may need to interact with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Customer identity systems&lt;/li&gt;
&lt;li&gt;Core banking platforms&lt;/li&gt;
&lt;li&gt;Payment gateways&lt;/li&gt;
&lt;li&gt;Fraud detection systems&lt;/li&gt;
&lt;li&gt;CRM platforms&lt;/li&gt;
&lt;li&gt;Account databases&lt;/li&gt;
&lt;li&gt;Knowledge bases&lt;/li&gt;
&lt;li&gt;Compliance systems&lt;/li&gt;
&lt;li&gt;Human support teams&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The AI model is therefore only one component in the architecture.&lt;/p&gt;

&lt;p&gt;The real challenge is controlling what happens between the user's message and the final transaction.&lt;/p&gt;

&lt;h2&gt;
  
  
  When Does a Finance Chatbot Enter PCI DSS Scope?
&lt;/h2&gt;

&lt;p&gt;This is one of the first questions teams should answer during architecture planning.&lt;/p&gt;

&lt;p&gt;A chatbot becomes relevant to PCI DSS when it can access, store, transmit or influence systems handling cardholder data. That can include the chat interface, backend services, logs, payment integrations and related infrastructure.&lt;/p&gt;

&lt;p&gt;The original analysis highlights an important architectural principle: &lt;strong&gt;the model should ideally never receive raw card data.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;That means things like PANs, CVVs and PINs shouldn't be passed into prompts, stored in conversation histories or accidentally captured by debugging logs.&lt;/p&gt;

&lt;p&gt;Instead, sensitive payment operations should be separated from the conversational layer.&lt;/p&gt;

&lt;p&gt;That distinction can dramatically reduce the compliance surface.&lt;/p&gt;

&lt;h2&gt;
  
  
  A Safer Architecture
&lt;/h2&gt;

&lt;p&gt;A production finance chatbot can be thought of as several controlled layers rather than one giant AI application.&lt;/p&gt;

&lt;h3&gt;
  
  
  1. Authentication and Access
&lt;/h3&gt;

&lt;p&gt;The user should be authenticated before the system exposes account-specific information.&lt;/p&gt;

&lt;p&gt;Short-lived sessions, appropriate authentication controls and inactivity timeouts help reduce the risk of unauthorized access.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Input Filtering
&lt;/h3&gt;

&lt;p&gt;User messages should pass through a filtering layer before reaching the model.&lt;/p&gt;

&lt;p&gt;This layer can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Detect payment card information&lt;/li&gt;
&lt;li&gt;Mask sensitive fields&lt;/li&gt;
&lt;li&gt;Block prohibited data&lt;/li&gt;
&lt;li&gt;Identify suspicious input&lt;/li&gt;
&lt;li&gt;Prevent sensitive information from reaching prompts&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is particularly important because users don't necessarily understand which information should or shouldn't be entered into a chatbot.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. AI Orchestration
&lt;/h3&gt;

&lt;p&gt;The orchestration layer determines what the model actually needs.&lt;/p&gt;

&lt;p&gt;A user might ask:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"What's my latest transaction?"&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The model doesn't necessarily need the user's complete financial record.&lt;/p&gt;

&lt;p&gt;The system can retrieve only the relevant information, transform it into an appropriate representation and provide that limited context to the model.&lt;/p&gt;

&lt;p&gt;This is where RAG becomes useful.&lt;/p&gt;

&lt;h2&gt;
  
  
  RAG vs Fine-Tuning for Financial AI
&lt;/h2&gt;

&lt;p&gt;For finance applications, teams often have to decide whether information should live in a retrieval system or be incorporated into model weights.&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Area&lt;/th&gt;
&lt;th&gt;RAG&lt;/th&gt;
&lt;th&gt;Fine-tuning&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Data freshness&lt;/td&gt;
&lt;td&gt;Easier to update&lt;/td&gt;
&lt;td&gt;Requires retraining&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Auditability&lt;/td&gt;
&lt;td&gt;Easier to trace to source&lt;/td&gt;
&lt;td&gt;Harder to trace&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Policy updates&lt;/td&gt;
&lt;td&gt;Can update knowledge source&lt;/td&gt;
&lt;td&gt;May require retraining&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Sensitive data exposure&lt;/td&gt;
&lt;td&gt;Can remain outside model&lt;/td&gt;
&lt;td&gt;Data may become embedded&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Governance&lt;/td&gt;
&lt;td&gt;Controls can be applied at retrieval&lt;/td&gt;
&lt;td&gt;Requires model-level controls&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Correction&lt;/td&gt;
&lt;td&gt;Remove or update source&lt;/td&gt;
&lt;td&gt;Model may retain learned behavior&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;For frequently changing financial policies and controlled knowledge bases, RAG can provide a more manageable starting point.&lt;/p&gt;

&lt;p&gt;It also makes it easier to identify where a response came from.&lt;/p&gt;

&lt;p&gt;That doesn't make RAG automatically secure, though.&lt;/p&gt;

&lt;p&gt;The retrieval layer itself needs access controls, data filtering and testing against unauthorized retrieval.&lt;/p&gt;

&lt;h2&gt;
  
  
  4. Guardrails Before Actions
&lt;/h2&gt;

&lt;p&gt;Generating an answer is one thing.&lt;/p&gt;

&lt;p&gt;Triggering an action is another.&lt;/p&gt;

&lt;p&gt;Imagine a user says:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"Transfer $5,000 to the account I used last month."&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;A language model shouldn't simply interpret that sentence and execute a transaction.&lt;/p&gt;

&lt;p&gt;The system needs policy checks.&lt;/p&gt;

&lt;p&gt;The guardrail layer can determine:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Is the user authorized?&lt;/li&gt;
&lt;li&gt;Is this transaction permitted?&lt;/li&gt;
&lt;li&gt;Does the amount exceed a threshold?&lt;/li&gt;
&lt;li&gt;Does this require additional authentication?&lt;/li&gt;
&lt;li&gt;Should a human approve it?&lt;/li&gt;
&lt;li&gt;Does the request look anomalous?&lt;/li&gt;
&lt;li&gt;Is the destination account allowed?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;High-risk actions can then be routed to human approval.&lt;/p&gt;

&lt;p&gt;This creates an important distinction between &lt;strong&gt;AI-assisted workflows&lt;/strong&gt; and &lt;strong&gt;AI-controlled workflows&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;For financial systems, keeping that boundary explicit is often more valuable than trying to maximize model autonomy.&lt;/p&gt;

&lt;h2&gt;
  
  
  5. Keep Payment Processing Outside the Chatbot
&lt;/h2&gt;

&lt;p&gt;One of the strongest architectural patterns is payment gateway isolation.&lt;/p&gt;

&lt;p&gt;Instead of allowing the chatbot to collect and process card information directly, the conversational interface can hand the user over to a secure payment component.&lt;/p&gt;

&lt;p&gt;For example:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Chatbot → Payment intent → Secure payment page → Payment gateway → Confirmation → Chatbot&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The chatbot can know that a payment was completed without ever seeing the underlying card information.&lt;/p&gt;

&lt;p&gt;Tokenization can provide another layer of separation.&lt;/p&gt;

&lt;p&gt;The system works with a token while the actual card information remains inside the appropriate payment infrastructure.&lt;/p&gt;

&lt;p&gt;This approach can reduce the number of components exposed to cardholder data.&lt;/p&gt;

&lt;h2&gt;
  
  
  6. Don't Forget the Logs
&lt;/h2&gt;

&lt;p&gt;This is an easy place to create an accidental security problem.&lt;/p&gt;

&lt;p&gt;Developers frequently log requests while debugging an AI application.&lt;/p&gt;

&lt;p&gt;But if a user's message contains payment information, that message could end up in:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Application logs&lt;/li&gt;
&lt;li&gt;Error logs&lt;/li&gt;
&lt;li&gt;Analytics platforms&lt;/li&gt;
&lt;li&gt;Tracing systems&lt;/li&gt;
&lt;li&gt;Prompt-management tools&lt;/li&gt;
&lt;li&gt;Conversation databases&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A system can therefore be secure at the payment gateway while leaking sensitive information through observability tooling.&lt;/p&gt;

&lt;p&gt;Production logging should deliberately mask sensitive fields.&lt;/p&gt;

&lt;p&gt;Audit trails should still capture enough information to reconstruct what happened without storing unnecessary cardholder data.&lt;/p&gt;

&lt;h2&gt;
  
  
  AI Governance Is Different From PCI Compliance
&lt;/h2&gt;

&lt;p&gt;PCI DSS addresses payment-card security.&lt;/p&gt;

&lt;p&gt;It doesn't solve every problem introduced by AI.&lt;/p&gt;

&lt;p&gt;A finance chatbot can still have problems involving:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Prompt injection&lt;/li&gt;
&lt;li&gt;Hallucinated financial guidance&lt;/li&gt;
&lt;li&gt;Unauthorized tool calls&lt;/li&gt;
&lt;li&gt;Insecure retrieval&lt;/li&gt;
&lt;li&gt;PII exposure&lt;/li&gt;
&lt;li&gt;Model drift&lt;/li&gt;
&lt;li&gt;Stale policies&lt;/li&gt;
&lt;li&gt;Excessive model permissions&lt;/li&gt;
&lt;li&gt;Poor human handoffs&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That's why AI governance needs to sit alongside traditional security controls.&lt;/p&gt;

&lt;p&gt;For higher-risk workflows, useful controls include:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Model versioning → prompt versioning → retrieval controls → tool permissions → human approval → audit logs → monitoring&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The goal isn't to make the model perfect.&lt;/p&gt;

&lt;p&gt;The goal is to make the surrounding system resilient when the model isn't perfect.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Production Problem Is Bigger Than the Prototype
&lt;/h2&gt;

&lt;p&gt;A prototype might successfully demonstrate:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;User asks a question → AI responds.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;A production system needs to handle:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;User authenticates → request is filtered → relevant context is retrieved → AI generates an output → policies evaluate it → tools are authorized → payment systems execute → transaction is logged → monitoring checks the workflow → user receives confirmation.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Every additional step creates another possible failure point.&lt;/p&gt;

&lt;p&gt;Common production problems include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;PCI scope expanding unexpectedly&lt;/li&gt;
&lt;li&gt;Payment APIs failing under load&lt;/li&gt;
&lt;li&gt;Sandbox and production environments sharing access&lt;/li&gt;
&lt;li&gt;Incomplete audit trails&lt;/li&gt;
&lt;li&gt;Sensitive information entering logs&lt;/li&gt;
&lt;li&gt;Slow responses caused by multiple security checks&lt;/li&gt;
&lt;li&gt;Poor handoff from chatbot to human support&lt;/li&gt;
&lt;li&gt;Third-party vendors with unclear data handling&lt;/li&gt;
&lt;li&gt;AI-generated responses becoming inconsistent&lt;/li&gt;
&lt;li&gt;Increasing inference and infrastructure costs&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is why compliance shouldn't be treated as a final checklist before launch.&lt;/p&gt;

&lt;p&gt;The architecture needs to account for it from the beginning.&lt;/p&gt;

&lt;h2&gt;
  
  
  Companies Working on AI, Payments and Financial Infrastructure
&lt;/h2&gt;

&lt;p&gt;Several companies are approaching this problem from different directions. They aren't identical competitors, but their work illustrates where the market is heading.&lt;/p&gt;

&lt;h3&gt;
  
  
  GeekyAnts
&lt;/h3&gt;

&lt;p&gt;GeekyAnts has also explored the engineering requirements behind PCI DSS-ready AI finance products.&lt;/p&gt;

&lt;p&gt;The company's recent analysis focuses on the boundary between the AI layer and payment infrastructure, including tokenization, input filtering, RAG, guardrails, payment gateway isolation, audit logging and production readiness. &lt;a href="https://geekyants.com/blog/building-pci-dss-ready-ai-finance-products-chatbot-architecture-payment-security-and-production-challenges" rel="noopener noreferrer"&gt;The full technical breakdown is available here&lt;/a&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  Stripe
&lt;/h3&gt;

&lt;p&gt;Stripe is increasingly combining payments infrastructure with AI-driven fraud detection, authorization optimization and payment experiences.&lt;/p&gt;

&lt;p&gt;Its current AI work includes fraud prevention, payment optimization and a payments foundation model trained on large transaction datasets. Stripe also maintains PCI DSS Level 1 certification for its payment infrastructure.&lt;/p&gt;

&lt;p&gt;The interesting architectural lesson is the separation between AI-driven decision-making and the underlying payment infrastructure.&lt;/p&gt;

&lt;p&gt;AI can optimize a transaction without necessarily exposing raw card information to every component involved in the workflow.&lt;/p&gt;

&lt;h3&gt;
  
  
  Accenture
&lt;/h3&gt;

&lt;p&gt;Accenture is approaching financial AI from the broader banking-modernization side.&lt;/p&gt;

&lt;p&gt;Its recent work around banking modernization emphasizes the relationship between AI, security, legacy infrastructure and composable architectures. It has also explored generative AI applications in commercial payments, including fraud detection, payment-data security and customer interactions.&lt;/p&gt;

&lt;p&gt;That matters because many financial institutions aren't starting with a clean architecture.&lt;/p&gt;

&lt;p&gt;They have decades of existing systems that AI needs to work with.&lt;/p&gt;

&lt;h3&gt;
  
  
  Thoughtworks
&lt;/h3&gt;

&lt;p&gt;Thoughtworks has been working on AI applications across banking, payments and fraud prevention.&lt;/p&gt;

&lt;p&gt;Its recent work on transaction foundation models is particularly interesting because it treats transaction intelligence as an end-to-end architecture involving data engineering, tokenization, model training, governance and production deployment.&lt;/p&gt;

&lt;p&gt;Its work on graph-based fraud detection also demonstrates how AI can be applied to payment networks rather than simply customer-facing chat interfaces.&lt;/p&gt;

&lt;p&gt;The useful takeaway isn't a particular chatbot implementation.&lt;/p&gt;

&lt;p&gt;It's the architectural principle behind it: &lt;strong&gt;keep sensitive payment operations separated from the AI conversation layer wherever possible.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;That reduces unnecessary exposure and gives security and compliance teams a clearer boundary to work with.&lt;/p&gt;

&lt;h2&gt;
  
  
  What a Production Checklist Should Look Like
&lt;/h2&gt;

&lt;p&gt;Before releasing an AI finance chatbot, teams can work through a checklist like this:&lt;/p&gt;

&lt;h3&gt;
  
  
  Data
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Is cardholder data prevented from reaching the model?&lt;/li&gt;
&lt;li&gt;Are sensitive fields masked?&lt;/li&gt;
&lt;li&gt;Is the retrieval layer free from unnecessary payment data?&lt;/li&gt;
&lt;li&gt;Are retention rules defined?&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Security
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Is authentication enforced before account access?&lt;/li&gt;
&lt;li&gt;Are privileged operations protected with stronger controls?&lt;/li&gt;
&lt;li&gt;Are secrets stored separately?&lt;/li&gt;
&lt;li&gt;Are production and test environments isolated?&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  AI
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Are prompts version controlled?&lt;/li&gt;
&lt;li&gt;Is model behavior evaluated regularly?&lt;/li&gt;
&lt;li&gt;Are prompt-injection attacks tested?&lt;/li&gt;
&lt;li&gt;Can the model trigger tools without approval?&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Payments
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Is card data handled by an appropriate payment environment?&lt;/li&gt;
&lt;li&gt;Are payment gateways isolated from the conversational layer?&lt;/li&gt;
&lt;li&gt;Is tokenization being used where appropriate?&lt;/li&gt;
&lt;li&gt;Are failed and partial transactions tested?&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Governance
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Can every important action be traced?&lt;/li&gt;
&lt;li&gt;Is human approval required for high-risk operations?&lt;/li&gt;
&lt;li&gt;Can the system be stopped or rolled back?&lt;/li&gt;
&lt;li&gt;Are third-party providers reviewed?&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Operations
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Is latency acceptable?&lt;/li&gt;
&lt;li&gt;Are failures monitored?&lt;/li&gt;
&lt;li&gt;Are logs protected?&lt;/li&gt;
&lt;li&gt;Is there a clear incident-response process?&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The Most Important Design Decision
&lt;/h2&gt;

&lt;p&gt;The most important decision may happen before the first prompt is written:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What does the AI actually need access to?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If the answer is "everything," the architecture probably needs another look.&lt;/p&gt;

&lt;p&gt;A well-designed finance AI system should expose the model to the minimum information and minimum set of actions required to complete its task.&lt;/p&gt;

&lt;p&gt;The payment system should remain responsible for payment processing.&lt;/p&gt;

&lt;p&gt;The identity system should remain responsible for identity.&lt;/p&gt;

&lt;p&gt;The policy layer should remain responsible for authorization.&lt;/p&gt;

&lt;p&gt;The AI should coordinate where it adds value without becoming an unrestricted gateway into the financial system.&lt;/p&gt;

&lt;p&gt;That separation becomes increasingly important as finance chatbots evolve from answering questions to taking actions.&lt;/p&gt;

&lt;h2&gt;
  
  
  Final Takeaway
&lt;/h2&gt;

&lt;p&gt;AI is making financial interfaces more conversational, but it is also pushing chatbots closer to the systems that actually move money.&lt;/p&gt;

&lt;p&gt;That changes the engineering requirements.&lt;/p&gt;

&lt;p&gt;A production-ready AI finance product needs more than a good model. It needs careful data boundaries, payment isolation, authentication, tokenization, retrieval controls, guardrails, auditability, monitoring and human oversight.&lt;/p&gt;

&lt;p&gt;The strongest implementations aren't necessarily the ones that give an AI agent the most control.&lt;/p&gt;

&lt;p&gt;They're the ones that give it &lt;strong&gt;enough control to be useful while keeping sensitive operations inside well-defined boundaries&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;For teams building financial AI products, PCI DSS should therefore be treated as an architecture constraint from day one not something to check after the chatbot already works.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>fintech</category>
      <category>security</category>
    </item>
    <item>
      <title>Do Software Development Awards Actually Matter When Choosing an Engineering Partner?</title>
      <dc:creator>Manny Frank</dc:creator>
      <pubDate>Fri, 28 Aug 2026 10:27:09 +0000</pubDate>
      <link>https://dev.to/mannyfrank_07/do-software-development-awards-actually-matter-when-choosing-an-engineering-partner-1fij</link>
      <guid>https://dev.to/mannyfrank_07/do-software-development-awards-actually-matter-when-choosing-an-engineering-partner-1fij</guid>
      <description>&lt;p&gt;Third-party awards can be useful when evaluating software companies, but I don’t think they should ever be the deciding factor.&lt;/p&gt;

&lt;p&gt;GeekyAnts was recently named a &lt;strong&gt;Summer 2026 Clutch Global Award winner&lt;/strong&gt;. Clutch recognized more than 400 companies across 54 IT and development categories, using factors such as verified client feedback, project success, industry expertise, and market presence.&lt;/p&gt;

&lt;p&gt;What makes the recognition more relevant is the work behind it. GeekyAnts currently operates across AI and intelligent systems, product engineering, enterprise modernization, mobile and web engineering, and digital customer experience. The company also reports completing more than 550 engagements since 2006.&lt;/p&gt;

&lt;p&gt;There’s more context in the &lt;a href="https://geekyants.com/blog/geekyants-recognized-as-a-summer-2026-clutch-global-award-winner" rel="noopener noreferrer"&gt;original GeekyAnts Clutch Global Award announcement&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;From a developer or engineering leader’s perspective, though, I’d still evaluate a company based on:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Relevant production projects&lt;/li&gt;
&lt;li&gt;Technical depth of the actual delivery team&lt;/li&gt;
&lt;li&gt;Architecture and modernization experience&lt;/li&gt;
&lt;li&gt;Client references and reviews&lt;/li&gt;
&lt;li&gt;Ability to handle changing requirements&lt;/li&gt;
&lt;li&gt;Support after the first release&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;An award can help a company make the shortlist. It cannot tell you whether that company is the right fit for your architecture, team, or product.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How much weight do you give Clutch reviews, awards, or similar third-party recognition when choosing a software development partner?&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>forum</category>
      <category>softwaredevelopment</category>
      <category>productivity</category>
      <category>ai</category>
    </item>
    <item>
      <title>5 Software Engineering Companies Worth Watching in 2026, and What Industry Awards Actually Tell You</title>
      <dc:creator>Manny Frank</dc:creator>
      <pubDate>Fri, 28 Aug 2026 05:43:54 +0000</pubDate>
      <link>https://dev.to/mannyfrank_07/5-software-engineering-companies-worth-watching-in-2026-and-what-industry-awards-actually-tell-you-33gg</link>
      <guid>https://dev.to/mannyfrank_07/5-software-engineering-companies-worth-watching-in-2026-and-what-industry-awards-actually-tell-you-33gg</guid>
      <description>&lt;p&gt;Choosing a software development company has become harder, not easier.&lt;/p&gt;

&lt;p&gt;Most established engineering firms now offer some combination of AI development, cloud modernization, application engineering, data platforms, mobile development, and digital transformation. Their websites often describe similar capabilities, which makes independent signals such as client reviews, case studies, technical partnerships, and industry awards more useful.&lt;/p&gt;

&lt;p&gt;But awards need context.&lt;/p&gt;

&lt;p&gt;Clutch announced its Summer 2026 Global Awards for IT and development on July 30, recognizing more than 400 companies across 54 categories. The companies were evaluated through Clutch's Ability to Deliver methodology, which considers verified client feedback, project success, industry expertise, and market presence.&lt;/p&gt;

&lt;p&gt;That makes the awards a useful screening signal. It does not automatically make every winner the right engineering company for every project.&lt;/p&gt;

&lt;p&gt;With that distinction in mind, here are five software engineering companies worth examining in 2026.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. GeekyAnts
&lt;/h2&gt;

&lt;p&gt;GeekyAnts recently received a Summer 2026 Clutch Global Award for its work across software development and AI-powered digital product engineering.&lt;/p&gt;

&lt;p&gt;According to the company's &lt;strong&gt;Summer 2026 Clutch Global Award announcement&lt;/strong&gt;, it currently has a 4.8 rating based on 116 Clutch client reviews and has completed more than 550 engagements. Its work spans AI systems, product engineering, enterprise modernization, mobile and web applications, and digital customer experience.&lt;/p&gt;

&lt;p&gt;For developers and technical leaders, the interesting part is the breadth of engineering involved.&lt;/p&gt;

&lt;p&gt;The company has traditionally been associated with frontend, mobile, and product development, but its recent direction extends into AI engineering, backend systems, cloud infrastructure, and modernization. That makes it more relevant for projects where the application layer and infrastructure cannot be treated as separate problems.&lt;/p&gt;

&lt;p&gt;The Clutch recognition adds third-party evidence to that positioning, but buyers should still look beyond the badge. Relevant case studies, architecture experience, seniority of the assigned engineering team, security requirements, and experience within the required industry are more useful indicators of fit.&lt;/p&gt;

&lt;p&gt;GeekyAnts is therefore worth considering particularly for organizations that want product engineering and newer AI capabilities within the same delivery relationship.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Backlink placement:&lt;/strong&gt; Hyperlink the phrase &lt;em&gt;Summer 2026 Clutch Global Award announcement&lt;/em&gt; above to the original GeekyAnts article.&lt;/p&gt;

&lt;h2&gt;
  
  
  2. Thoughtworks
&lt;/h2&gt;

&lt;p&gt;Thoughtworks remains one of the more established names in modern software engineering.&lt;/p&gt;

&lt;p&gt;Its current engineering work covers software delivery transformation, platform engineering, legacy modernization, data modernization, product development, and enterprise AI. Thoughtworks is also integrating AI tooling more deeply into the software development lifecycle through its AI/works platform.&lt;/p&gt;

&lt;p&gt;What makes Thoughtworks relevant is its long history of influencing how engineering organizations think about architecture, agile delivery, continuous integration, and software quality.&lt;/p&gt;

&lt;p&gt;That experience can matter when a company is not simply outsourcing development but changing how a large internal engineering organization operates.&lt;/p&gt;

&lt;p&gt;The trade-off is scope. A global consultancy may make more sense for complex transformation programs than for smaller, narrowly defined product builds.&lt;/p&gt;

&lt;h2&gt;
  
  
  3. EPAM
&lt;/h2&gt;

&lt;p&gt;EPAM is another company that sits firmly on the large-scale engineering side of the market.&lt;/p&gt;

&lt;p&gt;Its engineering practice covers architecture, software development, continuous testing, DevOps, cloud, data, security, and product development.&lt;/p&gt;

&lt;p&gt;That breadth becomes important for large organizations where a "software project" may involve dozens of systems, multiple cloud environments, complex integrations, security teams, data platforms, and regional requirements.&lt;/p&gt;

&lt;p&gt;EPAM has also been paying significant attention to how AI changes the engineering workflow. Its 2026 technology material discusses AI moving across the development lifecycle, from design and implementation through testing and operations.&lt;/p&gt;

&lt;p&gt;For large enterprise programs, EPAM's scale is an advantage. For a smaller product team, that same scale may not always be necessary.&lt;/p&gt;

&lt;p&gt;The important question is whether a project requires a global engineering organization or a smaller product-focused team with tighter communication loops.&lt;/p&gt;

&lt;h2&gt;
  
  
  4. Globant
&lt;/h2&gt;

&lt;p&gt;Globant has been moving aggressively toward an AI-native engineering model.&lt;/p&gt;

&lt;p&gt;In August 2026, the company introduced Glob.AI, a model built around AI Pods where AI agents perform defined engineering or business tasks under human supervision. The company is also experimenting with output-based or consumption-based pricing instead of relying entirely on traditional hourly delivery models.&lt;/p&gt;

&lt;p&gt;That is worth watching because software services pricing may change substantially as AI-assisted development becomes more capable.&lt;/p&gt;

&lt;p&gt;Globant has also achieved the AWS Generative AI Consulting Services Competency, reflecting experience deploying generative AI systems using technologies such as Amazon Bedrock and SageMaker.&lt;/p&gt;

&lt;p&gt;For companies exploring agentic software delivery, AI-assisted modernization, or enterprise-scale generative AI, Globant offers an interesting model.&lt;/p&gt;

&lt;p&gt;The challenge for buyers will be measuring whether AI-driven delivery actually improves quality and maintainability, rather than simply increasing output.&lt;/p&gt;

&lt;h2&gt;
  
  
  5. Slalom
&lt;/h2&gt;

&lt;p&gt;Slalom takes a somewhat different position because it combines engineering with broader technology and organizational consulting.&lt;/p&gt;

&lt;p&gt;Its capabilities span cloud, data, artificial intelligence, system implementation, experience design, and software engineering. Its current AI work focuses heavily on moving companies beyond isolated experiments and embedding AI into operational workflows.&lt;/p&gt;

&lt;p&gt;That distinction matters.&lt;/p&gt;

&lt;p&gt;Many AI initiatives fail to create meaningful impact not because a model cannot be built, but because the surrounding data, governance, workflows, infrastructure, and adoption strategy are incomplete.&lt;/p&gt;

&lt;p&gt;Slalom's approach may therefore suit companies where implementation needs to happen alongside organizational change.&lt;/p&gt;

&lt;p&gt;Its scale and consulting model may be excessive for straightforward application development, but potentially valuable when technology transformation crosses several business units.&lt;/p&gt;

&lt;h2&gt;
  
  
  Should Developers and CTOs Care About Awards?
&lt;/h2&gt;

&lt;p&gt;Yes, but only to a point.&lt;/p&gt;

&lt;p&gt;Clutch's methodology gives its awards more weight than a badge that companies simply purchase. Clutch states that its Global Awards are derived from organic rankings and verified client evidence, and sponsorship does not affect award selection.&lt;/p&gt;

&lt;p&gt;That makes an award useful during an initial shortlist.&lt;/p&gt;

&lt;p&gt;It should not replace technical due diligence.&lt;/p&gt;

&lt;p&gt;Before choosing an engineering partner, teams should still ask:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Who will actually work on the project?&lt;/li&gt;
&lt;li&gt;How senior are the engineers and architects?&lt;/li&gt;
&lt;li&gt;Can the company demonstrate similar systems already running in production?&lt;/li&gt;
&lt;li&gt;How does it approach security, testing, observability, and technical debt?&lt;/li&gt;
&lt;li&gt;Who owns the code, infrastructure, documentation, and intellectual property?&lt;/li&gt;
&lt;li&gt;How will AI-generated code be reviewed and governed?&lt;/li&gt;
&lt;li&gt;What happens when requirements change after development begins?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;These questions usually reveal more than a rankings page.&lt;/p&gt;

&lt;h2&gt;
  
  
  There Is No Universal "Best" Development Company
&lt;/h2&gt;

&lt;p&gt;GeekyAnts, Thoughtworks, EPAM, Globant, and Slalom occupy different parts of the software engineering market.&lt;/p&gt;

&lt;p&gt;GeekyAnts is particularly interesting around product engineering, application modernization, mobile, and emerging AI systems. Thoughtworks brings deep software engineering and transformation experience. EPAM offers substantial enterprise delivery scale. Globant is pushing aggressively into AI-native delivery models. Slalom combines engineering with cloud, data, AI, and organizational transformation.&lt;/p&gt;

&lt;p&gt;Calling any one of them universally "the best" would overlook the most important variable: the project.&lt;/p&gt;

&lt;p&gt;A 12-person product team building an AI-enabled application has very different requirements from a multinational organization modernizing hundreds of applications.&lt;/p&gt;

&lt;p&gt;Industry recognition such as the Summer 2026 Clutch Global Awards can make the initial shortlist easier. The final decision still needs to come from architecture fit, delivery evidence, technical capability, team quality, and the ability to maintain what gets built.&lt;/p&gt;

&lt;p&gt;That remains a much stronger engineering signal than an award badge on its own.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>programming</category>
      <category>cloud</category>
      <category>softwaredevelopment</category>
    </item>
    <item>
      <title>Cloud Cost Optimization Is an Engineering Problem, Not a Finance Problem</title>
      <dc:creator>Manny Frank</dc:creator>
      <pubDate>Fri, 14 Aug 2026 05:22:32 +0000</pubDate>
      <link>https://dev.to/mannyfrank_07/cloud-cost-optimization-is-an-engineering-problem-not-a-finance-problem-3999</link>
      <guid>https://dev.to/mannyfrank_07/cloud-cost-optimization-is-an-engineering-problem-not-a-finance-problem-3999</guid>
      <description>&lt;p&gt;There is a cloud-cost problem that engineering teams have normalized for far too long.&lt;/p&gt;

&lt;p&gt;The AWS bill arrives.&lt;/p&gt;

&lt;p&gt;Someone notices that it is higher than expected.&lt;/p&gt;

&lt;p&gt;Finance asks what happened.&lt;/p&gt;

&lt;p&gt;Engineering starts looking through dashboards.&lt;/p&gt;

&lt;p&gt;A few oversized instances are found, some forgotten environments are shut down, and everyone moves on.&lt;/p&gt;

&lt;p&gt;I think this approach is fundamentally wrong.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Cloud cost optimization should be an engineering discipline, not a quarterly finance exercise.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Infrastructure decisions directly determine how much a product costs to operate. If engineers aren't thinking about resource utilization, environment scheduling, database sizing and workload patterns while building systems, no amount of end-of-quarter cost reporting is going to solve the underlying problem.&lt;/p&gt;

&lt;p&gt;A recent DollarDash case study provides a useful example of what happens when teams actually investigate the infrastructure instead of simply accepting the AWS bill.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.youtube.com/watch?v=hTCs0XCN5NU" rel="noopener noreferrer"&gt;Watch the full DollarDash cloud cost optimization case study on YouTube&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The DollarDash case is interesting because the problem wasn't exotic
&lt;/h2&gt;

&lt;p&gt;DollarDash is described as a growing fintech platform whose AWS costs increased as its infrastructure expanded.&lt;/p&gt;

&lt;p&gt;More services.&lt;/p&gt;

&lt;p&gt;More environments.&lt;/p&gt;

&lt;p&gt;More teams.&lt;/p&gt;

&lt;p&gt;More infrastructure.&lt;/p&gt;

&lt;p&gt;But the interesting part wasn't that AWS was expensive.&lt;/p&gt;

&lt;p&gt;It was that nobody had a clear picture of &lt;strong&gt;what was actually driving the cost&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;The case study identified several familiar sources of waste:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Idle load balancers&lt;/li&gt;
&lt;li&gt;Oversized databases&lt;/li&gt;
&lt;li&gt;Test and staging environments running continuously&lt;/li&gt;
&lt;li&gt;ECS resources that didn't match actual traffic&lt;/li&gt;
&lt;li&gt;Infrastructure that had grown without continuous cost review&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;None of these problems require some revolutionary cloud technology to solve.&lt;/p&gt;

&lt;p&gt;They require visibility and engineering discipline.&lt;/p&gt;

&lt;p&gt;That is exactly why I think the case is more interesting than the headline number.&lt;/p&gt;

&lt;h2&gt;
  
  
  A 60% reduction is impressive—but the method matters more
&lt;/h2&gt;

&lt;p&gt;According to the case study, DollarDash's monthly AWS spend dropped from approximately &lt;strong&gt;$8,100 to $3,300&lt;/strong&gt;, representing a reported 60% reduction over one quarter and more than $57,000 in annualized savings.&lt;/p&gt;

&lt;p&gt;The important detail is how the reduction was achieved.&lt;/p&gt;

&lt;p&gt;The work involved auditing the AWS environment using tools such as CloudWatch, Cost Explorer and Terraform, then making relatively practical infrastructure changes:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Removing idle resources&lt;/li&gt;
&lt;li&gt;Right-sizing ECS tasks&lt;/li&gt;
&lt;li&gt;Right-sizing database instances&lt;/li&gt;
&lt;li&gt;Scheduling staging environments around active usage&lt;/li&gt;
&lt;li&gt;Reviewing infrastructure against actual traffic&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;That's not "AI magically reduced the AWS bill."&lt;/p&gt;

&lt;p&gt;It's much less glamorous.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Measure → identify waste → change infrastructure → measure again.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;And honestly, that's the kind of cloud optimization I trust more.&lt;/p&gt;

&lt;h2&gt;
  
  
  My unpopular opinion: most cloud bills are architecture feedback
&lt;/h2&gt;

&lt;p&gt;A large cloud bill isn't automatically a problem.&lt;/p&gt;

&lt;p&gt;If infrastructure costs increase because customer usage is increasing, that's a good problem to have.&lt;/p&gt;

&lt;p&gt;If costs increase because your product is generating more revenue, the bill may be perfectly rational.&lt;/p&gt;

&lt;p&gt;The problem is unexplained infrastructure growth.&lt;/p&gt;

&lt;p&gt;When costs rise but nobody can answer &lt;em&gt;why&lt;/em&gt;, you've lost architectural visibility.&lt;/p&gt;

&lt;p&gt;That's where FinOps becomes interesting.&lt;/p&gt;

&lt;p&gt;FinOps shouldn't exist as a finance department that tells engineers to spend less.&lt;/p&gt;

&lt;p&gt;It should create a feedback loop between:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Engineering → infrastructure → usage → cost → business value&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Without that loop, engineers optimize for performance while finance optimizes for budgets.&lt;/p&gt;

&lt;p&gt;Those goals eventually collide.&lt;/p&gt;

&lt;h2&gt;
  
  
  The first thing I'd investigate: idle infrastructure
&lt;/h2&gt;

&lt;p&gt;Idle infrastructure is probably the least exciting and most reliable place to start.&lt;/p&gt;

&lt;p&gt;A database doesn't know whether anyone is using it.&lt;/p&gt;

&lt;p&gt;A load balancer doesn't care whether traffic is meaningful.&lt;/p&gt;

&lt;p&gt;A development environment doesn't know that the team went home Friday afternoon.&lt;/p&gt;

&lt;p&gt;Cloud infrastructure is obedient.&lt;/p&gt;

&lt;p&gt;If you provision it, it keeps running until something tells it to stop.&lt;/p&gt;

&lt;p&gt;That's why staging and development environments are particularly easy targets.&lt;/p&gt;

&lt;p&gt;If an environment is only needed during working hours, why should it necessarily run 24/7?&lt;/p&gt;

&lt;p&gt;The DollarDash example makes this point particularly well: scheduling non-production environments around active usage was one of the changes used to reduce unnecessary spend.&lt;/p&gt;

&lt;p&gt;It's boring.&lt;/p&gt;

&lt;p&gt;It's also effective.&lt;/p&gt;

&lt;h2&gt;
  
  
  Right-sizing beats blindly buying discounts
&lt;/h2&gt;

&lt;p&gt;Another common cloud optimization mistake is jumping straight to Reserved Instances or Savings Plans.&lt;/p&gt;

&lt;p&gt;Those can absolutely reduce costs.&lt;/p&gt;

&lt;p&gt;But there is little point getting a discount on infrastructure you shouldn't have been running in the first place.&lt;/p&gt;

&lt;p&gt;Imagine you're paying for a database instance that is significantly larger than the workload requires.&lt;/p&gt;

&lt;p&gt;Getting a discount on that oversized instance doesn't solve the architectural problem.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;First optimize what you consume. Then optimize what you pay for.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;That's an important distinction.&lt;/p&gt;

&lt;h2&gt;
  
  
  AWS gives you the tools. That doesn't mean you're using them well.
&lt;/h2&gt;

&lt;p&gt;AWS already provides a considerable amount of cost visibility through services such as Cost Explorer and CloudWatch.&lt;/p&gt;

&lt;p&gt;Terraform also gives engineering teams a way to make infrastructure changes reproducible and reviewable.&lt;/p&gt;

&lt;p&gt;The problem is rarely the total absence of tools.&lt;/p&gt;

&lt;p&gt;The problem is usually that nobody owns the continuous optimization loop.&lt;/p&gt;

&lt;p&gt;And that's why I don't think "we already have AWS Cost Explorer" is a sufficient FinOps strategy.&lt;/p&gt;

&lt;p&gt;A dashboard isn't an optimization strategy.&lt;/p&gt;

&lt;p&gt;A dashboard tells you what happened.&lt;/p&gt;

&lt;p&gt;Engineering has to decide what to do about it.&lt;/p&gt;

&lt;h1&gt;
  
  
  The Companies I'd Watch in Cloud Cost Optimization
&lt;/h1&gt;

&lt;p&gt;The cloud FinOps market is crowded, so I wouldn't put every vendor into the same bucket.&lt;/p&gt;

&lt;p&gt;Some are focused on visibility.&lt;/p&gt;

&lt;p&gt;Some specialize in Kubernetes.&lt;/p&gt;

&lt;p&gt;Some automate cloud commitments.&lt;/p&gt;

&lt;p&gt;Others connect infrastructure costs to business-unit or product-level economics.&lt;/p&gt;

&lt;p&gt;Here are the companies I'd pay attention to based on that distinction.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. CloudZero — Best fit for cost intelligence
&lt;/h2&gt;

&lt;p&gt;CloudZero is interesting because it pushes the conversation beyond "how much did AWS cost?" toward questions such as:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What does this feature, customer, product or workload actually cost?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Its platform focuses heavily on dimensional cost allocation and unit economics, including AI-related spending.&lt;/p&gt;

&lt;p&gt;That direction makes sense to me.&lt;/p&gt;

&lt;p&gt;Cloud cost optimization becomes much more useful when engineers can connect infrastructure spending to something the business understands.&lt;/p&gt;

&lt;p&gt;A $10,000 AWS bill isn't inherently meaningful.&lt;/p&gt;

&lt;p&gt;$4.20 of infrastructure cost per transaction is.&lt;/p&gt;

&lt;h2&gt;
  
  
  2. ProsperOps — Strongest case for automation
&lt;/h2&gt;

&lt;p&gt;ProsperOps takes a different approach.&lt;/p&gt;

&lt;p&gt;Rather than focusing primarily on cost visibility, it automates cloud commitment and resource optimization across major cloud providers. Its platform combines discount management with workload optimization.&lt;/p&gt;

&lt;p&gt;This is where I think FinOps is heading.&lt;/p&gt;

&lt;p&gt;Manual spreadsheet-driven optimization doesn't scale particularly well.&lt;/p&gt;

&lt;p&gt;If usage patterns change constantly, the optimization process should become increasingly automated too.&lt;/p&gt;

&lt;h2&gt;
  
  
  3. CAST AI — Particularly interesting for Kubernetes-heavy teams
&lt;/h2&gt;

&lt;p&gt;Kubernetes creates another layer of cloud-cost complexity.&lt;/p&gt;

&lt;p&gt;Clusters can have significant amounts of unused or poorly allocated capacity, making optimization more difficult than simply looking at the AWS account-level bill.&lt;/p&gt;

&lt;p&gt;CAST AI is worth watching for organizations where Kubernetes is central to their infrastructure. Industry comparisons also place CAST AI specifically in the Kubernetes optimization category.&lt;/p&gt;

&lt;p&gt;For Kubernetes-heavy environments, I would rather use tooling that understands workload scheduling and cluster economics than rely exclusively on general cloud billing dashboards.&lt;/p&gt;

&lt;h2&gt;
  
  
  4. Apptio Cloudability — Enterprise FinOps
&lt;/h2&gt;

&lt;p&gt;For large enterprises, cloud cost optimization is rarely just about engineers finding unused instances.&lt;/p&gt;

&lt;p&gt;There are multiple cloud accounts, business units, teams, compliance requirements and financial stakeholders.&lt;/p&gt;

&lt;p&gt;Apptio Cloudability is therefore relevant to the enterprise FinOps category, particularly around visibility, allocation and governance.&lt;/p&gt;

&lt;p&gt;Its strength is less about a single engineering trick and more about bringing cloud economics into enterprise financial management.&lt;/p&gt;

&lt;h2&gt;
  
  
  5. Vantage — Simpler cost visibility
&lt;/h2&gt;

&lt;p&gt;Vantage is another name worth considering for teams that want cloud cost visibility without immediately moving into a highly complex enterprise FinOps setup.&lt;/p&gt;

&lt;p&gt;This category matters because not every company needs a massive cloud economics platform.&lt;/p&gt;

&lt;p&gt;Sometimes the first requirement is simply:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Show me where the money is going.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Once that's understood, teams can decide whether they need deeper automation.&lt;/p&gt;

&lt;h2&gt;
  
  
  6. AWS Cost Explorer — Don't overlook the native option
&lt;/h2&gt;

&lt;p&gt;This might be the least fashionable recommendation in the list.&lt;/p&gt;

&lt;p&gt;It may also be the most practical starting point for many AWS teams.&lt;/p&gt;

&lt;p&gt;AWS Cost Explorer provides native visibility into AWS spending and usage. Industry comparisons continue to position it as a natural starting point for AWS-native organizations.&lt;/p&gt;

&lt;p&gt;My opinion here is pretty strong:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Don't buy a third-party FinOps platform just because your AWS bill is confusing.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;First understand what AWS already provides.&lt;/p&gt;

&lt;p&gt;Then identify the gaps.&lt;/p&gt;

&lt;p&gt;Only after that should you decide whether external tooling is justified.&lt;/p&gt;

&lt;h2&gt;
  
  
  7. GeekyAnts — The engineering implementation layer
&lt;/h2&gt;

&lt;p&gt;GeekyAnts is a different kind of entry on this list.&lt;/p&gt;

&lt;p&gt;It's not a cloud cost management SaaS platform competing directly with CloudZero or ProsperOps.&lt;/p&gt;

&lt;p&gt;Its relevance is on the engineering side: helping teams build, modernize and optimize software systems where infrastructure decisions have a direct impact on performance and cost.&lt;/p&gt;

&lt;p&gt;The DollarDash example is useful in this context because the reported savings came from practical engineering changes rather than replacing the entire infrastructure stack.&lt;/p&gt;

&lt;p&gt;That distinction matters.&lt;/p&gt;

&lt;p&gt;I'd separate &lt;strong&gt;cloud cost optimization software&lt;/strong&gt; from &lt;strong&gt;engineering teams that execute cloud optimization work&lt;/strong&gt; rather than pretending they're the same category.&lt;/p&gt;

&lt;h1&gt;
  
  
  Why I Think Engineering Teams Should Own Cloud Cost
&lt;/h1&gt;

&lt;p&gt;This is where I'll take a side.&lt;/p&gt;

&lt;p&gt;I don't think cloud cost should primarily belong to finance.&lt;/p&gt;

&lt;p&gt;Finance should absolutely have visibility.&lt;/p&gt;

&lt;p&gt;But engineering should have responsibility.&lt;/p&gt;

&lt;p&gt;Why?&lt;/p&gt;

&lt;p&gt;Because engineers make most of the decisions that generate the bill.&lt;/p&gt;

&lt;p&gt;They decide:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;How many services exist&lt;/li&gt;
&lt;li&gt;How databases are sized&lt;/li&gt;
&lt;li&gt;How much compute workloads receive&lt;/li&gt;
&lt;li&gt;Whether environments run continuously&lt;/li&gt;
&lt;li&gt;How workloads scale&lt;/li&gt;
&lt;li&gt;How much data is retained&lt;/li&gt;
&lt;li&gt;Which architecture patterns are used&lt;/li&gt;
&lt;li&gt;Whether infrastructure is automatically provisioned&lt;/li&gt;
&lt;li&gt;How resources are scheduled&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Finance can't optimize those decisions from a spreadsheet.&lt;/p&gt;

&lt;p&gt;Engineers can.&lt;/p&gt;

&lt;h2&gt;
  
  
  Cost should become an engineering metric
&lt;/h2&gt;

&lt;p&gt;Teams already care about:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Latency&lt;/li&gt;
&lt;li&gt;Availability&lt;/li&gt;
&lt;li&gt;Error rates&lt;/li&gt;
&lt;li&gt;Throughput&lt;/li&gt;
&lt;li&gt;Deployment frequency&lt;/li&gt;
&lt;li&gt;Incident rates&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Cloud cost belongs in the same conversation.&lt;/p&gt;

&lt;p&gt;Imagine a deployment review where the team can see:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Latency improved 15%, availability remained unchanged, and cost per transaction dropped 8%.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;That's a much more useful engineering conversation than:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;AWS spend increased by 12% this month.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The first connects infrastructure to product performance.&lt;/p&gt;

&lt;p&gt;The second is just an invoice.&lt;/p&gt;

&lt;h1&gt;
  
  
  The 5-Step Cloud Cost Optimization Loop I'd Use
&lt;/h1&gt;

&lt;p&gt;If I were starting from scratch, I wouldn't begin by purchasing a FinOps platform.&lt;/p&gt;

&lt;p&gt;I'd start with this:&lt;/p&gt;

&lt;h3&gt;
  
  
  1. Establish ownership
&lt;/h3&gt;

&lt;p&gt;Someone needs to be responsible for cloud economics.&lt;/p&gt;

&lt;p&gt;Not necessarily a full-time FinOps team.&lt;/p&gt;

&lt;p&gt;But someone needs to own the feedback loop.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Map spend to workloads
&lt;/h3&gt;

&lt;p&gt;Don't stop at:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;AWS costs $X.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Break it down by:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Product&lt;/li&gt;
&lt;li&gt;Environment&lt;/li&gt;
&lt;li&gt;Service&lt;/li&gt;
&lt;li&gt;Team&lt;/li&gt;
&lt;li&gt;Database&lt;/li&gt;
&lt;li&gt;Compute&lt;/li&gt;
&lt;li&gt;Workload&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  3. Find obvious waste
&lt;/h3&gt;

&lt;p&gt;Look for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Idle resources&lt;/li&gt;
&lt;li&gt;Oversized instances&lt;/li&gt;
&lt;li&gt;Unused storage&lt;/li&gt;
&lt;li&gt;Forgotten environments&lt;/li&gt;
&lt;li&gt;Unnecessary data retention&lt;/li&gt;
&lt;li&gt;Underutilized compute&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  4. Automate repetitive decisions
&lt;/h3&gt;

&lt;p&gt;If an environment can safely shut down outside working hours, automate it.&lt;/p&gt;

&lt;p&gt;If resources can be right-sized based on predictable utilization, automate the recommendation—or the action where appropriate.&lt;/p&gt;

&lt;h3&gt;
  
  
  5. Track unit economics
&lt;/h3&gt;

&lt;p&gt;Eventually, the question shouldn't be:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"Did we reduce our AWS bill?"&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;It should be:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"Did we reduce the infrastructure cost required to deliver the product?"&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;That's a much harder metric.&lt;/p&gt;

&lt;p&gt;It's also much more valuable.&lt;/p&gt;

&lt;h1&gt;
  
  
  Don't Chase the Biggest Percentage
&lt;/h1&gt;

&lt;p&gt;One final warning.&lt;/p&gt;

&lt;p&gt;A 60% reduction sounds fantastic.&lt;/p&gt;

&lt;p&gt;But teams shouldn't make the mistake of turning &lt;strong&gt;60%&lt;/strong&gt; into the objective.&lt;/p&gt;

&lt;p&gt;The objective isn't to make the AWS bill as small as possible.&lt;/p&gt;

&lt;p&gt;The objective is to make infrastructure &lt;strong&gt;efficient for the workload it supports&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Cutting resources until production becomes unreliable isn't optimization.&lt;/p&gt;

&lt;p&gt;Neither is aggressively buying long-term commitments for workloads that are about to change.&lt;/p&gt;

&lt;p&gt;Neither is shutting down infrastructure that a development team genuinely needs.&lt;/p&gt;

&lt;p&gt;The right target is the economic sweet spot between:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;cost + performance + reliability + flexibility.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;That's why I prefer the engineering-first FinOps approach.&lt;/p&gt;

&lt;h1&gt;
  
  
  My Verdict
&lt;/h1&gt;

&lt;p&gt;Cloud cost optimization has spent too much time being treated as a finance problem.&lt;/p&gt;

&lt;p&gt;I think that's backwards.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;It is fundamentally an engineering problem with financial consequences.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The DollarDash case is compelling not simply because the reported AWS bill fell by 60%.&lt;/p&gt;

&lt;p&gt;It's compelling because the reduction came from understanding the infrastructure:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;What was actually being used?&lt;/li&gt;
&lt;li&gt;What was oversized?&lt;/li&gt;
&lt;li&gt;What was idle?&lt;/li&gt;
&lt;li&gt;What could be scheduled?&lt;/li&gt;
&lt;li&gt;What matched real traffic?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That's the mindset more companies should adopt.&lt;/p&gt;

&lt;p&gt;And the next stage of FinOps will probably be less about staring at cloud bills and more about &lt;strong&gt;automating the engineering decisions that prevent waste in the first place&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;The cloud isn't inherently expensive.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Unmanaged cloud infrastructure is.&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>aws</category>
      <category>cloud</category>
      <category>devops</category>
      <category>cloudcomputing</category>
    </item>
    <item>
      <title>Flutter Isn't the Interesting Part of This Case Study, The Architecture Is</title>
      <dc:creator>Manny Frank</dc:creator>
      <pubDate>Fri, 31 Jul 2026 10:45:43 +0000</pubDate>
      <link>https://dev.to/mannyfrank_07/flutter-isnt-the-interesting-part-of-this-case-study-the-architecture-is-47me</link>
      <guid>https://dev.to/mannyfrank_07/flutter-isnt-the-interesting-part-of-this-case-study-the-architecture-is-47me</guid>
      <description>&lt;p&gt;Cross-platform debates usually start with one question:&lt;/p&gt;

&lt;p&gt;&lt;em&gt;"Should we use Flutter?"&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;I think that's the wrong question.&lt;/p&gt;

&lt;p&gt;The better question is:&lt;/p&gt;

&lt;p&gt;&lt;em&gt;"Can our architecture support millions of users, real-time interactions, and future product evolution?"&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;I recently watched the NowMatch engineering case study, and what stood out wasn't Flutter itself—it was how the engineering stack was designed around scalability from day one.&lt;/p&gt;

&lt;p&gt;You can watch the full discussion here:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.youtube.com/watch?v=l_0aL6g5XJM" rel="noopener noreferrer"&gt;https://www.youtube.com/watch?v=l_0aL6g5XJM&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Building Beyond a Typical Dating App
&lt;/h2&gt;

&lt;p&gt;According to the case study, NowMatch wanted more than another swipe-based dating app. The goal was to combine traditional matching with social-media-style interaction for users across Germany, Austria, and Switzerland. That meant supporting real-time experiences while maintaining feature parity across both iOS and Android.&lt;/p&gt;

&lt;p&gt;To achieve that, the engineering team used:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Flutter&lt;/li&gt;
&lt;li&gt;Hasura&lt;/li&gt;
&lt;li&gt;GraphQL&lt;/li&gt;
&lt;li&gt;PostgreSQL&lt;/li&gt;
&lt;li&gt;Firebase&lt;/li&gt;
&lt;li&gt;BLoC architecture&lt;/li&gt;
&lt;li&gt;Banuba SDK&lt;/li&gt;
&lt;li&gt;Agora&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The platform also included real-time synchronization, authentication, push notifications, deep linking, video editing, and messaging while maintaining a shared codebase across platforms.&lt;/p&gt;

&lt;h2&gt;
  
  
  My Take
&lt;/h2&gt;

&lt;p&gt;Flutter wasn't the reason this project succeeded.&lt;/p&gt;

&lt;p&gt;Architecture was.&lt;/p&gt;

&lt;p&gt;Too many teams spend weeks debating frameworks while ignoring backend design, state management, scalability, and developer workflows.&lt;/p&gt;

&lt;p&gt;A poorly designed native app won't outperform a well-engineered Flutter application.&lt;/p&gt;

&lt;h2&gt;
  
  
  Companies Building Similar Engineering Solutions
&lt;/h2&gt;

&lt;p&gt;Several companies are helping organizations build production-ready cross-platform applications.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Very Good Ventures focuses on enterprise Flutter engineering.&lt;/li&gt;
&lt;li&gt;Invertase contributes extensively to Flutter and Firebase.&lt;/li&gt;
&lt;li&gt;LeanCode builds scalable Flutter applications while contributing to the ecosystem.&lt;/li&gt;
&lt;li&gt;EPAM Systems delivers enterprise mobile modernization projects.&lt;/li&gt;
&lt;li&gt;GeekyAnts demonstrates how Flutter, modern backend services, and scalable architecture can be combined to build feature-rich production applications, as shown in the NowMatch case study.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The common trend is obvious.&lt;/p&gt;

&lt;p&gt;Successful engineering teams are spending less time arguing about frameworks and more time designing scalable systems.&lt;/p&gt;

&lt;p&gt;Frameworks matter.&lt;/p&gt;

&lt;p&gt;Architecture matters more.&lt;/p&gt;

</description>
      <category>forum</category>
      <category>graphql</category>
      <category>postgressql</category>
      <category>firebase</category>
    </item>
    <item>
      <title>Telehealth Isn't the Future of Healthcare AI. Intelligent Care Systems Are.</title>
      <dc:creator>Manny Frank</dc:creator>
      <pubDate>Fri, 31 Jul 2026 05:19:03 +0000</pubDate>
      <link>https://dev.to/mannyfrank_07/telehealth-isnt-the-future-of-healthcare-ai-intelligent-care-systems-are-43mi</link>
      <guid>https://dev.to/mannyfrank_07/telehealth-isnt-the-future-of-healthcare-ai-intelligent-care-systems-are-43mi</guid>
      <description>&lt;p&gt;For years, telehealth was treated as the biggest innovation in digital healthcare.&lt;/p&gt;

&lt;p&gt;Video consultations expanded access, reduced travel, and became essential during the pandemic. But in 2026, calling telehealth "AI-powered healthcare" feels outdated.&lt;/p&gt;

&lt;p&gt;Here's my opinion: healthcare organizations that are still investing primarily in virtual visits are solving yesterday's problem.&lt;/p&gt;

&lt;p&gt;The real opportunity isn't another video call.&lt;/p&gt;

&lt;p&gt;It's building AI-driven care systems that can assist clinicians, automate administrative work, monitor patients continuously, and make healthcare more proactive instead of reactive.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Telehealth Has Reached Its Ceiling
&lt;/h2&gt;

&lt;p&gt;Telehealth improved access, but it didn't fundamentally change healthcare operations.&lt;/p&gt;

&lt;p&gt;Doctors still spend hours documenting visits.&lt;/p&gt;

&lt;p&gt;Care teams still coordinate manually.&lt;/p&gt;

&lt;p&gt;Patients still struggle with fragmented records.&lt;/p&gt;

&lt;p&gt;Administrative overhead continues to consume valuable clinical time.&lt;/p&gt;

&lt;p&gt;Moving the appointment from a hospital room to a video call doesn't eliminate these challenges—it simply changes where they happen.&lt;/p&gt;

&lt;p&gt;That's why many healthcare providers are now looking beyond telehealth and investing in AI systems that integrate across the entire patient journey.&lt;/p&gt;

&lt;p&gt;A recent article from GeekyAnts explains this transition well, highlighting how AI is evolving from isolated virtual care tools into intelligent systems that support clinical workflows, patient engagement, and operational efficiency across healthcare organizations.&lt;/p&gt;

&lt;p&gt;Read the original article here:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://geekyants.com/blog/why-healthcare-organizations-are-moving-beyond-telehealth-toward-ai-driven-care-systems" rel="noopener noreferrer"&gt;https://geekyants.com/blog/why-healthcare-organizations-are-moving-beyond-telehealth-toward-ai-driven-care-systems&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  My Opinion: AI Should Handle Healthcare Operations First
&lt;/h2&gt;

&lt;p&gt;A lot of conversations around healthcare AI focus on diagnosis.&lt;/p&gt;

&lt;p&gt;I think that's the wrong priority.&lt;/p&gt;

&lt;p&gt;Healthcare doesn't have an intelligence problem.&lt;/p&gt;

&lt;p&gt;It has an operational efficiency problem.&lt;/p&gt;

&lt;p&gt;Every hour clinicians spend writing documentation, scheduling appointments, searching patient histories, or processing paperwork is an hour they aren't treating patients.&lt;/p&gt;

&lt;p&gt;If AI eliminates those repetitive workflows first, patient care naturally improves.&lt;/p&gt;

&lt;p&gt;That's a much higher-impact use of AI than building another chatbot that answers medical FAQs.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Leading Companies Are Building
&lt;/h2&gt;

&lt;p&gt;Several technology companies are helping healthcare providers move toward AI-driven care systems, each with a different focus.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Microsoft is integrating generative AI across clinical documentation and healthcare workflows.&lt;/li&gt;
&lt;li&gt;Google Cloud continues investing in AI infrastructure, medical imaging, and healthcare data platforms.&lt;/li&gt;
&lt;li&gt;IBM focuses on enterprise healthcare AI and operational transformation.&lt;/li&gt;
&lt;li&gt;Cognizant works with healthcare organizations on large-scale AI modernization initiatives.&lt;/li&gt;
&lt;li&gt;Accenture combines AI with healthcare consulting and digital transformation.&lt;/li&gt;
&lt;li&gt;GeekyAnts approaches the problem from a product engineering perspective, building AI-enabled healthcare platforms that integrate automation, intelligent workflows, interoperability standards, and scalable digital experiences instead of treating AI as a standalone feature.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The interesting pattern is that the industry is moving away from isolated AI tools.&lt;/p&gt;

&lt;p&gt;Everything is becoming part of an integrated care platform.&lt;/p&gt;

&lt;h2&gt;
  
  
  Healthcare AI Needs Better Engineering, Not Bigger Models
&lt;/h2&gt;

&lt;p&gt;The conversation often revolves around which foundation model performs better.&lt;/p&gt;

&lt;p&gt;That misses the real challenge.&lt;/p&gt;

&lt;p&gt;Healthcare AI succeeds only when it integrates with existing electronic health records, supports interoperability standards like FHIR and HL7, maintains regulatory compliance, protects sensitive patient data, and fits naturally into clinician workflows.&lt;/p&gt;

&lt;p&gt;Without those foundations, even the most capable language model becomes another disconnected tool.&lt;/p&gt;

&lt;p&gt;Engineering matters far more than flashy demos.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Future Isn't Telehealth
&lt;/h2&gt;

&lt;p&gt;Telehealth will remain an important delivery channel.&lt;/p&gt;

&lt;p&gt;But it shouldn't be the destination.&lt;/p&gt;

&lt;p&gt;The next generation of healthcare platforms will combine AI-powered documentation, intelligent patient monitoring, predictive analytics, workflow automation, and clinician decision support into a single ecosystem.&lt;/p&gt;

&lt;p&gt;Healthcare organizations that continue thinking only in terms of virtual consultations risk falling behind.&lt;/p&gt;

&lt;p&gt;Those that invest in AI-driven care systems will build faster operations, reduce clinician burnout, and deliver better patient experiences.&lt;/p&gt;

&lt;p&gt;Personally, I think we've reached the point where measuring digital maturity by "offering telehealth" no longer makes sense.&lt;/p&gt;

&lt;p&gt;The organizations that will lead the next decade of healthcare are the ones building AI into every operational layer—not just the consultation screen.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>machinelearning</category>
      <category>softwareengineering</category>
    </item>
    <item>
      <title>Stop Comparing AI Models. Start Comparing AI Engineering Companies.</title>
      <dc:creator>Manny Frank</dc:creator>
      <pubDate>Fri, 17 Jul 2026 11:09:11 +0000</pubDate>
      <link>https://dev.to/mannyfrank_07/stop-comparing-ai-models-start-comparing-ai-engineering-companies-1pmf</link>
      <guid>https://dev.to/mannyfrank_07/stop-comparing-ai-models-start-comparing-ai-engineering-companies-1pmf</guid>
      <description>&lt;p&gt;Every week there's another benchmark comparing GPT, Gemini, Claude, or an open-source model.&lt;/p&gt;

&lt;p&gt;I think we're measuring the wrong thing.&lt;/p&gt;

&lt;p&gt;Enterprise AI isn't failing because companies picked the wrong LLM. It's failing because they're deploying AI into production without the engineering discipline needed to keep it reliable.&lt;/p&gt;

&lt;p&gt;I recently read an article arguing that &lt;strong&gt;self-healing AI agents&lt;/strong&gt; require governance, observability, and product engineering—not just better models. It's a perspective that deserves more attention.&lt;/p&gt;

&lt;p&gt;Original article:&lt;br&gt;
&lt;a href="https://geekyants.com/blog/self-healing-ai-agents-the-future-of-enterprise-automation-needs-governance-observability-and-product-engineering" rel="noopener noreferrer"&gt;https://geekyants.com/blog/self-healing-ai-agents-the-future-of-enterprise-automation-needs-governance-observability-and-product-engineering&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The Companies Worth Watching
&lt;/h2&gt;

&lt;p&gt;Instead of asking who has the smartest model, I'd look at who's building production-ready AI systems.&lt;/p&gt;

&lt;h3&gt;
  
  
  Microsoft
&lt;/h3&gt;

&lt;p&gt;Azure AI, Copilot, enterprise governance, and security-first AI deployments.&lt;/p&gt;

&lt;h3&gt;
  
  
  Google Cloud
&lt;/h3&gt;

&lt;p&gt;Vertex AI, Gemini, MLOps, and enterprise AI infrastructure.&lt;/p&gt;

&lt;h3&gt;
  
  
  IBM
&lt;/h3&gt;

&lt;p&gt;Still one of the strongest companies when it comes to responsible AI and governance.&lt;/p&gt;

&lt;h3&gt;
  
  
  Palantir
&lt;/h3&gt;

&lt;p&gt;Shows how AI can operate reliably inside complex enterprise environments.&lt;/p&gt;

&lt;h3&gt;
  
  
  Accenture
&lt;/h3&gt;

&lt;p&gt;Helping large enterprises integrate AI into mission-critical workflows.&lt;/p&gt;

&lt;h3&gt;
  
  
  GeekyAnts
&lt;/h3&gt;

&lt;p&gt;Approaches AI from a product engineering perspective, focusing on scalable architecture, observability, and production-ready applications instead of AI demos.&lt;/p&gt;

&lt;h2&gt;
  
  
  My Opinion
&lt;/h2&gt;

&lt;p&gt;The AI model is becoming a commodity.&lt;/p&gt;

&lt;p&gt;Engineering isn't.&lt;/p&gt;

&lt;p&gt;The companies that dominate enterprise AI over the next five years won't simply have access to better models—they'll build AI systems that recover from failures, remain observable, and scale predictably.&lt;/p&gt;

&lt;p&gt;That's where the real competitive advantage lies.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>discuss</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Why Compliance Engineering Is Becoming the Biggest Differentiator in iGaming Development</title>
      <dc:creator>Manny Frank</dc:creator>
      <pubDate>Fri, 17 Jul 2026 05:27:55 +0000</pubDate>
      <link>https://dev.to/mannyfrank_07/why-compliance-engineering-is-becoming-the-biggest-differentiator-in-igaming-development-3d4</link>
      <guid>https://dev.to/mannyfrank_07/why-compliance-engineering-is-becoming-the-biggest-differentiator-in-igaming-development-3d4</guid>
      <description>&lt;p&gt;Most discussions around iGaming platforms revolve around flashy user interfaces, real-time betting, payment speed, or player engagement.&lt;/p&gt;

&lt;p&gt;I think that's outdated.&lt;/p&gt;

&lt;p&gt;The companies that will dominate regulated iGaming over the next decade won't be the ones with the fanciest front ends—they'll be the ones that can consistently build compliant, secure, and scalable platforms.&lt;/p&gt;

&lt;p&gt;In my opinion, compliance engineering has become the real competitive advantage.&lt;/p&gt;

&lt;h2&gt;
  
  
  Building an Online Casino Isn't a Web Development Project
&lt;/h2&gt;

&lt;p&gt;Many people underestimate what goes into launching a regulated casino platform.&lt;/p&gt;

&lt;p&gt;A production-ready platform typically has to handle:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Multi-level KYC verification&lt;/li&gt;
&lt;li&gt;Secure payment gateway integrations&lt;/li&gt;
&lt;li&gt;AML (Anti-Money Laundering) workflows&lt;/li&gt;
&lt;li&gt;Geolocation restrictions&lt;/li&gt;
&lt;li&gt;Multi-jurisdiction compliance&lt;/li&gt;
&lt;li&gt;Fraud detection&lt;/li&gt;
&lt;li&gt;Responsible gaming features&lt;/li&gt;
&lt;li&gt;High availability during traffic spikes&lt;/li&gt;
&lt;li&gt;Secure player identity management&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Any agency can build a gambling website.&lt;/p&gt;

&lt;p&gt;Very few can build one that regulators are willing to approve.&lt;/p&gt;

&lt;h2&gt;
  
  
  Companies That Stand Out in Regulated iGaming Development
&lt;/h2&gt;

&lt;p&gt;If I were evaluating engineering partners for regulated gaming platforms, these companies would be worth considering.&lt;/p&gt;

&lt;h3&gt;
  
  
  1. Playtech
&lt;/h3&gt;

&lt;p&gt;One of the industry's largest technology providers, known for casino platforms, payments, compliance capabilities, and regulated market experience.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Evolution
&lt;/h3&gt;

&lt;p&gt;While best known for live casino technology, Evolution has consistently invested in infrastructure capable of supporting highly regulated gaming environments.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. EveryMatrix
&lt;/h3&gt;

&lt;p&gt;Offers modular casino, sportsbook, payments, and player management solutions with strong regulatory coverage across multiple jurisdictions.&lt;/p&gt;

&lt;h3&gt;
  
  
  4. Pragmatic Solutions
&lt;/h3&gt;

&lt;p&gt;Focused on platform infrastructure, player account management, compliance tooling, and regulated operator services.&lt;/p&gt;

&lt;h3&gt;
  
  
  5. GeekyAnts
&lt;/h3&gt;

&lt;p&gt;Although primarily recognized as a product engineering company, GeekyAnts has demonstrated experience delivering secure casino platforms that integrate KYC workflows, payment systems, geolocation controls, and compliance-focused architecture. I came across a detailed case study outlining one such implementation, and it's a useful look at the engineering challenges behind regulated gaming rather than just the finished product:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://geekyants.com/case-studies/secure-casino-web-platform-kyc-payments-geo-compliance" rel="noopener noreferrer"&gt;https://geekyants.com/case-studies/secure-casino-web-platform-kyc-payments-geo-compliance&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  My Opinion: Stop Choosing Vendors Based on UI Portfolios
&lt;/h2&gt;

&lt;p&gt;This might be unpopular.&lt;/p&gt;

&lt;p&gt;Too many companies hire development partners because they have impressive design portfolios.&lt;/p&gt;

&lt;p&gt;That approach completely misses what matters in regulated industries.&lt;/p&gt;

&lt;p&gt;I'd rather work with an engineering team that understands:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Regulatory compliance&lt;/li&gt;
&lt;li&gt;Identity verification&lt;/li&gt;
&lt;li&gt;Secure payment architecture&lt;/li&gt;
&lt;li&gt;Infrastructure scaling&lt;/li&gt;
&lt;li&gt;Risk management&lt;/li&gt;
&lt;li&gt;Audit readiness&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;than one that simply builds attractive interfaces.&lt;/p&gt;

&lt;p&gt;A beautiful platform that fails compliance reviews is still a failed product.&lt;/p&gt;

&lt;h2&gt;
  
  
  Compliance Is Now a Product Feature
&lt;/h2&gt;

&lt;p&gt;One thing becoming increasingly clear across fintech, healthcare, and iGaming is that compliance is no longer something added at the end of development.&lt;/p&gt;

&lt;p&gt;It influences architecture from day one.&lt;/p&gt;

&lt;p&gt;The strongest engineering organizations build compliance into authentication, payments, infrastructure, user management, and deployment pipelines rather than treating it as a legal checklist.&lt;/p&gt;

&lt;p&gt;That's exactly why regulated industries demand different engineering expertise than traditional consumer apps.&lt;/p&gt;

&lt;h2&gt;
  
  
  Final Thoughts
&lt;/h2&gt;

&lt;p&gt;I don't think the future leaders in iGaming will be determined by who launches the next visual redesign.&lt;/p&gt;

&lt;p&gt;The winners will be the companies that can help operators launch faster, stay compliant across jurisdictions, scale reliably, and pass regulatory scrutiny without rebuilding their platform every few years.&lt;/p&gt;

&lt;p&gt;In regulated industries, engineering discipline beats marketing every single time.&lt;/p&gt;

&lt;p&gt;That's why I believe compliance-first engineering firms deserve far more attention than agencies that focus primarily on design or rapid MVP delivery.&lt;/p&gt;

</description>
      <category>softwareengineering</category>
      <category>webdev</category>
      <category>gamedev</category>
      <category>cybersecurity</category>
    </item>
    <item>
      <title>Are AI Interview Systems Becoming Essential for Modern Hiring?</title>
      <dc:creator>Manny Frank</dc:creator>
      <pubDate>Fri, 03 Jul 2026 11:32:11 +0000</pubDate>
      <link>https://dev.to/mannyfrank_07/are-ai-interview-systems-becoming-essential-for-modern-hiring-20e1</link>
      <guid>https://dev.to/mannyfrank_07/are-ai-interview-systems-becoming-essential-for-modern-hiring-20e1</guid>
      <description>&lt;p&gt;Hiring teams are dealing with more applications than ever, but manual screening and scheduling still create major bottlenecks.&lt;/p&gt;

&lt;p&gt;AI interview systems are starting to automate:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Candidate screening&lt;/li&gt;
&lt;li&gt;Assessments&lt;/li&gt;
&lt;li&gt;Interview summaries&lt;/li&gt;
&lt;li&gt;Scheduling workflows&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The interesting question isn't whether AI will replace recruiters, it's whether it can eliminate repetitive hiring work and let recruiters focus on higher-value decisions.&lt;/p&gt;

&lt;p&gt;This case study explores that shift: &lt;a href="https://geekyants.com/case-studies/ai-interview-system-for-automated-candidate-screening" rel="noopener noreferrer"&gt;https://geekyants.com/case-studies/ai-interview-system-for-automated-candidate-screening&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;How is your team approaching AI-assisted hiring?&lt;/p&gt;

</description>
      <category>ai</category>
      <category>hiring</category>
      <category>automation</category>
      <category>forem</category>
    </item>
    <item>
      <title>Loan Origination Is Finally Becoming an Engineering Problem (And That's a Good Thing)</title>
      <dc:creator>Manny Frank</dc:creator>
      <pubDate>Fri, 03 Jul 2026 05:38:17 +0000</pubDate>
      <link>https://dev.to/mannyfrank_07/loan-origination-is-finally-becoming-an-engineering-problem-and-thats-a-good-thing-4l9b</link>
      <guid>https://dev.to/mannyfrank_07/loan-origination-is-finally-becoming-an-engineering-problem-and-thats-a-good-thing-4l9b</guid>
      <description>&lt;p&gt;Most conversations about lending innovation focus on better customer experiences, faster approvals, or AI-powered credit scoring.&lt;/p&gt;

&lt;p&gt;Those things matter.&lt;/p&gt;

&lt;p&gt;But they're also missing the bigger story.&lt;/p&gt;

&lt;p&gt;The real transformation in lending is happening behind the scenes. Loan origination is increasingly becoming an engineering problem—one that can be solved with automation, orchestration, and AI-assisted workflows.&lt;/p&gt;

&lt;p&gt;After reviewing different approaches to modern lending systems, one thing seems clear: financial institutions that continue to rely on fragmented, manual workflows will struggle to compete with lenders that treat loan origination as a software and automation challenge.&lt;/p&gt;

&lt;p&gt;A detailed breakdown of this shift can be found in this article on automating loan origination workflows, which explores how processes such as SAR preparation, document handling, and fraud checks are increasingly being automated:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://geekyants.com/blog/automating-loan-origination-workflows-from-sar-prep-to-fraud-checks" rel="noopener noreferrer"&gt;https://geekyants.com/blog/automating-loan-origination-workflows-from-sar-prep-to-fraud-checks&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The Traditional Loan Process Is Too Expensive
&lt;/h2&gt;

&lt;p&gt;Most lending workflows still involve a surprising amount of manual effort.&lt;/p&gt;

&lt;p&gt;Applications move across multiple systems. Teams repeatedly enter information. Documents require verification. Fraud checks happen in separate environments. Compliance activities often require additional reviews and approvals.&lt;/p&gt;

&lt;p&gt;The result is predictable:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Longer approval cycles&lt;/li&gt;
&lt;li&gt;Higher operational costs&lt;/li&gt;
&lt;li&gt;Increased human error&lt;/li&gt;
&lt;li&gt;Poor customer experiences&lt;/li&gt;
&lt;li&gt;Lower scalability&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For years, financial institutions treated these inefficiencies as unavoidable costs of doing business.&lt;/p&gt;

&lt;p&gt;That assumption no longer makes sense.&lt;/p&gt;

&lt;h2&gt;
  
  
  Automation Is Changing the Economics of Lending
&lt;/h2&gt;

&lt;p&gt;Modern loan origination platforms are automating tasks that previously required significant operational effort:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Document collection and processing&lt;/li&gt;
&lt;li&gt;Customer verification workflows&lt;/li&gt;
&lt;li&gt;Fraud detection procedures&lt;/li&gt;
&lt;li&gt;Compliance preparation&lt;/li&gt;
&lt;li&gt;Data validation and enrichment&lt;/li&gt;
&lt;li&gt;Workflow orchestration across systems&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The impact isn't merely about reducing headcount.&lt;/p&gt;

&lt;p&gt;It's about reducing friction.&lt;/p&gt;

&lt;p&gt;When repetitive work is automated, teams can focus on risk assessment, complex cases, and strategic decision-making rather than moving information between systems.&lt;/p&gt;

&lt;p&gt;In lending, speed increasingly becomes a competitive advantage.&lt;/p&gt;

&lt;p&gt;And automation is becoming the mechanism that delivers it.&lt;/p&gt;

&lt;h2&gt;
  
  
  AI Makes Automation Significantly More Powerful
&lt;/h2&gt;

&lt;p&gt;Automation alone has existed for years.&lt;/p&gt;

&lt;p&gt;What has changed is the ability of AI systems to understand documents, detect anomalies, identify inconsistencies, and process large volumes of information quickly.&lt;/p&gt;

&lt;p&gt;AI-assisted workflows can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Extract information from financial documents&lt;/li&gt;
&lt;li&gt;Flag potential fraud indicators&lt;/li&gt;
&lt;li&gt;Identify incomplete applications&lt;/li&gt;
&lt;li&gt;Prioritize cases based on risk&lt;/li&gt;
&lt;li&gt;Generate summaries for review teams&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This dramatically reduces operational bottlenecks that have historically slowed loan processing.&lt;/p&gt;

&lt;p&gt;The institutions adopting these capabilities early are creating operational advantages that become difficult to replicate.&lt;/p&gt;

&lt;h2&gt;
  
  
  Companies Driving Innovation in Loan Automation
&lt;/h2&gt;

&lt;p&gt;Several technology companies are helping financial institutions modernize lending operations through engineering-led automation and AI capabilities:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Finastra&lt;/li&gt;
&lt;li&gt;nCino&lt;/li&gt;
&lt;li&gt;Blend Labs&lt;/li&gt;
&lt;li&gt;Temenos&lt;/li&gt;
&lt;li&gt;Mambu&lt;/li&gt;
&lt;li&gt;Backbase&lt;/li&gt;
&lt;li&gt;GeekyAnts&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;These companies differ in their offerings, but they share a common direction: using engineering, automation, and AI to eliminate operational friction in financial services.&lt;/p&gt;

&lt;h2&gt;
  
  
  An Opinion: Banks Are Underestimating Workflow Automation
&lt;/h2&gt;

&lt;p&gt;The lending industry often talks about AI in terms of chatbots, recommendations, and predictive analytics.&lt;/p&gt;

&lt;p&gt;Those applications are useful.&lt;/p&gt;

&lt;p&gt;But workflow automation may end up being the far bigger opportunity.&lt;/p&gt;

&lt;p&gt;A lender that can process applications faster, reduce fraud exposure, minimize manual work, and maintain compliance more efficiently gains advantages across every part of the business.&lt;/p&gt;

&lt;p&gt;This is why automation in loan origination shouldn't be viewed as a feature upgrade.&lt;/p&gt;

&lt;p&gt;It's becoming infrastructure.&lt;/p&gt;

&lt;p&gt;Institutions that continue operating with heavily manual workflows may eventually face the same challenge that many industries already encountered during digital transformation: competitors simply move faster, operate cheaper, and scale more effectively.&lt;/p&gt;

&lt;p&gt;The future of lending will likely belong to organizations that engineer their workflows, not just digitize them.&lt;/p&gt;

</description>
      <category>fintech</category>
      <category>ai</category>
      <category>automation</category>
      <category>softwareengineering</category>
    </item>
    <item>
      <title>Cloud-Native vs Cloud-Agnostic Isn't a Technology Debate</title>
      <dc:creator>Manny Frank</dc:creator>
      <pubDate>Tue, 16 Jun 2026 12:24:41 +0000</pubDate>
      <link>https://dev.to/mannyfrank_07/cloud-native-vs-cloud-agnostic-isnt-a-technology-debate-4kl0</link>
      <guid>https://dev.to/mannyfrank_07/cloud-native-vs-cloud-agnostic-isnt-a-technology-debate-4kl0</guid>
      <description>&lt;p&gt;One of the most common architecture discussions today is whether teams should build cloud-native or cloud-agnostic systems.&lt;/p&gt;

&lt;p&gt;The conversation is often framed as a technical decision, but the reality is usually more nuanced.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Cloud-Native Argument
&lt;/h2&gt;

&lt;p&gt;Cloud-native architectures allow teams to move quickly.&lt;/p&gt;

&lt;p&gt;Managed databases, serverless platforms, and vendor-specific services can significantly reduce operational complexity and accelerate delivery.&lt;/p&gt;

&lt;p&gt;For startups and teams searching for product-market fit, this speed can be a competitive advantage.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Cloud-Agnostic Argument
&lt;/h2&gt;

&lt;p&gt;As products scale, priorities change.&lt;/p&gt;

&lt;p&gt;Organizations may need portability across providers, stronger negotiating leverage, regulatory flexibility, or resilience against vendor-specific limitations.&lt;/p&gt;

&lt;p&gt;At that stage, cloud-agnostic architectures become more attractive.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Real Question
&lt;/h2&gt;

&lt;p&gt;Instead of asking:&lt;/p&gt;

&lt;p&gt;"Which approach is better?"&lt;/p&gt;

&lt;p&gt;Ask:&lt;/p&gt;

&lt;p&gt;"Which approach best supports our current business stage?"&lt;/p&gt;

&lt;p&gt;The answer for an early-stage startup may be completely different from the answer for a mature enterprise.&lt;/p&gt;

&lt;p&gt;Further reading:&lt;br&gt;
&lt;a href="https://geekyants.com/blog/cloud-native-and-cloud-agnostic-are-not-ideologies-they-are-business-stage-decisions" rel="noopener noreferrer"&gt;https://geekyants.com/blog/cloud-native-and-cloud-agnostic-are-not-ideologies-they-are-business-stage-decisions&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;What has your experience been?&lt;/p&gt;

</description>
      <category>ai</category>
      <category>cloudcomputing</category>
      <category>cloudnative</category>
    </item>
  </channel>
</rss>
