project-management

Git Development Strategy for Small Team [closed]

情到浓时终转凉″ 提交于 2019-12-03 15:11:45
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 version, move those changes to the staging site and then, once approved, those changes are moved live. Our designers, on the other hand, make small edits (when developers are too busy) directly to the staging site and then push live once approved. Also, in some cases, we do not have a staging site and edits are pushed

asp.net MVC Solution/Project layouts [closed]

断了今生、忘了曾经 提交于 2019-12-03 14:19:44
问题 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 . This is more of an open question rather than looking for one specific answer. As we all know there is no one answer that fits all solutions but I am curious to find out how you structure you asp.net MVC solutions and any pitfalls you may have come across in your design or

Best practice to share common libraries between solutions in .NET

允我心安 提交于 2019-12-03 13:33:11
We have pool of MSVS solutions (Solution "A", "B", "C", ... ) that share basic functionality in assembly called "Common.dll". There are 3-5 active solutions (that are under developing) while others are passive and hardly ever be rebuilt. Common.dll is always under developing. There are several options how to keep my solutions code, what will you suggest and why? A). Put common.dll source code to every solution . Pros: it will help active solutions to grow with common.dll side-by-side while passive solutions will be compilable. Cons: it's hard to synchronize active common.dll code between

Any benefit/disadvantages to open beta vs. closed beta for webapp [closed]

柔情痞子 提交于 2019-12-03 10:43:05
问题 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 . This isn't a question about code, but it's programming related. We have a web app that's ready for beta testing. Has anyone noticed any difference between open beta vs. closed beta in terms of the quality or quantity of feedback the testers give or any other factors? 回答1:

How have you implemented SCRUM for working alone? [closed]

余生长醉 提交于 2019-12-03 10:20:15
问题 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 2 years ago . I am working alone at the beginning of a sizable open source project and would like to leverage some of the core ideas/methods from Scrum to help manage my time and remain focused on development and deploying early, demonstrable functionality. I would like to hear from others who have used Scrum alone and what

How would you use AGILE here? [closed]

纵然是瞬间 提交于 2019-12-03 09:49:55
Closed . This question is opinion-based. It is not currently accepting answers. Learn more . Want to improve this question? Update the question so it can be answered with facts and citations by editing this post . I am a big proponent of agile, but a friend of mine (who doesn't know agile yet - hes a managerial type ^^) asked me how I would go about planning and developing a complex distributed project, with a database layer, comms layer, interface, and integration into embedded devices. The agile method emphasises the concept of releasing early and iterating, but in the scenario of a project

How do you manage database revisions on a medium sized project with branches? [closed]

喜欢而已 提交于 2019-12-03 09:25:00
问题 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 . At work we have 4 people working together on a few different projects. For each project we each have a local copy we work on and then there is a development, staging, and live deployment, along with any branches we have (we use subversion). Our database is MySQL. So my

How to tell a project manager “NO” to scope creep [closed]

断了今生、忘了曾经 提交于 2019-12-03 09:16:45
问题 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 last year . While project managers may each have their own personality and management style, it seems that many of them have a pernicious love of sneaking in "scope creep" when they can (whether anyone is watching or not). While they usually mean well (bless their hearts), what's the best

Plastic SCM. Is it the right solution? [closed]

旧城冷巷雨未停 提交于 2019-12-03 08:22:34
问题 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 6 years ago . I know there are some questions already regarding Plastic SCM, but they are over a year old. Has anyone used Plastic SCM lately? What do you think about it. I have used git, and I am currently using Hg. I love the Hg source control, but Visual Studio integration is not great,

Managing JavaScript complexity in a large project

て烟熏妆下的殇ゞ 提交于 2019-12-03 08:21:38
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 sense to write a specific functions (for example, hover and click events may have to be handled