project-management

VS 2012 with C++ group include/lib

六眼飞鱼酱① 提交于 2019-12-24 08:38:47
问题 I am currently working on a large project with a friend and it's time we started working on the same files. We have a dropbox, and we're wondering if there was some way to configure the project so all necessary extra includes/.libs for the libraries we are using in there, so if we change libraries or whatever the other won't have to go download and install anything. For example, he's working in OpenGL and I'm working with Lua and other libraries. Is there some way to combine all these into

How to clean up memory in WT?

穿精又带淫゛_ 提交于 2019-12-23 17:13:40
问题 UPDATE 3/27/2013 It would appear that I am not leaking memory, it is just WT not keeping a persistent session every time F5 is hit, or a new user connects. Basically the old session gets deleted, and a new one is made every time F5 is hit, or a new user connects from another machine. I have read some parts of the documentation that mention making the session persistent, so when a user reloads the page, or a different user connects they all see the same content. However, I have not been able

Project Management — resource chart [closed]

别来无恙 提交于 2019-12-23 05:27:55
问题 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 months ago . I have looked and have yet to find a simple Resource-Gantt chart tool. Can anyone recommend a tool that would allow for finite resource scheduling? In a typical Gantt chart tasks are on the left and resources are assigned to tasks, but I would prefer to put resources on the left and assign tasks to people. Some

Project management of both mixed and binary files

最后都变了- 提交于 2019-12-23 04:52:42
问题 we develop software which also includes a lot of art assets (binary files). We would like to version control our source code, but do not keep track of binary files changes (artists works separately and upload new art assets). However, one checkout should produce full tree of both source and art. This is needed because we want to run continuous integration system afterwards (nightly builds, testing). What you could recommend? Maybe any of those web hosted apps allows one to do that. 回答1: I

What is the main purpose and sense to have staging server the same as production?

怎甘沉沦 提交于 2019-12-22 07:51:59
问题 In our company we have staging and production servers. I'm trying to have them in state 1:1 after latest release. We've got web application running on several host and many instances of it. The issue is that I am an advocate of having the same architecture (structure) of web applications on staging and production servers to easily test new features and avoid creating of new bugs with new releases. But not everyone agree with me, and for them is not a such big deal to have different connection

How should I go about writing a node.js web application with both server and client side code?

可紊 提交于 2019-12-22 07:05:31
问题 I'm planning on writing a spine/backbone.js style web application which basically just transfers a large application.js file to the client's browser that communicates with the node.js backend using ajax. The problem is that I don't know how to structure such a project, since I've never seen examples of such an application. I can picture some pros and cons with different ways of doing this Keep everything in one project folder. Both the server side and client side code resides in the same

How should I go about writing a node.js web application with both server and client side code?

帅比萌擦擦* 提交于 2019-12-22 07:02:40
问题 I'm planning on writing a spine/backbone.js style web application which basically just transfers a large application.js file to the client's browser that communicates with the node.js backend using ajax. The problem is that I don't know how to structure such a project, since I've never seen examples of such an application. I can picture some pros and cons with different ways of doing this Keep everything in one project folder. Both the server side and client side code resides in the same

When is a feature considered “DONE”? [closed]

纵然是瞬间 提交于 2019-12-21 12:41:34
问题 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 . As software developers we create lots of... well... code. Much of the code we produce can go towards a new feature or an enhancement to an existing feature. When this is the case, how do we know when this feature is done ? What does done mean in the context of a feature? For example, to Company A this may mean

Does anyone have experience with a private Launchpad instance? [closed]

放肆的年华 提交于 2019-12-21 09:33:10
问题 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 months ago . Has somebody already installed and run launchpad on its own server? I'd like advice as I wasn't able to find any on the web. Besides, the official team gives scary remarks on having its own launchpad. They also say that a lot of administration scripts aren't included in the

Best practice to share common libraries between solutions in .NET

混江龙づ霸主 提交于 2019-12-21 04:30:32
问题 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