Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

73
votes
13answers
34k views

grid controls for ASP.NET MVC?

If you are using ASP.NET MVC how are you doing grid display? Rolled your own? Got a library from somewhere? These are some of the known grid display solutions I have found for ASP.NET MVC ASP.NET ...
20
votes
19answers
900 views

How can I combat the “Not Invented Here” syndrome?

In the organization I work for, there is a strong aversion to many things that weren't built in-shop. For example, We make very little use of JavaScript libraries, suggestions for looking at ...
18
votes
12answers
756 views

Can (Should) I put 3rd party libraries in version control?

I've met quite a few people lately who says that 3rd party libraries doesn't belong in version control. These people haven't been able to explain to me why they shouldn't yet, so I hoped you guys ...
16
votes
4answers
2k views

TFS, VS2008: How to deal with external assemblies

We have various solutions with various numbers of projects in them. All checked in to a Team Foundation Server source control thing. Most of them builds as Class Libraries. Anyways, we now want to ...
14
votes
5answers
4k views

Nested git repositories?

Can I nest git repositories? I have: /project_root/ /project_root/my_project /project_root/third_party_git_repository_used_by_my_project Does it make sense to git init/add the /project_root to ...
12
votes
3answers
2k views

How can I get around a 'die' call in a Perl library I can't modify?

Yes, the problem is with a library I'm using, and no, I cannot modify it. I need a workaround. Basically, I'm dealing with a badly written Perl library, that exits with 'die' when a certain error ...
10
votes
4answers
649 views

Effective way to handle singular/plural word based on some collection size

There are many instances in my work projects where I need to display the size of some collection in a sentence. For example, if the collection's size is 5, it will say "5 users". If it is size of 1 or ...
10
votes
11answers
603 views

3rd party libraries, dangerous or the right way to go?

I'm always having a hard time deciding whether or not to use 3rd party libraries in commercial applications. For some reason it scares me a bit. If I use an opensource library is there a risk of being ...
9
votes
1answer
279 views

Ideal Release Methodology, Tools, Structure

I'm at a firm that currently does releases in a very slow, manual way: Each deployable project has an installer. Once the release is ready, somebody remotes into the server and runs each installer. ...
7
votes
5answers
2k views

License to Distribute Matlab code

After writing the code in Matlab, is it possible to compile it into libraries and distribute them to customers who don't have matlab without installing the whole Matlab program? What is the license ...
6
votes
3answers
197 views

How to use my own versions of Clojure libraries?

Say I made a change to a Clojure library (eg. added a parameter to the request-token in clj-oauth) and want to use that changed library in my project. What's the best way to do this, short of ...
6
votes
3answers
323 views

Best practices for wrapping an external library

Our code base uses several external libraries, in order to save time and focus on developing important features instead of reinventing the wheel. Currently the code is littered with direct usage of ...
5
votes
4answers
107 views

c#: How to handle finalizer exceptions from a 3rd-party library?

I got a problem here... Finalizers are always called by .net framework, so the sequence could be out of control; and even if the constructor failed, the destructor still can be triggered. This could ...
5
votes
3answers
73 views

Porting in-house bug fixes in open-source libraries to newer versions

We use some open-source libraries in our product. We sometimes fix bugs in those libraries. What is the best procedure for porting those bug fixes to newer versions? We use SVN, so solutions based on ...
5
votes
2answers
661 views

How to add dependencies to 3rd party library using nexus/maven

i'm trying to use Nexus + m2eclipse/maven-3 professionnally, and i've got a huge 3rd party library that needs a lot of dependencies. Is there any ways to ease my pain by uploading to Nexus this ...
5
votes
4answers
1k views

How do I import a third party lib into git?

I'm looking at how to import some third part code into a git repository. The third party code is the "stm32f10x_stdperiph_lib" that is provided by ST. The lib is actually a bunch of normal c-files ...
5
votes
5answers
3k views

iPhone: Using C Libraries

I'm trying to write an SSH client for the iPhone, and I'd like to use the libssh2 open source library to do so. It's written in C. What is the best way to use this C library for my iPhone app? ...
4
votes
2answers
231 views

How to choose developer tools (Delphi)?

As stated in many places in SO "hardware/software is cheap, people is expensive". Tools, like the ones listed here can really make a difference. Now I am stepping out of the cave and I am realizing ...
4
votes
5answers
226 views

Keep supporting different versions of software each one built with different Delphi or component versions

i need to maintain different versions of a software, the problem is like this: 1) v 1.0 - Delphi 7 - DevExpress build 20 - TeeChart 5 2) v 2.0 - Delphi 2005 - DevExpress build 40 - TeeChart 7 3) v ...
4
votes
2answers
1k views

A Scripting language for XNA

I've written a game engine, which i want to integrate scripting into. However, i've looked at the available choices, which seem to be the following: Xnua Jint Managed Scripting The problems with ...
4
votes
2answers
5k views

How to use 3rd party libraries in glassfish?

I need to connect to a MongoDB instance from my EJB3 application, running on glassfish 3.0.1. The Mongo project provides a set of drivers, and I'm able to use them in a standalone Java application. ...
4
votes
2answers
1k views

ILMerge and 3rd party assemblies

I have a project with quite a few dependencies and would like to cut down on the number of assemblies being distributed. My project depends on external 3rd party dependencies such as Oracle.DataAccess ...
3
votes
3answers
190 views

How to use 3rd party packages in Java

I'm developping my first Java application which actually needs a 3rd party package and now I'm lost as to how to actually use it. The packages I need are from VLCJ so that I can embed a media player ...
3
votes
3answers
672 views

Delphi: how to exclude units from debugger?

Sometimes as I am debugging step-by-step, just before a FormCreate Event or just after the FromDestroy the debugger starts to open DevExpress units (cxContainer.pas, ...) and so before FormCreate my ...
3
votes
3answers
484 views

Java: how to use 3rd-party library?

The code shows compilation with the -cp trigger but not running. Apparently, it cannot find the HashMultimap. Classpath problem? $ javac -cp google-collect-1.0.jar MultiThing.java $ java -cp ...
3
votes
3answers
184 views

Persisting 3rd party objects with JPA

In my current project I am using a 3rd party library which has no JPA annotations. Can I persist objects from that library using JPA and external mappings? Can you recommend a good example? So far I ...
3
votes
6answers
2k views

Handling dependencies in blackberry development

What is the best way to handle 3rd party dependencies in a .jad file? Is it possible to bundle a .jar? Do you need to unpack it and include the .class files?
3
votes
5answers
861 views

libxml2 replacement

I was looking for a better (well documented and efficient) xml processing C library. ¿ Ideas ?
2
votes
2answers
86 views

How do I manage a 3rd party jar dependency with Eclipse, Maven and Jenkins?

We're trying to manage a project made of multiple Eclipse plug-ins. One plug-in has a dependency to a 3rd party plug-in. It imports a class from a library named bpmn2. This library is a jar file and ...
2
votes
1answer
372 views

Git: How to clone a 3rd party library into a subdirectory of my app's repository?

I'm trying to figure out the proper way to clone a 3rd party library (engage.iphone from Janrain) into my own app's directory structure in a way that will let me pull the latest changes and merge them ...
2
votes
4answers
435 views

Delphi 64bit: components compatibility?

Once 64 bit Delphi will be releases (is it for 2012?) how will components will work? I mean I use several 3rd party components: will they automatically work on 64 bit or not? Will they need to ...
2
votes
4answers
2k views

Debugging EOleSysError “Class not registered.” Exception in Delphi

I have a stable Delphi environment (been debugging in it for about three months). We use a plethora of third-party components (too many too enumerate here). Recently, after switching to some ...
2
votes
1answer
588 views

import existing source code as referenced library in eclipse

I have some source codes from a friend that I would like to use as referenced library in my BlackBerry project. I'm not sure about how to package the source codes into a .jar file. I tried exporting ...
2
votes
3answers
663 views

Form Validation library for GWT

Any good, maintained open source (LGPL or equivalent) library for both client and server side form validation, annotation driven, (JSR based preferably) working easily with GWT + GAE? I can't afford ...
2
votes
1answer
113 views

extract interface and adaptor from 3rd party libraries

I'm looking for a tool for .NET libraries that: given: a 3rd party library with only concrete implementations of classes produces: extracts an interface from the 3rd party library and creates an ...
2
votes
2answers
1k views

Whats the difference between armv6 and i386?

I am trying to link libssh2.dylib (a 3rd party library compiled by Matthew Wilkinson using libssh2 library from http://www.libssh2.org) to my xcode project but when I try the following code: const ...
2
votes
1answer
64 views

Polytope library for simulating billiards orbits

My current research project involves studying billiards orbits in four-dimensional polytopes. One sets into motion a point-mass, starting on one of the facets of the polytope, which follows a straight ...
2
votes
5answers
3k views

WinForms XML editor control

Does anyone know of a good XML editor library/control to use in a WinForms project?
2
votes
2answers
170 views

Managing Many Variants of 3rd-Party API Keys in ASP.NET

I have a site that leverages both Google Analytics and Google Maps. Both of these services have API keys that need to be managed in our site's code. For Google Analytics, we have two accounts, a live ...
2
votes
4answers
175 views

Are there any 3rd Party libraries for image processing in C#?

Just wondering if there's anything out there to help make my project a lot easier to deal with. I'm working on a program that uses the Wiimote and infrared pen (mapped to the mouse) to manipulate ...
2
votes
3answers
221 views

Is compiling in debug mode possible despite a third party library having no debug-build lib?

I have an application I'm working on that uses two third party libraries, each with pre-compiled libs and dlls, one of which provides necessary .lib files for both debug and release builds (A[d].lib) ...
2
votes
3answers
50 views

How to reference 3rd party assemblies in OSS project?

Good practice is to include into source repository all 3rd party assemblies required by sources to compile. Then reference such assembies from within repository. The problem is, sometimes license of ...
2
votes
1answer
235 views

Method in Java to create a file at a location, creating directories if necessary?

I am attempting to write a file using java.io, where I am trying to create it at the location "some/path/to/somewhere/then-my-file". When the file is being created, any of the directories on the path ...
2
votes
5answers
418 views

svn and branch for 3rd party

What I have I have a C++ code base and svn is used for VCS. My code uses several 3rd party products. We use different version of each product and use it on different OS (Linux and Windows). The ...
2
votes
1answer
615 views

DevExpress versus Telerik: Specific Feature Differences for ASP.NET Development

I'm interested in coming up with a list of specific feature differences between these two products. I'm specifically looking at DevExpress's DXperience Enterprise subscription and the Telerik Premium ...
2
votes
1answer
120 views

Supress 3rd party library console output?

I need to call a 3rd party library that happens to spew a bunch of stuff to the console. The code simply like this... int MyMethod(int a) { int b = ThirdPartyLibrary.Transform(a); // spews ...
2
votes
2answers
174 views

Should I use a façade over 3rd party assemblies?

We are compiling a list of common functions and methods into a utilities assembly. Part of this utilities assembly is to provide a façade over the Enterprise Library Logging Block. The utility ...
2
votes
2answers
119 views

Locally patching & maintaining third-party library code

Preface Our organization has purchased a javascript library and has found a bug that we need fixed for our next release. Since we purchased the library, we have a reasonable expectation of support, ...
2
votes
4answers
673 views

Is there a way to know which compiler generated a static library?

A third party provided me a static lib (.a) to link with on solaris station. I tried to compile with sunpro, and failed at link step. I suppose the issue is coming from the compiler I use (gcc ...
2
votes
6answers
635 views

C++ SQL Interface

Has anybody produced a C++ wrapper for SQL that allows to interface to flat files or an active DB server or possable an in memory DB depending on run-time configuration. I have seen: SQLite mySQL ...

1 2 3