![]() |
|
We need a developer! - Printable Version +- ZenphotoCMS Forum (https://forum.zenphoto.org) +-- Forum: Support (https://forum.zenphoto.org/forum-1.html) +--- Forum: General support (https://forum.zenphoto.org/forum-4.html) +--- Thread: We need a developer! (/thread-1176.html) Pages:
1
2
|
We need a developer! - trisweb - 2007-02-18 If you believe in Zenphoto and know what it could be capable of, and you want to help make it the greatest photo gallery software available on the [i]entire internet[/i]; if you knew how to program before you learned how to write PHP; if you know at least three languages other than PHP; if you think This is a call for a single developer to add to the current team of.. er... me. I want this project to grow and thrive, but it can't do that with just me doing everything, so I need code help from someone who's motivated to make Zenphoto be a better gallery--the best gallery on the web. I need a creative, thinking, breathing [i]human[/i] programmer, but be warned, if you're going to so much as [i]touch[/i] the zenphoto code, you have to prove yourself. [i]Learn PHP in 24 Hours[/i] will not suffice. Send me an e-mail at trisweb at this domain if you think you're up to the task. I'll be waiting. (Okay, now to lighten up a bit, I seriously am looking for a software master to help out, but please email me even if you're not up to that level. If you think you help with future zenphoto development... and learn the way of the zenphoto... then I could use your help.) (But also seriously, I'm looking for one great developer. If you're it, this is a great opportunity to contribute to what could be the best open source gallery around. Don't pass it up.) We need a developer! - nicosomb - 2007-02-18 i sent you a mail We need a developer! - beoba - 2007-02-19 Rather than requesting large investments up front, I recommend just saying "hey guys, send in some patches!" then letting things grow from there. We need a developer! - trisweb - 2007-02-19 Good idea I guess that's how I started as well... small moves. We need a developer! - chrisv - 2007-02-21 Hej . I am afraid most people matching your description wont have spare time and I guess I am one of them :-. Except for We need a developer! - trisweb - 2007-02-21 Sorry, one of my tutoring students was working on a C digit-adder, and had this statement: ` int carry; if (x > 9) { carry = 1; } else { carry = 0; }` And it struck me that the same thing could be reduced to We need a developer! - trisweb - 2007-02-21 And I am definitely in agreement with beoba-- I'm just looking for developers who want to help to start digging into the code and submitting patches, either for bugs you find, or ones on the bugtracker. Just do whatever you can! We'll go from there. We need a developer! - Msturm10 - 2007-02-26 I'm interested in submitting some patches for Zenphoto, because I like the software. Also, it may be an idea to mention the location of the svn on the website. I found it using Google and that's not the most userfriendly way (and is a barrier for getting people start hacking on Zenphoto). We need a developer! - Chilifrei64 - 2007-02-26 The location of the SVN is posted on the sticky here on the forum We need a developer! - Msturm10 - 2007-02-27 Quote:The location of the SVN is posted on the sticky here on the forum We need a developer! - DarrellD - 2007-02-27 I'm back guys -- sorry for the hiatus. I installed SvnX, so give me about a week to catch up on stuff and I'll see what I can do. We need a developer! - trisweb - 2007-02-27 If you did actually look at the Wiki, perhaps you'd have realized that there is in fact a "Browse Source" at the top that is a full-featured SVN browser [Edit: I just realized there's no link to the actual SVN up there-- adding now to the DeveloperReference and FAQ] Still, you [definitely] have a point-- it should be more accessible. I'll put a link to the developer wiki page on the front page. We need a developer! - Doug - 2007-02-27 Anyone have a tutorial (here or elsewhere) for submitting patches? We need a developer! - Msturm10 - 2007-02-28 Quote:If you did actually look at the Wiki, perhaps you'd have realized that there is in fact a "Browse Source" at the top that is a full-featured SVN browser But I noticed that you've added the location of the SVN in several pages on the wiki! Keep up the good work. I'll try to implement the admin interface for the options and will submit a patch in trac (on bug #10) soon. We need a developer! - keyoshix - 2007-02-28 I would like to help you and your nice Project. If it is possible, i could translate the Application (ZenPhoto) into German. And i could code little Functions in your ToDo List. The biggest Problem is my English Skill ^^ What do you think about it? Tom We need a developer! - trisweb - 2007-02-28 @Msturm, thanks! That would be great. Please try to make it as generic as possible, perhaps implementing the get/set methods in the Gallery class... @keyoshix - You're welcome to help all you want! The best way to start is to submit patches to bugs or enhancements in the bugtracker. For translation, I wouldn't be accepting any specific languages-- what I really need is a general translation framework that can be used for any language. We need a developer! - keyoshix - 2007-02-28 Thanks. At the next days, i´ll try to code and after Testing i´ll send it via bugtracker. I can collect some Information about existing Translationframeworks, and then i can give some informations about it. We need a developer! - bouncey - 2007-02-28 "if you think int carry = x > 9 is elegant;" Elegant, yes. Clear enough to be mainted by more than one programmer over the long term, probably not... It's only worth the programmer's brain power if it's called in every pass through a major loop. Remember - first just make it work at all. Optimizing comes later. :-) My wife adds: "The chances of it rapidly and efficiently doing the wrong operation are way too high." As for audience participation, more modular code would help with scaling up to multiple programmers. Less likely to have check-in and patching issues with version control that way. We need a developer! - trisweb - 2007-03-01 Nods. I have been humbled. I know I have much to learn still, especially in the area of working with a team of programmers. I do recognize that that bit of code is illegible, even if it is "cool" that it's a single line. :-) Like I said, I was just with a tutoring student right before I wrote that and it was stuck in my head as "novel." Zenphoto, on the other hand, I do try my best to make elegant in a different manner -- easy-to-read well-commented code with good modularity, as you have hinted. Each part is divided into a class with a defined purpose and interface. It works quite well from my perspective, and should make sense to others as well, I hope. I'm trying not to do it in the usual PHP idiom... So, I'm learning. shrug. We need a developer! - AlexWilson - 2007-03-01 My experience so far is that, from a developer view, the code is great -- well organised, nicely commented, highly readable. The code itself has been well thought-out so that there is lots of reuse. Don't change what you are doing |