Slashdot Mirror


How Open Source Drives Down Startup Costs

prostoalex writes "Reuters Plugged In article (usually syndicated to your local paper's Technology section) talks about the real impact of open source in the technology world -- cutting down startup costs for other developers. New ventures are coming out, where the startup costs range in five-digit numbers, not seven-digit figures, where venture capital financing would be required. The article talks about Project for Open Source Media, Blogger.com, Odeo and Asterisk telephone system."

8 of 134 comments (clear)

  1. very true by appleLaserWriter · · Score: 4, Insightful

    I have been involved in several early-stage ventures since the bust and completely agree with the article. With open source software and equipment from ebay, $50k goes a very long way.

    Actually making money with your product is still as hard as ever, but the financial risk associated with technology ventures has been greatly reduced.

  2. Starting a business... by ImaLamer · · Score: 4, Insightful

    One thing I've learned over the years is that when you start any type of business you can't just go out and get desks, chairs and other equipment you'll never use if you aren't profitable.

    It's almost always a good idea to start a business on a shoestring. Most businesses who fail before they start do so because they spent all of their capital on things you don't need or things you can rent or borrow.

    Open source makes sense in this repect. Instead of starting with MS SQL server for example, start with PostgreSQL or your preferred free alternative. Migrate if you must later; but why spend top dollar on something that may never get paid for?

    1. Re:Starting a business... by glinden · · Score: 4, Insightful
      • It's almost always a good idea to start a business on a shoestring.
      Absolutely. Another important thing is to launch early and often. If your idea is stupid, you want to find out fast and change it if you can.

      If you've spent a couple months working on it, no problem if your users hate it. Take in their feedback and improve it.

      If you've spent a year working on it, you're dead if your users hate it. No money left to make changes. You just bet the farm and lost.
  3. Proven in technology companies by kbahey · · Score: 4, Insightful

    If you think of Google, their infrastructure runs on top of Linux on cheap commodity hardware. How much would it cost them to do what they do if they were forced to run on proprietary hardware and software? For example Sun on HP in 80s or early 90s? Not to mention how much Windows server licenses they would have needed if they went that route.

    Another instance is Yahoo. They use a hodge podge of languages and databases for various parts of their online empire. There seems to be a trend towards open source solutions laterly, for example PHP and MySQL.

    Yes, open source does save a lot. Not only now, but ever since the GNU C compiler system came out.

  4. Re:But are things better? by QuantumG · · Score: 3, Insightful

    Wow, maybe the training should be inheriently valuable in and of itself. Then your employer will see it as an investment. I always found that funny. Consider admin people vs development people. Admin dudes are sent to every course under the sun to get certified. It's just considered standard practice. Oh, we want to use Cisco routers? Gunna need at least 2 admins with Cisco certification. Now think about programmers. Each one is expected to have his own specialties which he brings to the job with him. There's no sending them off to be trained as the need arises. Oh, the customer has required that we develop this next application in Java. Damn, better hire some more Java people and lay off some of the C# coders.

    --
    How we know is more important than what we know.
  5. Lower Startup Cost, yes. May cost you on the exit by Anonymous Coward · · Score: 3, Insightful

    One thing you need to watch out for is that you really own your own IP when you are working with GPL code. GPL is great, but it can make any code you create on top of it open source if you are not careful. If you are a CEO of a software startup that is looking to sell to a larger company and make your millions, then the IP issues around the GPL can literally be the difference between taking home millions and having a company with zero defensible IP. GPL code use can be the king of all deal killers if you are not VERY careful about how you use it. The GPL does a great job of what is designed to do, making sure that everyone who extends GPL code gives everyone else access to their code too. Just make sure that this is really what you want to do when you start.

  6. Re:5 figures? by mcrbids · · Score: 5, Insightful

    If you can get a company going for five figures, you have my respect. I am trying to get a startup going and after doing alot of analysis, the cheapest I think I can do it is for just over 7.

    Then maybe:

    1) You have a sucky idea. The best ideas are actually little more than a logical culmination of pre-existing forces, and really don't require the loss of a kidney to bring to fruition.

    2) You have lousy marketing. You should be able to cover much of your initial cost in the first sale or two. If you can't, you might see #1 above, or maybe #5 below.

    3) You lost the idea of a "partnership". Typically, you have at least two guys: a guy with the marketing skills, and a guy with the tech delivery skills. There may be a third/fourth partner depending on the situation. These people get together and get paid with a percentage of the company. It's typical to moonlight to provide food money during the startup phase. If you're lucky, your "day job" complements your new business.

    4) You are fatally unrealistic in your cost analysis, see my earlier post about card tables. I just commented on managing costs a few minutes ago...

    5) Lastly, maybe your idea is too big in scope. Start with something a bit smaller, or maybe just part of your idea, and get it working and profitable before biting the whole banana.

    I've started a number of businesses - some I've run quite well, some have run straight into the ground. Be cheap, work hard, and focus on turning a profit ASAP. If it takes very long to get to profitability, from where I stand, you're walking the wrong road.

    --
    I have no problem with your religion until you decide it's reason to deprive others of the truth.
  7. Re:That's not the problem... by cas2000 · · Score: 3, Insightful

    > Surely there are many companies that are using
    > the open source code out there, putting it
    > into their systems and then not releasing
    > the fixes/changes back into the open domain.
    > (I know of several companies doing that). So
    > yeah, you can make money that way.. but it's
    > not exactly following the GPL.

    you only have to release your changes IF you re-distribute the GPL code in any way. if you only use it internally on your own machines, there is no requirement to release your changes.

    that *IS* following the GPL. exactly.

    obviously, if your product is software then you will have to release your changes and distribute full source code under the GPL along with the binaries....but if the software is just infrastructure used by your business, then there is no conflict, and no problem - the GPL software that you use is just a cheaper, more flexible tool that you can freely adapt to your own needs. you can optionally choose to contribute your changes "upstream" but you don't have to (it is often wise to do so, though - it avoids re-implementation costs when there is a new version of the upstream code, plus you might get the benefit of some improvements made by other people who use your changes. it's also a good way of steering the upstream project away from directions that are incompatible with your changes, or at least making sure that your needs/changes are taken into account).