Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
6answers
159 views

What happens if I didn't call delete operator after allocating data using new and ending program?

What happens if I didn't call delete operator after allocating data using new. I know that the data that has been allocatted, won't be available until releasing it, but after ending the program ? Why ...
3
votes
2answers
91 views

Good licenses for in-house projects

I would like to find out if there is any type of license with the following requirements: The author decides with whom to share the code (this would be optional) You are free the copy any part of ...
3
votes
9answers
2k views

books or tutorial of complete C# project [closed]

i am beginner C# programmer, i think it's time that i write full functional application, i begin, but it was very hard to planning and implemntation. if you know some resource about this please help ...
3
votes
3answers
2k views

Stackoverflow calling ManagementScope.Connect();

Error im getting: An unhandled exception of type 'System.StackOverflowException' occurred in System.Management.dll My callstack: [Managed to Native Transition] ...
2
votes
3answers
211 views

Python: Why does subprocess() start 2 processes in Ubuntu, and 1 in OpenSUSE?

I've written small gui-frontend in Python that lets users play internet radio channels. The program uses Pythons subprocess() to initizalize mplayer in order to tune into a channel, e.g.: runn = ...
2
votes
2answers
47 views

Debugging multiple exe program

I have a project where I am required to fix this program that has the tendency to crash very non-deterministically. This piece of software performs lots of calculations and database calls and can ...
1
vote
5answers
106 views

C++ Memory managment by returning a pointer to a simple type

i want to ask about the following situation int * foo() { int fooint = 5; return &fooint; } int myint = *foo(); its based on http://www.functionx.com/cpp/examples/returnpointer.htm ...
1
vote
2answers
178 views

How Link changeset with the documents on the sharepoint project portal for TFS 2010?

As I understand configuration management mean you have to track all your artifacts(requirement, design, code,test plan, test cases, test result, user manual) so at any point of time you can bring your ...
0
votes
1answer
31 views

How to install specific Ubuntu packages, with exact version? [closed]

I want to setup a new virtual machine with some specified packages (name and version), that are provided. For example apache2 in version 2.2.20-1ubuntu1 with all dependencies. Even if there is a new ...
0
votes
2answers
40 views

Django Managmenet module

newbie question: I can't find any good tutorial/doc on what the management module is and how to use the __init__.py file. I saw this comment on a website and I'd like to follow it: You can automate ...
0
votes
0answers
48 views

Software Project Managment Myths and their Realities [closed]

can anyone tell me at least five myths and their realities about the Software project Management?.i have searched every where but not find the correct answer can anyone help me?
0
votes
1answer
112 views

Dealing with threads

What is the proper way to manage threads working in the background? For example, I have Activity that creates several threads. I need to do following: 1) Destroy all threads when Application is ...
0
votes
2answers
171 views

How to release a viewController and his view inside of an NSMutableArray viewControllers?

I have a big problem with my memory management. A actually have a big magazine and every page it is render with his own PageViewController. My code it's totally based on PageControl sample of Apple ...
0
votes
0answers
128 views

Android : how to manage many bitmaps loaded?

I'm quite new to Android development. I did a card game with some dozens Bitmap loaded in the onCreate overriden function. This loading take around 3 seconds. Now the game is soon finished, I'd like ...
0
votes
2answers
102 views

Recommend best Free online project managment tool [closed]

Can any one recommend me free project managment tool with svn / git integration?
0
votes
2answers
186 views

iOS Core Data how can it leak?

I was analyzing my app with leaks, and i observe that some core data entity is leaking, how can a NSManagedObject leak? I thought it was managed by the operating system? Are there known leaks in core ...