Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
10answers
1k views

Boost is just great and free … Is there a catch?

The reason for this, I find myself being asked to make replacement classes for boost's classes in a commercial project. And I am asked to test them against the boost class's behaviour. This makes ...
7
votes
3answers
194 views

How bad is it to override a method from a third-party module?

How bad is it to redefine a class method from another, third-party module, in Python? In fact, users can create NumPy matrices that contain numbers with uncertainty; ideally, I would like their code ...
5
votes
4answers
109 views

Danger in loading third-party css?

Are there security or browser compatability concerns with loading third-party css via js? Goal: Allow partners to style landing pages with their own look/feel by passing us a link to their ...
4
votes
4answers
194 views

best practice for python third party library

I'm developing some application on Python (3 if this means something). What is the best practice to use 3d party libraries for development process and end-user distribution with following ...
2
votes
4answers
50 views

Looking for Best Practices. What are some dos and Don'ts for extending a third party product to allow for merging new versions as easily as possible

So I have been charged with taking an active third party product that we own source code for, and making proprietary changes that will break compatibility with future updates of the product. This ...
2
votes
2answers
441 views

Storing 3rd party library into source control with Continuous Integration usage

I just committed a very large 3rd party library (Boost) into our source control. I set it up with its own repository. I tagged its version so that other projects could svn:externals this specific ...
2
votes
5answers
239 views

How do you monitor, manage, and run untrusted third-party code in a hosted service?

Let's say I'm running a hosted service that wishes to allow plugins written by third-party clients. Perhaps a gaming service provider that provides infrastructure but allows clients to develop ...
1
vote
3answers
34 views

How to reference third-party library source code for client use in GWT

The GWT documentation states that all the source code for compilation to JavaScript on the client-side must be in a "sub-package" of the gwt.xml file. How does this work for when one references ...
1
vote
1answer
165 views

C#: How to inject VBA code into Excel .xlsm without using VBA Project Object Module Interop?

My goal is to add macros to an excel workbook without having to enable "Trust Access to the VBA Project Object Module" in the Excel Trust Center. (Enabling access seems a security risk). Found random ...
1
vote
1answer
51 views

Detecting and terminating slow third party javascript requests

I'm trying to find a solution to the following problem: We're using number of Tracking Pixels on our website to gather stats about our visitors. However, often some of those third party javascript ...
1
vote
3answers
88 views

Viewing source code for 3rd party jar in eclipse

I am working on a java project in Eclipse. In this I am using a 3rd party jar which I have put in the java class path. Now I want to understand the code in the jar file and want to see the actual code ...
1
vote
3answers
27 views

Install libraries in a different dir

I want to install pygame on my system, but I don't want to mix the standard libraries with third-party libs. If I install pygame on a different path, how can I then modify sys.path so the interpreter ...
1
vote
0answers
97 views

Best tool for detect and report third party software licenses at your code

Does anybody know good tools for analyze and detecting third party code (or pieces of code) at own projects? For example, I use some code from Sun (CDDL) in my project and had copyrights, but other ...
1
vote
1answer
260 views

WPF Prism Assembly StrongNaming

I am trying to strong name my WPF assemblies to add to the GAC. I have references to the to the prim assemblies in my project and the compilation fails with Error 1 Assembly generation failed -- ...
1
vote
1answer
232 views

Keeping third-party libraries under a Mercurial project: Sub-repos or not?

We are developing a closed-source project, versionned with Mercurial. We are using two libraries in our project : One of those libraries is being developed by a third-party. They are using git, and ...
1
vote
2answers
2k views

Referencing JAXB jars - best practice

My first post, so go easy on me. I'm looking for advice on organising and referencing third party jars for use in my j2ee web application. The jars I need to organise and reference are the JWSDP-2.0 ...
0
votes
1answer
17 views

How can I access my own cookies when on a third party website?

I am developing a Web App where my user's login and are then redirected to third party websites where I have a script tag which has been embedded which loads a script fro my own domain. Meaning, if ...
0
votes
0answers
11 views

Including 3rd-party open source components with new open source project?

I've written an offline OpenCL compiler to build kernels at compile time with each supported platform on the system (CPU, GPU - ATI and NVidia if both are available, etc), and report errors back to ...
0
votes
1answer
44 views

Error while using a dll in asp application

I am a newbie in ASP, I started working on a project which shows an error which I describe below with the lines ' VBScript Set lLogOn = Server.CreateObject("RuleEngine26.Transact") ' They have a dll ...
0
votes
1answer
65 views

Third Party Source code in my iPhone app

I am using a few third party libraries, such as JSON, SDWebView, MGTwitterEngine etc... For the MGTwitterEngine for example, the license says: 1. You can use the code in your own products, ...
0
votes
0answers
41 views

What are the most useful features in a tool that analyzes the performance of third party web applications?

It is becoming increasingly common for publishers of prominent sites, such as Mashable and many media sites, to include third party web apps--for example, the Facebook "Like" button, or the Meebo Bar. ...
0
votes
0answers
102 views

Secure way to import third party web-content to my site so it sends over SSL?

As an example, lets say I'm working with a product that requires I put <iframe>s onto my page, which then get embedded into my existing website. The issue being my website is SSL, and the ...
0
votes
1answer
114 views

Suggestions to different ways to “run” third party scripts/applications to convert data into a specific format? Pref. using Java/JavaScript/XML?

I am interested in hearing solution suggestions concerning running third party "logic". To avoid getting this question too bloated I will simplified some things. The background I need to convert ...