Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 334641
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T10:04:26+00:00 2026-05-12T10:04:26+00:00

I’ve done most of my coding on smaller projects for myself and classes, and

  • 0

I’ve done most of my coding on smaller projects for myself and classes, and this summer ended up working on a fairly large project.

For reference, I’m working on a web app using Zend Framework, and I’m working with one other person.

I started working on it in May – at the time, there was a lot of code already written (pretty sloppily) that I didn’t have much control over. When I started, not knowing any better, I was just either editing files directly on the server with vim or using eclipse and ftp-ing the files up. Over the course of working on this, I’ve started using eclipse for editing, and SVN for source control and to deploy the files to the server.

My question is what are other good ways to both help my productivity with this, and also with managing the deployment better, as it gets closer to real people using it?

Edit: Realized two related things I left out.

One is that I’ve been eradicating bad/dangerous code as I end up touching on something that uses it. Is it generally better to devote time specifically to that, or is the way I’m doing it generally efficient enough?

Also, given that I have relatively limited time, is unit testing worth the effort or even appropriate?

Edit #2: I was reminded I left out the project management part. I’ve been having problems deciding what to hit first. I feel like some days I spend as much time keeping tabs on what still needs to be done than actually doing it. Is this common, how do others deal with it?

Changes I’m going to make: The big one I decided was to actually keep track of everything that needs to be done. I have a well-written spec of what’s going to be there in the end, but a lot of times I’d lose little things and say over and over they need to be done. Now I’ll keep track of them. Also, going to look more into a testing and deploying system.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T10:04:27+00:00Added an answer on May 12, 2026 at 10:04 am

    Dangerous Code, I’d suggest should be eradicated if there is a reasonable chance that danger will bite you in the arse it will be worth the time to track it down and fix it.

    Sloppy Code, Fix it as you find it (as it sounds like you need to focus on producing a product to a deadline right now), if any of this turns out to be dangerous code then treat it as above.

    Unit Testing, depends, if you’ve a lot of experience with it you could likely be productive with it. If not it could be a drag on your time. Only you can decide if the trade off is worth it based on your schedule. I’d suggest some simple automated testing might be worth the investment, just to check that the absolute basics of you application work. This can be achieved at a pretty high level of abstraction, you could use selenium or something similar. This just avoids any really embarrassing mistakes being released when the pressure is on.

    If you’re going to have automated tests it’d be good to have an automated build process to run them, ie a continuous integration server. If you’ve other steps in your build such as compilation etc this can make sure these things are working too. Again though, your schedule might determine if you set this up now, or later. I had a large bunch of very basic tests running from my IDE when I remembered, sometime later we got the time to setup Hudson for our continuous builds and haven’t looked back.

    Prioritising Work, It’s ok to not always know which is the important task to hit next. You need a list of everything outstanding, where I work it all goes in bugzilla. After this you need broad priorities on those things, If you’re working towards a v1 of you product I’d suggest you make the prirorties v1, v1.1 and Road Map. After this you need to decide the next one or few things to work on. Depending on how often you want to return to the list it’ll be one thing, or a bunch. This may mean sitting down with your partner and going over the list and working out what to do and how to do it. One problem I notice sometimes when I don’t know what to do next is that I actually don’t know how I’m going to do any of the next jobs, realising that often makes it pretty clear what is important next and that I just need to figure out how the hell to do it.

    Managing work, If you’ve got a single place for new enhancements etc to go, ie bugzilla or user voice, make sure people use it and don’t expect you to put things in there for them. Make a point of weekly (or whatever frequency works) checking over new entries and giving them a priority. The point being you can process these in batch freeing you up from the interruptions of dealing with them as they come in.

    Better Deployment, You say you’re using svn for deployment. I presume you just do a checkout straight to your production system. You don’t say if you’re using tags or branches at the moment. When you do deploy I’d suggest branching at that point, ie if it’s v1 of your product create a v1_maintenance branch. Any bug fixes etc go on that branch and are merged (regularly and frequently, believe me it can get painful otherwise) into the trunk. This allows you to carry on full steam on the trunk whilst still being able to support the released version. You may want to look at ant or similar one day for deployment, but again if you’ve got something that works right now your effort is probably better spent elsewhere

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 267k
  • Answers 267k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer You don't want to use eval; a locally scoped object… May 13, 2026 at 12:48 pm
  • Editorial Team
    Editorial Team added an answer Perhaps you could try to use PM. The ExtUtils::MakeMaker doc… May 13, 2026 at 12:48 pm
  • Editorial Team
    Editorial Team added an answer A video well worth having them watch is PDC 2009… May 13, 2026 at 12:48 pm

Related Questions

I've got a string that has curly quotes in it. I'd like to replace
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
I have a French site that I want to parse, but am running into
I have text I am displaying in SIlverlight that is coming from a CMS

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.