Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
for a new project should you do it with open-source or start from scratch?
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  9 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
jcoder  
View profile  
 More options Dec 25 2007, 11:17 pm
Newsgroups: comp.lang.php
From: jcoder <deepdiver_b...@yahoo.com>
Date: Tue, 25 Dec 2007 20:17:27 -0800 (PST)
Local: Tues, Dec 25 2007 11:17 pm
Subject: for a new project should you do it with open-source or start from scratch?
php has several open-source system and some are free like
oscommerce,etc. what is most advisable if you have a new project
should you go for open source or create the project from scratch?

you input pls....


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
macca  
View profile  
 More options Dec 25 2007, 11:51 pm
Newsgroups: comp.lang.php
From: macca <ptmcna...@googlemail.com>
Date: Tue, 25 Dec 2007 20:51:46 -0800 (PST)
Local: Tues, Dec 25 2007 11:51 pm
Subject: Re: for a new project should you do it with open-source or start from scratch?
Now that's a very open question (no pun intended...well maybe a
little). It depends on several things, functionality, your budget,
time frame, skill set etc

If you intend to sell your work afterwards, bear in mind that you can,
but your code should also be made freely available. Thats the nature
of open source. But I'm sure you know this.

On the other hand, why reinvent the wheel when you don't have to? If
there are open source projects available that already meet most of
your needs and will be suitable with a little tweeking, then OS can
save a lot of time and money.There is also a lot of OS code available
on the PEAR http://pear.php.net website that can be useful.

Good luck.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
jcoder  
View profile  
 More options Dec 26 2007, 2:05 am
Newsgroups: comp.lang.php
From: jcoder <deepdiver_b...@yahoo.com>
Date: Tue, 25 Dec 2007 23:05:23 -0800 (PST)
Local: Wed, Dec 26 2007 2:05 am
Subject: Re: for a new project should you do it with open-source or start from scratch?
starting from scratch..perhaps for better control. easy to maintain.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
My Pet Programmer  
View profile  
 More options Dec 26 2007, 2:32 am
Newsgroups: comp.lang.php
From: My Pet Programmer <anth...@mypetprogrammer.com>
Date: Wed, 26 Dec 2007 02:32:52 -0500
Local: Wed, Dec 26 2007 2:32 am
Subject: Re: for a new project should you do it with open-source or start from scratch?
jcoder said:

> starting from scratch..perhaps for better control. easy to maintain.

Adding to that:
  - less links in the chain of possible breakpoints (subitem of both above)
  - syntactic choice in naming
  - performance tuning to your own specifications, rather than those of
an unknown entity.
  - configuration issues
  - unintended consequences - without reading through every single line
of code in the open source code, you can't know what it does to session,
other parts of your code/objects, or how it handles SQL queries/Ajax
calls, etc.
  - lack of bloat - You can spend a lot of time trimming down someone
else's code for your own ends and removing extraneous bits (which may or
may not break it), or write your own.

IMHO, of course.
~A!

--
Anthony Levensalor
anth...@mypetprogrammer.com


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
The Natural Philosopher  
View profile  
 More options Dec 26 2007, 4:16 am
Newsgroups: comp.lang.php
From: The Natural Philosopher <a...@b.c>
Date: Wed, 26 Dec 2007 09:16:58 +0000
Local: Wed, Dec 26 2007 4:16 am
Subject: Re: for a new project should you do it with open-source or start from scratch?
jcoder wrote:
> php has several open-source system and some are free like
> oscommerce,etc. what is most advisable if you have a new project
> should you go for open source or create the project from scratch?

> you input pls....

Get the open source, rip off what works well, then start from scratch so
its all known and controlled stuff.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
The Natural Philosopher  
View profile  
 More options Dec 26 2007, 9:25 am
Newsgroups: comp.lang.php
From: The Natural Philosopher <a...@b.c>
Date: Wed, 26 Dec 2007 14:25:06 +0000
Local: Wed, Dec 26 2007 9:25 am
Subject: Re: for a new project should you do it with open-source or start from scratch?

Well I have to say I symnpathise,..but in specific case it can work well.

If there is merely one bug to fix ore one small feature to add, its good.

Otherwise, yes, by and large after many years of experience,I have come
to the general conclusion that its shorter to rewrite it, using the
IDEAS of someone else's code. Not the code itself. And lifting the
better written chunks in toto.

In other words. flagrant plagiarization,rather than adaptation, is the
name of the game.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
NC  
View profile  
 More options Dec 26 2007, 12:57 pm
Newsgroups: comp.lang.php
From: NC <n...@iname.com>
Date: Wed, 26 Dec 2007 09:57:51 -0800 (PST)
Local: Wed, Dec 26 2007 12:57 pm
Subject: Re: for a new project should you do it with open-source or start from scratch?
On Dec 25, 8:17 pm, jcoder <deepdiver_b...@yahoo.com> wrote:

> php has several open-source system and some are free like
> oscommerce,etc. what is most advisable if you have a new project
> should you go for open source or create the project from scratch?

First of all, there are three options, not two:

1. Code from scratch
2. Code from scratch using a third-party foundation library or
   framework
3. Implement (and possibly extend) an open-source application

In my opinion, you should choose option 3 when the open-source
application closely matches the needs of the project and there are
time and/or budget constraints.  For example, if you want to put
together a community site and you have a week to do it, you should
consider Drupal.  (Not to mention situations where you need to deploy
a blog in two hours; try beating WordPress under those
circumstances...)

The choice between 1 and 2 is largely personal; use of third-party
tools can increase your productivity only if you understand them
well.  On the other hand, some third-party tools can increase
programmer's productivity by using techniques hindering the
application's performance, so, again, you need to understand the way
those tools work...

Cheers,
NC


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
jturner  
View profile  
 More options Dec 27 2007, 7:22 pm
Newsgroups: comp.lang.php
From: jturner <codezill...@gmail.com>
Date: Thu, 27 Dec 2007 16:22:46 -0800 (PST)
Local: Thurs, Dec 27 2007 7:22 pm
Subject: Re: for a new project should you do it with open-source or start from scratch?
On Dec 25, 10:51 pm, macca <ptmcna...@googlemail.com> wrote:

> Now that's a very open question (no pun intended...well maybe a
> little). It depends on several things, functionality,yourbudget,
> time frame, skill set etc

> If you intend tosellyourwork afterwards, bear in mind that you can,
> butyourcodeshould also be made freely available. Thats the nature
> of opensource. But I'm sure you know this.

> On the other hand, why reinvent the wheel when you don't have to? If
> there are opensourceprojects available that already meet most ofyourneeds and will be suitable with a little tweeking, then OS can
> save a lot of time and money.There is also a lot of OScodeavailable
> on the PEARhttp://pear.php.netwebsite that can be useful.

> Good luck.

For small solutions, I would recommend http://www.spikesolutions.net

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
jcoder  
View profile  
 More options Jan 1 2008, 11:48 pm
Newsgroups: comp.lang.php
From: jcoder <deepdiver_b...@yahoo.com>
Date: Tue, 1 Jan 2008 20:48:24 -0800 (PST)
Local: Tues, Jan 1 2008 11:48 pm
Subject: Re: for a new project should you do it with open-source or start from scratch?
so it appears that majority vouch for write your own.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »