Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
4answers
284 views

How might I handle development versions of Python packages without relying on SCM?

One issue that comes up during Pinax development is dealing with development versions of external apps. I am trying to come up with a solution that doesn't involve bringing in the version control ...
4
votes
5answers
274 views

Information Hiding vs. Hidden Dependencies

What are some common best practices in procedure (or function, module, etc.) design for balancing the desire for information hiding and an appropriate level of abstraction in the procedure's interface ...
4
votes
2answers
211 views

How do you manage external dependencies for your application?

There are many types of external dependencies. Interfacing with external applications, components or services (e.g. Outlook to send emails, TWAIN or WIA for scanning, ActiveX objects and Web services ...
2
votes
6answers
673 views

How do I limit an external DLL to one CPU?

I have a program that I would like to run on just one CPU so it doesn't take up too much system resources. The problem is, it makes a call into an external DLL that automatically uses all available ...
2
votes
2answers
327 views

Beginner C++ Question - Unresolved external symbols! [closed]

Don't be too hard on me! Simply put: foo.h: #include "bar.h" class foo { private: bar it; void DoIt(); } bar.h: class bar { public: void Test(); } foo.cpp: void foo::DoIt() { ...
1
vote
1answer
454 views

How do files get into the External Dependencies in MSVC++2010?

I wonder why one of my projects has VDSERR.h listed under "External Dependencies" and another hasn't and gives me an "undefined symbol" compiler error about a symbol which is defined in there. How can ...
1
vote
2answers
64 views

How to specify a condition on which to complete installation with python setuptools

I'm trying to make a distributable egg with setuptools and my program depends on wget being present, which obviously isn't available in PyPi. I have a little script which checks for the presence of ...
1
vote
5answers
1k views

Exporting external classes into JAR - Eclipse

I have few class files that are required for my project. I have added them in the source folder itself in appropriate folder structure. My limitation is that I have to deliver a single jar file with ...
0
votes
1answer
109 views

Interact with Visual Studio without putting a dependency on the SDK?

I've got some Workflow Foundation 4 ActivityDesigners that I'd like to have interact with the Visual Studio IDE (the fact that they are WF4 doesn't relate to the question). These designers are ...
0
votes
2answers
71 views

Multiple Projects, Common Module

I have a library of common functions that I use in several different projects, which works fine on my local machine where I can just add the path to the library, but now that I've put several of my ...
0
votes
1answer
47 views

Project management and bundling dependencies

I've been looking for ways to learn about the right way to manage a software project, and I've stumbled upon the following blog post. I've learned some of the things mentioned the hard way, others ...
0
votes
1answer
1k views

Simple Apache Ant Question: Including library dependencies

I can't quite figure out how to add all of my .jar dependencies to my client jar. This is what I have so far: <target name="create-metrics-client" depends="clean,build"> <jar ...
0
votes
2answers
45 views

Detect When Flash Loads Remote Item

I have a flash player that loads in some additional features from flash files on other sites... for example, the main flash player on on site1, but it displays an animation that is actually housed on ...
0
votes
3answers
1k views

External dependencies / Header files

In a windows MSVC6.0 compiler, if there is a workspace with one project in it, what files would be in the Header Files folder and what files would be in the External Dependencies folder? I thought ...