Building the impossible and making $100k in the first three months
IH+ Subscribers Only

Simon Hamp, founder of NativePHP

Simon Hamp built something that no one thought could be built — NativePHP, which allows devs to build desktop and mobile apps with PHP.

Since launching the mobile version three months ago, he has made $100k.

Here's Simon on how he did it. 👇

Not doing the "right" thing

At the end of 2022, I took voluntary redundancy from a startup — not mine — that I had been pouring my energy into for almost six years. So I went from a reasonable, regular salary, to no income with only a few months of runway.

So I’m frantically trying to get freelance clients. I’ve got no savings, no recurring income... but instead of doing the “right" thing I decided to finally try this idea I’d had for years.

While I was working at the startup, I saw on Twitter a Laravel community member called Marcel Pociot post about building portable terminal apps with Laravel — imagine, I could write a PHP application that I could send to someone else, and without any setup, they could just run it.

I've been working with PHP for a very long time — my whole career — and I've always wanted to be able to write distributable apps with it.

Stealing the show

I put together a proof of concept back in 2023 using a statically compiled version of PHP and a Tauri shell, and got it to run full blown Laravel; not just a TUI, a full web application.

I posted about it on Twitter. I probably had just about 1,000 followers there at the time.

Somehow Marcel of all people spotted it and he reached out to collaborate.

NativePHP was born a couple of months later — it's a library that allows anyone with Laravel and PHP skills to build desktop and mobile applications without having to learn any new tools or languages. Marcel switched the topic of his Laracon US talk (the biggest conference for Laravel devs), announcing NativePHP to the world from Nashville, Tennessee in front of a thousand Laravel developers. I dare say it stole the show.

But one of the earliest and most persistent questions from the community has been: When will it support mobile?

Lighting a fire

NativePHP was really only meant for building desktop apps. While we had dreams of making it work for mobile, we never believed it would be possible to truly make it work or that it would get past Apple’s App Store review, which is something of a black box and would be a show-stopper.

But last year, while I was exploring various POCs for the desktop version, I stumbled on a way to run PHP web applications without a web server —most devs would say you need a web server to run PHP, but that’s not strictly true.

Once I’d tackled that, I thought, “the rest is easy”. I submitted some talk proposals under the heading “Building mobile apps with PHP” to various conferences and then sat back. I planned to use any invitation to speak as an impetus to flesh out the project.

Months went by. I’d applied to give conference talks quite a few times and never been accepted. I figured it was too hair-brained to see the light of day. But then, at the end of October 2024, the organizer for Laracon EU reached out and said they liked my talk and wanted to see if I was still free to deliver.

Of course I said "yes", but that meant I only had two months to finalize the tech and write the talk.

So I knuckled down. I was getting up at 6am every day, and some days not going to bed until 2 or 3am. I was fleshing out my talk, working on client projects and then also trying to figure out the most important pieces of this puzzle:

  1. How do I build PHP to work on iOS?

  2. How do I get PHP code to speak to native functions?

  3. Will Apple approve an app built this way?

Long story short, I launched NativePHP for mobile in February. In the past 3 months, it has grossed over $100k.

NativePHP homepage

The glory of compiling

NativePHP for Mobile relies on a variety of tech, but high-level:

  • C is what PHP is built in. For PHP to work with native features, we’ve built custom extensions in C that can call native Swift and Java functions directly. The PHP code then calls the native function directly.

  • While we’ve made it so that PHP developers don’t need to think about Swift or Kotlin/Java to build their apps, we still have to write bridging code and build app-side functionality in these languages.

  • There’s also PHP code in there that we use to wrap everything up and make it feel familiar. In fact, NativePHP for Mobile is delivered as a Composer package that you install into a Laravel application. So it feels completely at home in the Laravel developer’s toolbelt.

We’ll support more PHP frameworks at some point, but we’re focused on Laravel right now as it’s the most popular web application framework on the planet.

The many layers of tech here present lots of challenges, but the biggest one has been compiling PHP. It’s different for both platforms, iOS and Android, and requires multiple rounds of compilation. Compiling software often takes many minutes at a time and when you’re trying to do weird new things like this, you end up compiling it over and over again, failing to compile hundreds if not thousands of times.

It’s time-consuming and often frustrating. But when it finally compiles and works, it’s absolutely glorious.

"Build many, release one" licenses

NativePHP for Mobile makes money through selling licenses. Currently, this is the only source of revenue.

A license grants customers access to the package, which they can install via Composer, and provides them with a license to build as many apps as they want. But depending on the license level they purchase, they might only be allowed to distribute a single app.

I call this a “build many, release one” license. You can bulk-buy 10 licenses at a discount, or go Max and get unlimited licenses.

We’ve also been offering this at a hefty discount during what we’ve called our Early Access Program (EAP). We didn’t want to go with ‘alpha’ or even ‘beta’ software — what we’ve built is ready, it’s stable and it works: you can ship apps with it today and folks already are! — but we know that it’s not 100% complete.

Honestly, it may never be, but for folks who want to get in early, the prices are heavily discounted. Regular prices come into effect June 1.

I started charging before it was even ready. I have tried to use payment as a way to determine others' perception of value. It’s an experiment. If people pay, then you know they value it.

This experiment has been a huge success so far. We’ve learned that hundreds of developers and teams will pay for a tool like this.

What we don’t know is how much they’re prepared to pay. So we have to continue experimenting. But we also know that we need to do this carefully. Changing prices every 5 minutes isn’t going to make us any friends.

We’re making close to $50k per month at this point.

Setting the stage for growth

NativePHP had already been around for almost two years at the point that I started going public with the work I was doing on the mobile side.

While NativePHP for Desktop (as it’s now known) isn’t huge by any stretch, it has built up a community, a loyal group of contributors and some general awareness and sustained interest. I’ve been running social media accounts under the project name for a little while, building up a following. The Discord crossed over a thousand members a little while back.

So, I was able to leverage a lot of that.

I also started to build a mailing list, collecting email addresses via nativephp.com.

I soft-launched on Twitter before this thing was even ready, announcing my early access pass to folks sponsoring through GitHub. That got a few folks interested. Mostly, the folks who paid to get access to this were the ones who were already begging for us to support mobile.

All of this was a lead up to my conference talk.

Announcing at a conference

Now, I love a good technical conference talk and soft-skills stuff, but there’s nothing quite like a great product demo and a kick-ass announcement. My big reveal on the day was that Apple had in fact approved my very first iPhone app, which was the first one ever built with Laravel and PHP in this way.

The app I released is pretty basic and honestly it has a few bugs. I’d love to get time to revisit it. Maybe one day. It served its purpose though, solidifying NativePHP for Mobile as a viable way to build and distribute mobile apps, something I could legitimately point to as a definitive example.

And in my talk it was really critical for me to demo writing actual code and compiling an application in real-time. It took a few minutes longer than I’d anticipated, but it was so worth it. Loads of folks said to me after they couldn’t believe I went with live-coding and compiling on stage for my first ever conference talk. Very risky, but it paid off!

Throwing money at developers

Another thing I’ve wanted to do is give back to the community. It turns out that developer communities love it when you throw some money at them! Who knew that buying food and drinks for meetups that are filled with developers that are your target audience could be such an incredible advantage? Obviously the organisers love it, but it’s definitely translating into sales.

This has afforded us the opportunity to get even just a few minutes of facetime with these groups — often via Zoom, but occasionally in person. I think that adds a much more human dimension to what we’re doing here and helps the community connect with us. I love that and want to keep on doing it.

We’ve not made any firm commitments on how much we’ll spend on this. It has all happened super organically, but we’ve spent almost 10% of our gross income already on giving back to the community in various ways. The return on this is largely unquantifiable, but I don’t really care. For as long as we can keep on doing it, we’ll do it.

This includes paying for spots on well-known podcasts in the community and sponsoring a variety of open source projects and contributors, tools that our target audience use.

One particularly great channel for us has been Laravel News, run by long-time community member, Eric Barnes.

Dealing with stiff competition

We have some stiff “competition” in the shape of completely free-to-use and open source libraries like React Native and Flutter. Sure they’re sponsored by some big, well-known corporations with large teams of far superior engineers, and even bigger budgets.

I say “competition” like this because really they’re not competition at all. For one, we love all of these alternative technologies and encourage everyone to learn them and try them out. Like all tools, they have their really-good and their not-so-good parts.

But secondly, none of them are serving the PHP community directly. That leaves a neat little gap for us to fill. We’re uniquely positioned as the only product in what is truly a vast market. Imagine, basically overnight, every PHP developer can now build mobile apps, adding this new skillset with almost no effort on their part.

Where other providers are writing a tool that requires everyone to come to them, we’re building a bridge from one skillset to another without forcing all these people to learn a whole new language, toolchain or ecosystem.

But it’s still hard to see folks saying publicly, "Why would I pay for this when I can use x for free?"

We have to navigate this because, if left unchecked, it could leave quite a negative sentiment about the product. When other folks see messages like that just dangling unanswered, it could give the impression we don’t care or don’t know how to handle such messages.

When I respond to these comments, I try to be objective and unemotional. Some of them definitely do get under my skin. But if I can temper my reply, I may win a customer. At the worst, I might have given someone pause.

Key takeaways

A lot of this is advice that’s come from other places, but I can’t remember all of the references. I’m also going to horrifically misquote people, so apologies in advance!

  • Do things that don’t scale. You don't need perfect processes in place for every little thing. I’m manually handling refunds and upgrades right now. We’ll iterate to something more automated when we need to.

  • Release early. You’ve just got to get something out there. Don’t be sitting on building a product for months and months before you show it to people. It doesn’t need to be done or perfect, it just needs to solve some problems that will save others time or money or both.

  • Iterate.

  • Don’t be afraid to charge money. Don't overcomplicate it. Get something in place that lets you take payments and do it sooner rather than later. Even if it’s completely manual like invoicing and receiving wires into a business bank account, give folks a way to pay.

  • Don’t agonize over price. Try to put yourself in the shoes of your target customer and decide on a realistic price you’d be prepared to pay. Remember that price affects everyone differently. Some folks will not be happy no matter what the price is. Supportive folks will likely encourage you to set the price higher. You probably need to land somewhere on the higher side of the middle.

  • Use AI. Move faster. Stay leaner for longer. But don’t forget all the “healthy living” software practices — understand what you’re deploying, test, proofread.

  • Validate before you build. Share it with your audience. Not your granny, not your neighbor... unless they’re your target customer. If you don’t have people who you can share it with first, stop. Find those people before you go any further.

  • Don’t give up the day job! Having that regular income is worth a couple of long nights. I’m not saying we should celebrate this — it would be better all 'round if the system’s economics allowed us all to pursue passion projects — but putting in the time to achieve your goals just has to be done sometimes.

  • Don’t build everything or reinvent every wheel. Focus on your innovation. Leverage existing tools so you can put your energy into the special and unique proposition that you should be building. Almost everything else is distraction and procrastination.

  • Don’t get sucked into social media. It’s a time-sink and it can kill your productivity and mental wellbeing. Share stuff and close it down. Resist the urge to pop in and refresh the feed every 5 seconds. Waiting for the next like, follow, share or reply that doesn’t come will destroy your morale. Learn from it though. If the engagement isn’t coming, it could mean something isn’t right. Don’t waste time flogging a dead horse.

  • Don’t pay for stuff you don’t need. Can you go without Slack? Do you really need Linear and Zendesk right now?

  • Don’t dawdle. Make decisions, execute and keep pressing forward. If you’re struggling to decide, talk to someone. Get guidance. Ask ChatGPT!

  • Partner up. Shane, my cofounder, has been incredible. He’s full of positive energy and wisdom. We balance each other out really well. He’s super driven too and has a very proactive approach. The project literally wouldn’t be where it is without his input.

What's next?

We’ve got big ideas. Our next goal is $500k. I think the path to that right now is to get some key product features like In-App Purchases and Over-the-Air (OTA) app updates working.

Some of this will require extra tooling which we plan to offer on a subscription basis. This will augment the license revenue and also help us move from annual “maybe-recurring” revenue to more of a traditional SaaS MRR income basis.

Personally, my next main milestone is to go full-time on NativePHP. I’m weeks away from that. Then we can really start to move and do all the things folks want us to.

Our biggest unknown right now is what our price change at the end of our EAP will do to income. It really feels like it could go either way at this point.

You can follow along at NativePHP.com/mobile and on our X. And here's my X and Shane's X.

Indie Hackers Newsletter: Subscribe to get the latest stories, trends, and insights for indie hackers in your inbox 3x/week.

About the Author

Photo of James Fleischmann James Fleischmann

I've been writing for Indie Hackers for the better part of a decade. In that time, I've interviewed hundreds of startup founders about their wins, losses, and lessons. I'm also the cofounder of dbrief (AI interview assistant) and LoomFlows (customer feedback via Loom). And I write two newsletters: SaaS Watch (micro-SaaS acquisition opportunities) and Ancient Beat (archaeo/anthro news).

Support This Post

106

Leave a Comment

  1. 1

    Uff! Good job! Impressive!

  2. 3

    very impressive. good luck!

  3. 3

    Very impressive, well above my technical capabilities. Well done and good luck with it all!

  4. 3

    This was a great read, Simon — really inspiring how you tackled something everyone said was impossible and turned it into a thriving product. I especially resonated with your point about validating before building and using payment as a proxy for value.

    I’m in a similar space right now, building an AI assistant to help small teams stay compliant with things like SOC 2, HIPAA, GDPR and ISO 27001 without hiring consultants or becoming experts themselves. Watching how you leaned into a niche (Laravel/PHP devs) and made their workflow way easier gives me a lot to think about — especially around pricing and community engagement.

    Appreciate the transparency and momentum here. Rooting for your continued growth!

  5. 3

    This really spoke to me! I’ve often felt the tension between what feels true and what’s expected... Seeing someone stay committed to their vision with focus and purpose is powerful. The work around PHP for mobile feels both needed and long overdue. It’s given me a lot to think about.

    Looking forward to what’s ahead:)))

  6. 3

    Incredible execution. Proof that 'impossible' is just a timeline and mindset problem. Congrats on the $100K milestone!

    1. 1

      How did you find your investors?

  7. 2

    the meetup idea is brilliant - we might steal and try it at calljmp. btw, your case is very similar to ours - we are trying to get off the ground presently and facing a lot of challenges you've described in the article. calljmp is a secure backend for mobile apps - we are positioning ourselves as an alternative to supabase and appwrite. the advice to connect with dev communities via meetup is something we did not think of - thank you!

  8. 2

    Incredible results! Super motivating to see something grow that fast from zero.
    I’m building Trend, and this kind of traction story is exactly what keeps me pushing.

    Did you focus more on product or distribution in those first 3 months?

    1. 1

      I hate to say it, but you've gotta do both

  9. 2

    Wow, this is like when someone says you can run a marathon after training for a week—sounds impossible, yet here we are, with PHP devs turning into app ninjas! Just waiting for the day I can learn that magic to get my fitness scores straight too. Maybe a little something like this could help with that?

  10. 2

    Congrats and thanks for your insights!

  11. 2

    This is such an exciting update! Your vision for NativePHP is clear, and the roadmap you’ve laid out—especially focusing on key features like In-App Purchases and OTA updates—sounds like a game-changer. The shift to a subscription model is a smart move to stabilize revenue and fuel growth.

    Huge congrats on being weeks away from going full-time! That’s a massive milestone and testament to your hard work. Even with unknowns around pricing, your adaptability and passion will steer things in the right direction. The community believes in you, and this next phase will unlock so much potential. Keep pushing—you’ve got this!

  12. 2

    its impressive

  13. 2

    PHP is still alive!

    This feels like Electron with PHP but even more versatile with the mobile support. A single codebase with many distribution channels.

    It seems like it would be more elegant than IPC as well

    Great work with this!

  14. 2

    Exciting to see how you've gained traction! Really,...amazingly, inspiring!!

  15. 2

    You proved the model, not just the tech which what makes this interesting.

    What stood out wasn’t the tooling, but the choices: charging before it was “done,” keeping access simple, and ignoring the safe path.

    The “build many, release one” license model is pragmatic as it avoids the usual indie trap of overengineering tiers.

    Curious what you’d say was the single highest-leverage decision you made during that initial traction phase. Pricing? Announcement timing? Early access framing?

    1. 1

      Early access set at a premium ($250) but positioned as discounted compared to the post-Early Access pricing

  16. 2

    When you look for a cofounder how do you look for them and what qualities are you looking for in them ?

    1. 1

      The main things for me are: can we have fun together and can I trust this person

  17. 2

    Love the boldness, the grind, and the fact you're building for the PHP community, not trying to pull them away from it. Huge respect, and excited to see where NativePHP goes next! 🙌

    1. 1

      Thanks Chris! This means a lot

  18. 2

    This is a great development tool for developers who only know PHP.

  19. 2

    Absolutely blown away by this story, Simon! 🚀

    As someone who's been in the PHP ecosystem for years, I’ve seen many write it off as “just for the web.” But what you’ve achieved with NativePHP is genuinely groundbreaking — it doesn’t just expand PHP’s capabilities, it reshapes its identity entirely.

    The way you tackled uncertainty, compiled PHP for mobile, and launched in such a bold, public way (live coding — wow!) is beyond inspiring. I especially appreciated your transparency around pricing, the grind of conference rejections, and how you stayed grounded by focusing on real user needs — something that reminds me of how platforms like Uniqumzorg structure their approach, with clarity in sections like Voor zorgaanbieders and Over ons that reflect real-world understanding and purpose.

    This is the kind of indie hacker journey that truly resonates. Wishing you massive success — here’s to hitting that $500k milestone soon and inspiring a whole new wave of PHP innovation! 👏🔥

  20. 2

    Absolutely incredible story, Simon — huge congrats on the $100k milestone! 🎉

    As someone who's seen PHP constantly dismissed in certain circles, this is mind-blowing. NativePHP doesn’t just challenge the norm — it redefines what devs think PHP can do.

    Your “build many, release one” model is clever — it lowers the barrier for experimentation while still creating meaningful value. And I love that you’re leaning into the Laravel ecosystem instead of trying to fight it.

  21. 2

    Impressive

  22. 2

    🔥 Incredible journey! Achieving $100K in just three months is truly inspiring. As a solo developer from India, I'm currently working on ClipGenius AI, a smart clipboard extension designed to enhance productivity with built-in AI features.

    Your story reinforces the importance of validating ideas early and focusing on solving real problems. I'm curious, what strategies did you find most effective in acquiring your initial users? Any insights would be greatly appreciated!

    Thank you for sharing your experience—it's motivating to see what's possible with dedication and the right approach.

  23. 2

    Amazing Framework!
    I recently saw a demo of this framework on LaravelDaily.
    You've really done an amazing job—just like how React.js developers can easily build mobile apps using React Native, now PHP/Laravel developers can also build mobile applications with ease.
    Keep up the great work!

    1. 1

      Thanks for the encouragement. You too!

  24. 2

    This is an absolutely phenomenal story! It's very inspiring to read about your journey with NativePHP for Mobile. You've not only identified a significant gap in the market but have also pushed through technical and personal challenges to build a truly innovative and valuable product. Congrats.

  25. 2

    congratulations!

  26. 2

    This is seriously inspiring. The decision to not play it safe and instead build something the community didn't even know it needed — that takes guts. NativePHP feels like one of those rare tools that instantly expands what’s possible without adding complexity. Huge respect for the hustle, the live demo risk, and the honesty about pricing, competition, and burnout. Rooting for that $500k goal — you’re blazing a trail for indie devs everywhere. 👏🔥

  27. 2

    This is such a powerful story — not just about building great tech, but about backing yourself when the “right” thing would’ve been the safer, easier path. The way you’ve blended deep technical execution with community-driven growth, all while staying true to the PHP ecosystem, is seriously inspiring. NativePHP for Mobile is solving a real, underserved problem in a smart, pragmatic way — and the traction speaks for itself. Huge respect for the hustle, the risks, and the clarity of vision. Rooting for you as you take it full-time!

  28. 2

    Excellent

  29. 2

    Now that's really motivating. Congratz!

  30. 2

    Absolutely inspiring — thank you for sharing this so openly.

  31. 2

    If you never take a risk, you never see the payoff

  32. 2

    Great article with valuable insights !

    1. 1

      Thanks Eser! And thanks for all your help in getting this far

  33. 2

    Inspiring Journey

  34. 2

    There's no reward if you don't take any risk... and this article is here to prove it!

    This is a masterpiece.

  35. 2

    congratulations and excellent article

  36. 2

    Great Points! Releasing early and focusing on price points is really important..

  37. 2

    Truly Amazed by your work!!!

  38. 2

    Woah this is super inspiring! Love how you went all-in and validated that fast. Huge congrats on the $100K, well deserved!

    1. 2

      Thanks so much. Honestly I'm still blown away by how this has all worked out. It's definitely a combination of good timing, good experience and good work.

  39. 2

    Woww, praises to your risky but succesful move, just enjoy and keep working :)

  40. 2

    Incredible journey — turning a niche idea into $100k in just a few months is no small feat. NativePHP really feels like the kind of project that "shouldn’t work" but absolutely does with the right execution.

    Also, love the polish and confidence in your launch strategy. It’s like showing up to Laracon with a fresh taper fade org — clean, sharp, and guaranteed to get noticed.

  41. 2

    Love the site, logo is great too!

  42. 2

    This is solid execution.

    Clear problem. Focused solution. Fast feedback loops.

    Most people dream of results like this but get stuck chasing complexity. You kept it tight and delivered.

    Would be great to hear what the toughest decision was in those first 90 days.

    1. 2

      Toughest decision for me personally has been around continuing with my freelance consulting or follow the signs and go all in on NativePHP, finally...

      1. 1

        That’s a tough but exciting crossroads.

        Freelance brings stability, but if NativePHP is pulling real traction and solving a pain only you can see clearly - it might be time to double down.

        What’s your biggest hesitation about going all in? Time, risk, or something else?

        1. 1

          There's definitely some uncertainty around how consistent the income will be - we're selling annual licenses so we won't understand churn until next year. But on the other hand, we have a year to figure that out.

          The other aspect is that I really enjoy the other projects I'm working on and they have been making great progress too. Very fortunate position to be in, but also challenging to work out where I just want to spend my time, what will I enjoy, regardless of risk/reward?

          1. 1

            You’re in a strong spot.

            With a year of runway, testing one clear success metric for NativePHP over the next 90 days could help bring clarity.

            Sometimes it’s less about which path wins and more about which one energises you to keep building.

  43. 2

    As someone who isn't a coder himself, your story really inspires me. Thank you for sharing @simonhamp!

  44. 2

    This is truly amazing with what you've accomplished with PHP.

    Speaking as a Laravel developer, this is mine blowing. I don't have to learn JavaScript, then reacts then react native just to build an app.

    I want to ask, are they any plans to make the license Free in the future?

    1. 1

      Thanks for the kind words. Yes, we hope to be in a position to create an open source version in the future

  45. 2

    thank sir @simonhamp for both laradevs and nativePHP

  46. 2

    Loved this. Curious — while you were building and marketing this, did you rely more on one big strategy or on small consistent actions?

    I’ve been experimenting with a mindset trick I picked up from self-growth books: one small shift each week, and it’s been a game changer.

    Let me know if you’d like me to share what I’m trying.

    1. 1

      Sounds really interesting! I found that I just had to keep one thing in my mind: "I must ship!"

      if I didn't ship, nothing would have happened. Sharing my progress helped keep me accountable

      1. 1

        Hey, totally agree! I love the “just ship” mindset — it’s powerful.

        I used to get stuck planning too much, but once I started sharing tiny things weekly, it changed everything.

        Do you still ship weekly? Or did you find a different rhythm that works better?

        1. 1

          I haven't found that there needs to be any specific cadence to it... just work on solving problems and ship your solution. The sooner you ship, the sooner the feedback loop starts... and the sooner you can move on to the next problem.

  47. 2

    Woaw, I am truly amazed. That is a great piece of work !

    1. 1

      Thanks ☺️

  48. 2

    Clear vision and work.

  49. 2

    Thank you. So much insight.

  50. 2

    Thanks for you sharing!

    1. 1

      Thank you for reading 🙏🏼

  51. 2

    What a journey 👏

    1. 2

      Still scaling this thing 🏔️

  52. 2

    Simon's journey is a wild ride! It’s amazing to see someone turn a long-standing dream into a money-making machine.

    1. 1

      Dreams can come true 🥲

  53. 2

    Nice works!

    1. 1

      Thanks 🙏🏼

  54. 1

    Incredible! I’m blown away by how you leveraged the Laravel community and that epic Laracon EU talk to launch mobile PHP, something most devs thought was impossible. We’re grinding on a niche dev tool ourselves, and your bold move to charge early and focus on the PHP community’s unique needs is such a motivating playbook.

  55. 1

    please anyone here can help with the implimentation of hairstyle visualization

  56. 1

    Hey James , I’m a freelance web developer . If you’re looking for someone hands-on, happy to chat or even offer a quick dev audit for free!”

  57. 1

    i enjoyed the key takeaway part! How long did it take to enter market?

  58. 1

    Hi James, thanks for the sharing

    As you know 90% of startups fail. Not because founders are lazy. But because they miss these deadly mistakes.

    I’ve failed 3 but Studied 50 more and I've found what kills most startups before they hit traction.

    I'm happy to share my experience and help people to learn before they do the same mistakes

    To everyone interested - get in touch with me on Twitter X (RickyyMeister)

  59. 1

    That's very cool!

    We all needed that! I think as long as we can catch and get daily issues in our works and create solutions for that gaps of inconviniences, then we all can make a brillant future in our personal life and our community of devs. ☺

  60. 1

    How did you find your investors?

    1. 1

      Besides the co-founders, we don't have investors. We only had our time that we could invest.

  61. 1

    is it real?

  62. 1

    Simon’s journey with NativePHP is truly inspiring—transforming a long-held idea into a product that empowers developers to build desktop and mobile apps using PHP. It’s a great reminder of how innovation can simplify complex tasks. Similarly, Magis TV is changing the way we stream, offering seamless access to live channels and on-demand content in one place. Worth checking out: magistvmx.

  63. 1

    So cool! congrats!

    Offering 1 free startup valuation/week using a professional IB model — DM me if you’re raising or just want to understand what your company’s worth.

  64. 1

    It is useful for some people but not for everyone! but It is good overall!

  65. 1

    php on Mac, thats something new.

  66. 1

    Thanks for your post, I learned a lot from your approach.
    I’m working on a project that uses AI to automatically handle customer messages, and I’m currently testing it via Telegram.
    If you get a chance, I’d love for you to take a look and share your feedback: SoufianeAutomation_bot
    Wishing you success in your projects!

    1. 1

      Thanks. Wishing you success with yours too 👍🏼

  67. 1

    how can i help people in need of professional website

  68. 0

    Entrepreneur James Fleischmann's journey to earning $100K in three months shows the power of innovation, smart strategy, and relentless determination.

  69. 0

    I Will Guide You to Scale Your Income to $2K–$5K Per Month

    Are you struggling to turn your online business into a consistent income stream?

    Whether you're just getting started or trying to break through a plateau, I specialize in helping ecommerce entrepreneurs and small business owners scale their monthly revenue to $2,000–$5,000 (and beyond) with strategic marketing, optimized sales funnels, and proven growth tactics.

    Here’s how I can help you:

    Store & Website Optimization – I’ll review your Shopify or Etsy store and help improve design, navigation, product listings, and calls-to-action for better conversion.

    Marketing Strategy That Works – I’ll help set up email automation (Klaviyo, Mailchimp), social media campaigns, and paid ads (Meta, TikTok, or Google) to drive traffic and turn visitors into customers.

    Sales System Setup – From abandoned cart flows to welcome sequences and upsells, I’ll help you build systems that boost average order value and repeat purchases.

    SEO & Traffic Growth – I’ll help improve your Etsy or website visibility through smart keyword research, content planning, and search optimization.

    Coaching & Accountability – You won’t just get advice—you’ll get a partner. I’ll guide you with weekly or bi-weekly check-ins (if applicable), so you stay focused and grow faster.

    With the right strategy, even small steps can lead to big wins. Let’s build the momentum you need to start consistently earning $2k–$5k a month and beyond.

Create a free account
to read this article.

Already have an account? Sign in.