views:

85

answers:

3

I need some help on using two open sources scripts for a small project. The first one is an a URL shortener with image hosting function: http://bit.ly/18ZDo6 and the second is a pure image hosting script : chevereto (dot) com. The first script is object orientated code, and I'll like to know if it's a good approach or should I hire somebody to merge both, means replace the image hosting function of one with the second script. I can't figure this out as I'm not a coder yet.

Thanks

+4  A: 

Find a programmer.

Things don't just magically work, so get somebody that understands what needs to be done.

elmuerte
Thanks elmuerte, that's exactly what I was trying to find out.do I need a coder to change this code with the chevereto code or the code is better as it is, and I should rather look for a designer. Got told, the code is probably better for my purpose, as It's OO coding, and chevereto is procedural and not really better for my purposes. I just ask the wrong question.
Jojo
+1  A: 

You can't just "merge" two separated code fragments/projects into one single without programming experience. Analyze the two scripts an find out how to use it. Then you can think of an interaction between the two scripts. If it's clean object oriented code its usually no big deal.

Fu86
Thanks a lot Fu86, this was very helpfull.
Jojo
A: 

Usually you don't merge scripts. Use a script for a purpose and use another script for another purpose. Keeping the external scripts apart also enables you to update them without (hopfully) breaking your application.

Shoan