project-management

Git Development Strategy for Small Team [closed]

a 夏天 提交于 2019-12-05 00:04:19
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 5 months ago . We have a small digital team (3 designers, 3 developers) and are looking to integrate Git into our system. At the moment, for most of our sites we have a staging site (dev.example.com) and a production site (example.com). Our developers usually make code changes to a local

MS Access front-end: What are the risks? [closed]

只谈情不闲聊 提交于 2019-12-04 20:18:05
I'm considering building a MS Access front-end for an Oracle database. I'm not a developer (I'm a public works guy), but I do know my way around MS Access and Oracle. The number of users would be 5, possibly growing to 10-20. The front end would be mostly reports, with the odd form for data entry. Security isn't a primary concern; that's handled by the database, and the information isn't sensitive. I'm aware that MS Access projects often end up being disastrous monstrosities . As far as I know, MS Access is not meant to be an enterprise system. Yet I'm considering it, because, well, I don't

How to achieve effective democratic governance for an Open Source project? [closed]

和自甴很熟 提交于 2019-12-04 19:11:48
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 4 years ago . How to successfully implement democratic (non-BDFL controlled) type of management for the open source project? More specifically - for the project using distributed source repositories. What style of communication is best to adopt in such environment? How to encourage merging

What is a use-case? How to identify a use-case? [closed]

旧时模样 提交于 2019-12-04 13:32:28
Closed. This question is off-topic. It is not currently accepting answers. Learn more . Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 7 years ago . The question is quite generic. What are the points that should be kept in mind to identify a valid use case? How to approach a use case? Phil Miller A use case identifies, with specificity, a task or goal that users will be able to accomplish using a program. It should be written in terms that users can understand. Wikipedia's description is overly formal. I'll dig through my other texts shortly. In

Managing JavaScript complexity in a large project

岁酱吖の 提交于 2019-12-04 12:27:34
问题 What should I use to manage growing number of JavaScript files in my application? We are building a django application with several apps. Each app has different functionality, and has to be rendered in three different modes (pc, tablet, mobile). There is a lot of things happening in JavaScript: managing data received from the server, handling user events, injecting HTML snippets, and loading sub-components. Some of the functinality is shared between apps and view modes, but often it makes

organize project and specify directory for object files in Makefile

北城余情 提交于 2019-12-04 12:18:42
问题 Here are my two questions: I am now learning to manage my code with CVS, and I just want to make a repository for my C++ files, Makefile and bash and python scripts only, not the object files and executables. So I made several subdirectories under my project directory: src, bin, scripts, results and data. I put C++ files and Makefile under ~/myproject/src, Bash and Python scripts under ~/myproject/scripts and object and executables under ~/myproject/bin. I am hoping only the files under src

Where in the scrum process is programming architecture discussed? [closed]

放肆的年华 提交于 2019-12-04 10:36:58
Let's say I have my vision and now my product backlog of items. That part is in writing and ready to be used. I am about to create my sprint(s). I am curious. When does a programming team sit down and say "let's use this platform, this framework, and language" and things like "We need a class here," or "I see a way we can use an Interface with that" and so on. When is that kind of talk going on? Are there meetings that come before the sprint where someone decides for all teams - "We are going to use Linux, MySQL, PHP and CodeIgniter" and then one of the teams has a sprint to implement that

How to compete on a scarce spec'd project to avoid team death-march [closed]

血红的双手。 提交于 2019-12-04 09:26:40
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . I'm time+cost estimating a semi-complex software solution, that hasn't got specific requirements in about 75% of features. I would still like to make as good estimate as possible, by getting additional data from the client. There will still be parts that may end up not being able to develop, since there's too

SCRUM - Appropriate non-development resource level? [closed]

橙三吉。 提交于 2019-12-04 09:13:43
Closed. This question is off-topic. It is not currently accepting answers. Learn more . Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 2 years ago . We are trying to run SCRUM for a small development team (three and a half developers) working on an on-line application and we are having trouble getting time from non-development resource e.g. product owner, user testing, etc. I'm working on a business case for getting more non-development resource and for it to be more responsive to our requests for their involvement. Current situation: The product

Django settings.py: Separate local and global configuration

泪湿孤枕 提交于 2019-12-04 08:32:09
I was wondering if it was possible to separate the "local" configuration in Django (Local path to static, templates content which have to be absolute, local DB info, etc...) from the "global" configuration (URL, Middleware classes, installed apps, etc...) so that several people can work on a same project over Git or SVN without having to rewrite the local settings every time there is a commit done! Thanks! Yes, definitely. The settings.py file is just Python, so you can do anything in there - including setting things dynamically, and importing other files to override. So there's two approaches