libraries

Are there any VBScript libraries?

Are there any open source free VBScript libraries? I am doing a lot of windows administration and always find myself writing error prone code. Any help here? ...

How to build Boost::program_options

I wanted to use boost::program_options. After I installed boost, I think that I have to build separatly program_options (http://www.boost.org/doc/libs/1_43_0/more/getting_started/windows.html). But I don't know how to do it. I am trying to compile the C:\Program Files\boost\boost_1_42\libs\program_options\example\first.cpp (http://www.b...

Using urllib2 with Jython 2.2

I'm working with a product that has a built-in Jython 2.2 instance. It comes with none of the Python standard libraries. When I run this instance of Jython, the default path is ['./run/Jython/Lib', './run/Jython', '__classpath__'] I added all of the .py module files from Python 2.2 to the ./run/Jython/Lib directory, and I am able t...

.NET equivalent Java tools and libraries

So I am pretty much been a Java programmer but I play with F# on the weekends. One of hardest part I have with .NET is trying to find the equivalent to some tool or library I had in Java. Sure I can google the equivalent for each tools but I would rather see a side by side equivalent for each tool in one place. I also would like to know...

Is there a library repository for C?

Possible Duplicate: Why there is not a comprehensive c archive network? Everyone knows that C is very small language, it has just language primitives and almost no standard library (no data structures or algorithms). Therefore I have a question, how do I find good C libraries for data structures, algorithms and perhaps system...

eclipse libraries no longer working.

i had put two libraries on the build path of my project, and then i closed eclipse for the night. when i re-opened eclipse, and opened the same workspace, the libraries "aren't working" in that eclipse isn't doing any of the helpful things it was previously doing, like underlining bad syntax with red squigglies, reporting things that did...

'METHODNAME' as Client method versus irc_'METHODNAME' in twisted

Looking at twisted.words.protocols.irc.IRCClient, it seems to me like there are some strangely redundant methods. For instance, there is a method 'privmsg' but also a method 'irc_PRIVMSG' As another example consider 'join' and 'irc_JOIN' What I want to know is why the redundancy, those are just two examples of many. Are the two differe...

PyQt4 libraries and installation on Mac OS

Hello everyone, it has been a while now I'm surfing the net trying to find the way to sucessfully install PyQt4 on different Mac OS's and I can't figure it out. Does anybody know if there is out there a package I could easily install without having to go through the compiling? I'm developing sone Python tools with PyQt guis and the ide...

Referencing unmanaged librararies from managed code, adventages and disadvantages ?

HI all, I would like to call from my C# code, unamanaged library functions like presented below. There are two options and the both works. In this moment "Beep" function is simple and have no input/output parameters, pointers, references... I am wondering in more complex cases what would be adventages and disadvantage of both approches ...

http c++ library?

Hi i am wondreing if there is some kind of c++ library that deals with http, http chunking etc. Google did not find anything :D ...

Compiled .dll files requiring msvcr100.dll to load

I have a dll file compiled in MSVC++ 2010. It doesn't require any other extra library, yet only half of its users can load it because some are missing msvcr100.dll. Looking at the dependencies, it is requiring some basic functions like memcpy free malloc, though I thought those were standard C runtime functions. The code generation setti...

COM type library and Interface exposure

When you have a COM client that exposes an Interface for an out of proc COM server to access, do you have to register the type library or .idl file with the system for the server to be able to access the interface? I'm not sure if I can generate a proxy/stub DLL from this client process to register with the system. Does it matter in wh...

Most efficient way to call Perl Libraries from within PHP?

Possible Duplicate: How can I use Perl libraries from PHP? I would like to make use of some libraries only available in Perl from my PHP applications. I haven't used Perl before but have been looking into it some and am still not sure of the best way to do this.. it seems a lot of the resources I found online were pretty old t...

Libraries for standard stuff (ie: cout, etc) *NEWBIE QUESTIONS* :)

Hello everyone. I was wondering about the standard C libraries that contain all the functions/definitions like abs(), cout streams, printf, etc. I'm familiar with the header files (stdio.h, cmath.h, time.h, etc etc) but there doesn't seem to be any corresponding .lib or .dll anywhere (ie. stdio.lib, time.dll, etc). Where is the actual...

adding user defined libraries to SVN

I am developing a project for which I have used a number of external libraries (in jar format). I have added all of the external jars I have downloaded and added to the build path to our version control (subversion) as well. However it has recently come to my attention that a number of the libraries are not in the SVN tree. I have look...

Editable assembly dependency graph generation

Does anyone know of a tool, or any solution (preferably free), to automatically generate editable assembly dependency graphs (such as Visio diagrams)? I have found similar threads online, but the several tools recommended (.Net Reflector Graph add-in, Dependency Visualizer, GraphViz, etc) generate only image files (PNG, JPG, SVG, etc). ...

C++ Portability between Windows and Linux

I have a question about writing programs to be portable between windows and linux. Recently I have realized that if you write a program that uses any sort of external library, if that library doesn't have a linux version (or a windows version when developing in linux) then you're screwed. Here then is my question: if I write a program ...

Are there any exsisting abstract file catalog libraries?

I'd like to make sure I'm not reinventing the wheel with my current project. I'm writing a tool that creates a catalog of content for a CAD program, which catalogs files. My Catalog class represents a hierarchical structure of files and folders. Files in the catalog can have additional meta data stored with them, which should not modify...

Using 3rd party java libraries, like com.jcraft.jsch, with clojure

I'm experimenting with clojure and am trying to get a feel for using 3rd party libraries. I've been able to download some source, bundle it into a jar file with leiningen, put it in my classpath and (use 'lib.etc) in my script. I've also played around with the objects in java.lang.*. I haven't had any success with 3rd party java, th...

Image comparison - rotation, alignment and scaling

Hello guys, I have the following needs. There are some number of forms, i.e blanks - for example the ones used in surveys. The ones which aren't filled with information, I will call image templates from now on. Apart from the image templates, I have also many images, which are essentially the image templates filled with information. For...