<?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: issam fathi</title>
    <description>The latest articles on DEV Community by issam fathi (@issam_fathi).</description>
    <link>https://dev.to/issam_fathi</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%2F3910825%2F5c7fe99e-de13-4051-a831-847890cc1b30.jpg</url>
      <title>DEV Community: issam fathi</title>
      <link>https://dev.to/issam_fathi</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/issam_fathi"/>
    <language>en</language>
    <item>
      <title>Building serious tech from outside the tech hubs</title>
      <dc:creator>issam fathi</dc:creator>
      <pubDate>Fri, 17 Jul 2026 19:12:01 +0000</pubDate>
      <link>https://dev.to/issam_fathi/building-serious-tech-from-outside-the-tech-hubs-5fm9</link>
      <guid>https://dev.to/issam_fathi/building-serious-tech-from-outside-the-tech-hubs-5fm9</guid>
      <description>&lt;p&gt;There is a quiet assumption in tech that real products come from a handful of cities. San Francisco, London, Berlin, maybe a few others. Everywhere else is treated as a place that consumes technology, not one that builds it. I build from Tetouan, in northern Morocco, and I think that assumption is not just wrong, it is expensive for the people who believe it.&lt;/p&gt;

&lt;p&gt;I work on an AI platform used by people who own buildings and infrastructure. The work is not a lite version of what a team in a big hub would do. It is the same work. The models are the same models, the standards are the same standards, and the users do not care where the team sits as long as the product earns its place in their day.&lt;/p&gt;

&lt;p&gt;What building from outside the hubs actually changes is not quality. It is a few habits, and most of them are advantages.&lt;/p&gt;

&lt;p&gt;You cannot coast on hype. In a hub, proximity to money and noise can carry a mediocre product further than it deserves. From the outside, none of that is available. The product has to be genuinely useful or it is nothing, because there is no scene to prop it up. That pressure makes for better products.&lt;/p&gt;

&lt;p&gt;You build for the real world by default. The pristine, high budget, everything works environment is not the water you swim in. You are closer to constraints, to users who cannot tolerate fragility, to the ordinary conditions where most software actually has to run. That is not a handicap, it is the correct starting point.&lt;/p&gt;

&lt;p&gt;And you learn to work across distance and difference, because you have to. Different languages, different markets, different time zones. That is not a limitation on the team, it is training for how the world actually works.&lt;/p&gt;

&lt;p&gt;I am not romanticizing it. Being outside the hubs has real friction, less local capital, fewer people who have done it before, more that you have to figure out alone. But the idea that serious technology can only be built in a few zip codes belongs to the past. The tools are global now. The talent always was. The only thing still catching up is the assumption.&lt;/p&gt;

&lt;p&gt;I build from Tetouan. The work speaks for itself.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;I am Issam Fathi, a technology strategist and the product manager of &lt;a href="https://www.asseteye.ai" rel="noopener noreferrer"&gt;AssetEye&lt;/a&gt; by &lt;a href="https://dronetjek.dk" rel="noopener noreferrer"&gt;Dronetjek&lt;/a&gt;, based in Tetouan, Morocco. I help companies build, adapt, and grow through technology.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>startup</category>
      <category>career</category>
      <category>ai</category>
      <category>productmanagement</category>
    </item>
    <item>
      <title>Every AI feature is a new attack surface</title>
      <dc:creator>issam fathi</dc:creator>
      <pubDate>Fri, 17 Jul 2026 19:12:00 +0000</pubDate>
      <link>https://dev.to/issam_fathi/every-ai-feature-is-a-new-attack-surface-1f7a</link>
      <guid>https://dev.to/issam_fathi/every-ai-feature-is-a-new-attack-surface-1f7a</guid>
      <description>&lt;p&gt;Every time you add an AI feature, you add a door. Most teams are so focused on whether the feature works that they forget to ask who else can walk through it.&lt;/p&gt;

&lt;p&gt;I sit across product and security, and the pattern I see is consistent. A team ships an AI capability, a model that answers questions, summarizes documents, or acts on user data, and treats it purely as a product win. Meanwhile it quietly became one of the softest parts of the system.&lt;/p&gt;

&lt;p&gt;The reasons are not exotic. An AI feature usually takes untrusted input, often free text, and does something meaningful with it. That is the classic shape of a security problem. Prompt injection is just untrusted input reaching a powerful interpreter, the same category as the injection bugs we have fought for twenty years, wearing new clothes. If your model can call a tool, read a file, or hit an internal service, then whoever controls its input has a lever on your system.&lt;/p&gt;

&lt;p&gt;So here is the discipline I try to hold.&lt;/p&gt;

&lt;p&gt;Treat model input as hostile by default. The same way you never trust a form field, never trust what reaches the model, especially if the model can then act. The convenience of "just pass it through" is exactly where the hole is.&lt;/p&gt;

&lt;p&gt;Constrain what the model can reach. A model that can only read the one document it was given is a small risk. A model wired into your internal tools with broad permissions is a large one. Scope its access like you scope a service account, least privilege, not most convenience.&lt;/p&gt;

&lt;p&gt;Log what it does, not just what it says. When something goes wrong with an AI feature, you need to reconstruct the actions it took, not only the text it produced. If you cannot answer "what did the model actually do at 3am," you are flying blind.&lt;/p&gt;

&lt;p&gt;None of this slows real products down. It is the same instinct that separates engineers who ship things that survive contact with the real world from those who ship demos. AI does not get a security exemption for being new and exciting. If anything, new and exciting is exactly when people stop checking the locks.&lt;/p&gt;

&lt;p&gt;Build the feature. Then ask who else it just let in.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;I am Issam Fathi, a technology strategist and the product manager of &lt;a href="https://www.asseteye.ai" rel="noopener noreferrer"&gt;AssetEye&lt;/a&gt; by &lt;a href="https://dronetjek.dk" rel="noopener noreferrer"&gt;Dronetjek&lt;/a&gt;, based in Tetouan, Morocco. I help companies build, adapt, and grow through technology.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>security</category>
      <category>productmanagement</category>
      <category>machinelearning</category>
    </item>
    <item>
      <title>Building AI tools for people who don't trust AI</title>
      <dc:creator>issam fathi</dc:creator>
      <pubDate>Fri, 17 Jul 2026 18:45:42 +0000</pubDate>
      <link>https://dev.to/issam_fathi/building-ai-tools-for-people-who-dont-trust-ai-11pe</link>
      <guid>https://dev.to/issam_fathi/building-ai-tools-for-people-who-dont-trust-ai-11pe</guid>
      <description>&lt;p&gt;Most conversations about AI products assume the user is excited. They assume someone who wants the magic, who will forgive a rough edge because the technology is cool. In my world, that user does not exist.&lt;/p&gt;

&lt;p&gt;I build for people who own buildings, roads, and infrastructure. Practical, experienced professionals who have watched a parade of software promise to change everything and then waste their time. When AI shows up, their first reaction is not excitement. It is suspicion. And they are right to be suspicious.&lt;/p&gt;

&lt;p&gt;That changes how you have to build. When your user does not trust the technology, every easy shortcut becomes a landmine.&lt;/p&gt;

&lt;p&gt;The first rule is that a confident wrong answer is worse than no answer. A skeptical user will forgive "I am not sure about this one, take a look." They will never forgive being told something false with total confidence, because the first time it happens you have lost them for good. So the product has to know the edge of its own knowledge and say so. Certainty you have not earned is not a feature, it is a liability.&lt;/p&gt;

&lt;p&gt;The second rule is show your work. A number on a screen means nothing to someone who does not trust where it came from. Let them see the image, the evidence, the reason. Trust is not built by hiding the machinery, it is built by making the machinery inspectable. The goal is not to make the user believe the AI. It is to make the user able to check the AI in five seconds and move on.&lt;/p&gt;

&lt;p&gt;The third rule is earn the next step. You do not get to automate someone's whole job on day one. You get to save them ten minutes on one annoying task. If that ten minutes is real, they come back, and the relationship grows from there. Skeptical users do not convert with a pitch. They convert with a small, repeated, undeniable win.&lt;/p&gt;

&lt;p&gt;None of this is specific to buildings. Any time you put AI in front of someone whose profession predates the technology, whose reputation is on the line, and who has been burned before, the same rules apply. Be honest about uncertainty. Make yourself checkable. Earn trust in small pieces.&lt;/p&gt;

&lt;p&gt;The irony is that building for the skeptic makes a better product for everyone. Honesty about limits, visible evidence, and value that compounds are not concessions to a hard audience. They are just what a good tool does.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;I am Issam Fathi, a technology strategist and the product manager of &lt;a href="https://www.asseteye.ai" rel="noopener noreferrer"&gt;AssetEye&lt;/a&gt; by &lt;a href="https://dronetjek.dk" rel="noopener noreferrer"&gt;Dronetjek&lt;/a&gt;, based in Tetouan, Morocco. I help companies build, adapt, and grow through technology.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>productmanagement</category>
      <category>machinelearning</category>
      <category>ux</category>
    </item>
    <item>
      <title>The drone was never the hard part</title>
      <dc:creator>issam fathi</dc:creator>
      <pubDate>Fri, 17 Jul 2026 18:45:41 +0000</pubDate>
      <link>https://dev.to/issam_fathi/the-drone-was-never-the-hard-part-4o3f</link>
      <guid>https://dev.to/issam_fathi/the-drone-was-never-the-hard-part-4o3f</guid>
      <description>&lt;p&gt;When people picture a drone inspecting a building, they picture the flight. The aircraft rising up the facade, the camera sweeping across the roof, the pilot on the ground. It looks like the drone is the technology. It is not. The drone is the easy part.&lt;/p&gt;

&lt;p&gt;I work on &lt;a href="https://www.asseteye.ai" rel="noopener noreferrer"&gt;AssetEye&lt;/a&gt;, an AI platform that turns drone and 3D data into structured insight for the people who own buildings and infrastructure. The thing I keep relearning is that flying a drone over an asset was solved years ago. Anyone can capture thousands of images of a roof. The hard part starts the moment the drone lands.&lt;/p&gt;

&lt;p&gt;Because a folder of five thousand photos is not an inspection. It is a problem. Somebody still has to look through all of it, decide what matters, find the crack that will cost real money next winter, and turn that into a decision the owner can act on. That is where the work actually lives, and that is where most of the value hides.&lt;/p&gt;

&lt;p&gt;Here is the shift that matters. The question was never "can we see the asset." Drones answered that. The question is "can we understand it, at scale, without a human staring at every frame." That is a data problem and an AI problem, not a flying problem.&lt;/p&gt;

&lt;p&gt;So when we build, we spend almost no time on the capture and almost all of it on what happens after. How do you take raw imagery and 3D geometry and surface the three things on this roof that need attention, out of the thousands that do not. How do you make that trustworthy enough that an owner will spend money based on it. How do you make it consistent, so the same defect gets flagged the same way on building one and building four hundred.&lt;/p&gt;

&lt;p&gt;Get that right and the drone becomes almost boring, which is exactly what you want. The technology that matters is the layer that turns pixels into a decision. The flight is just how the pixels arrive.&lt;/p&gt;

&lt;p&gt;There is a wider lesson here for anyone bringing new tech into an old industry. The flashy part, the part that looks futuristic in a demo, is usually the part that is already solved. The value is downstream, in the unglamorous work of turning capability into something a busy professional can trust and use. Chase the boring part. That is where the moat is.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;I am Issam Fathi, a technology strategist and the product manager of &lt;a href="https://www.asseteye.ai" rel="noopener noreferrer"&gt;AssetEye&lt;/a&gt; by &lt;a href="https://dronetjek.dk" rel="noopener noreferrer"&gt;Dronetjek&lt;/a&gt;, based in Tetouan, Morocco. I help companies build, adapt, and grow through technology.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>machinelearning</category>
      <category>productmanagement</category>
      <category>datascience</category>
    </item>
    <item>
      <title>Most companies don't have a technology problem. They have an adoption problem.</title>
      <dc:creator>issam fathi</dc:creator>
      <pubDate>Fri, 17 Jul 2026 18:36:30 +0000</pubDate>
      <link>https://dev.to/issam_fathi/most-companies-dont-have-a-technology-problem-they-have-an-adoption-problem-5e72</link>
      <guid>https://dev.to/issam_fathi/most-companies-dont-have-a-technology-problem-they-have-an-adoption-problem-5e72</guid>
      <description>&lt;p&gt;Every few months a company buys a powerful new tool, announces a transformation, and quietly goes back to the old way of working within a quarter. The software was fine. The rollout was the failure.&lt;/p&gt;

&lt;p&gt;I see this from a specific seat. I am the product manager of &lt;a href="https://www.asseteye.ai" rel="noopener noreferrer"&gt;AssetEye&lt;/a&gt;, an AI platform that turns drone and 3D data into structured insight, so the people who own buildings and infrastructure can actually see their cost, their risk, and their CO2 instead of guessing. The hard part of that work is almost never the model. The model works. The hard part is getting a traditional industry to trust it and fold it into how they already operate.&lt;/p&gt;

&lt;p&gt;That gap, between a tool that works and a team that uses it, is where most transformation money dies. So here is how I think about closing it.&lt;/p&gt;

&lt;h2&gt;
  
  
  Build for the user's reality, not for the demo
&lt;/h2&gt;

&lt;p&gt;A demo is designed to impress in five minutes. Real work is messy, interrupted, and done by people who did not ask for a new system. If your product only shines in the perfect case, you have built a trade show prop, not a tool. I would rather ship something that survives a bad day on site than something that dazzles in a boardroom.&lt;/p&gt;

&lt;h2&gt;
  
  
  Adapt the workflow, not just the tool
&lt;/h2&gt;

&lt;p&gt;Dropping AI into a broken process gives you a faster broken process. The real question is never "where do we add the model," it is "what decision is this person trying to make, and what is slowing them down." Sometimes the answer is not more technology at all. Knowing that is the job.&lt;/p&gt;

&lt;h2&gt;
  
  
  Grow by winning one real problem first
&lt;/h2&gt;

&lt;p&gt;Nobody adopts a platform because of its roadmap. They adopt it because it solved one painful, concrete thing this week. Prove value on a single problem the user actually feels, earn the trust, and expansion takes care of itself. Trying to transform everything at once is the fastest way to transform nothing.&lt;/p&gt;

&lt;p&gt;None of this is about being anti technology. I love the technology. It is about respecting the distance between capability and use, because that distance is where every real result lives. Companies do not fall behind because they lack tools. They fall behind because they cannot get their people to trust and use the tools they already have.&lt;/p&gt;

&lt;p&gt;Build for reality. Adapt the workflow. Grow from one real win. That is not a strategy deck. It is just what works.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;I am Issam Fathi, a technology strategist and the product manager of &lt;a href="https://www.asseteye.ai" rel="noopener noreferrer"&gt;AssetEye&lt;/a&gt; by &lt;a href="https://dronetjek.dk" rel="noopener noreferrer"&gt;Dronetjek&lt;/a&gt;, based in Tetouan, Morocco. I help companies build, adapt, and grow through technology.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>productmanagement</category>
      <category>ai</category>
      <category>startup</category>
      <category>leadership</category>
    </item>
  </channel>
</rss>
