library

json-framework doesn't work with iPhone SDK 3.0

I can't seem to get my app to compile when using JSON-framework http://code.google.com/p/json-framework/ with iPhone SDK 3.0. My app compiles fine for the simulator, but when I go to compile for my device I get a 'codesign error' code 1. I've followed all of the installation instructions correctly, and when I remove the 'Additional SDK'...

Library name for x32 vs x64

I have a C++ static library that supports both x32 and x64 platforms. My question is: should I name the .lib file different depending on which platform? i.e. MyLib32.lib vs MyLib64.lib Intel Math library and TBB handle this using folder name to differentiate between the 2 libraries instead. i.e. x32\Math.lib vs x64\Math.lib Is there...

Which .NET library / wrapper do you recommend for sniffing packets ?

As far as I understand all sniffing libraries in .NET just a wrapper around WinpCap, which is OK. If you know any other better option please write as answer. Have you used any of them? Which one is the best according to your experience? I'm only looking for libraries which have commercial friendly licenses, Also commercial libraries ar...

printfs inside a shared object (dynamic library) not getting printed

Hello, I have a shared object which i create on windows using Real View developer suite tool linked command on windows host- armlink -o mylib.so <"my *.o files given here"> Then i link an application with this mylib.so shared library on linux using gcc tools. I have printf statements inside functions in this mylib.so, but when I run...

Any open source C# OCR library?

Hi, I couldn't get anything out of google, so I ask: Do you know some free open source C# OCR library? edit I need C# option, no coding of wrappers from C++ or similar stuff. the google library's website doesn't work - not sure if it ceased to exist or it's just unavailable which is very uncommon for Google websites. ...

Small open source Unicode library for C/C++

Does anyone know of a great small open source Unicode handling library for C or C++? I've looked at ICU, but it seems way too big. I need the library to support: all the normal encodings normalization finding character types - finding if a character should be allowed in identifiers and comments validation - recognizing nonsense ...

Is there any library/component for dial-up connections?

I want to dial-up through VoIP. Yes, I know that it's almost impossible. I have heard that softmodems use software for DSP, but I guess the code its hardware specific. If I only could isolate the code that makes the modem signal I could use it on my project. Anyone ever heard about a library that would fullfill my needs? PS: iaxmodem on...

How do I add syntactic sugar in my Javascript library?

Right now the library can translate this operation Select * from List where name = k% order by desc to List.filter(function(x) { return x.first_char() == 'k' }).sort().reverse()); Whats the best hack to remove the () so that the developer can write statements like: List.filter(fn(x) { return x.first_char == 'k' }).sort.reverse; ...

How to write my own wrapper in C#?

Hi, In my other question, I've been trying to find someone who knows where to find free open source OCR library for C#. However, it seems there is only C++ library and obviously, C++ is not C#. One of the responds suggested to write my own wrapper in C#. I have pretty much no idea how to do it, where to learn to do it, or what it actua...

How to view code for classes in the .NET library?

I would like to look at the code for some of the classes in the .NET library. I find functions by using intellisense and just reading the tooltips that come up when I select different items. One example is the Contains method that you can use on arrays to search for a given string. I just happened to stumble upon that while working on...

Step through .NET Framework Source Code?

I wasn't sure how to word the question but I would like to step through code as it goes through the .NET classes/methods, etc. Earlier I had asked about how to view the code for the classes in the .NET library and I ended up with .NET Reflector which I promptly downloaded. Now, as an example, I am looking for more info. I have a metho...

Keeping variables global to the library scope in C

Is there any way to keep global variables visible only from inside a library while inaccessible from programs that access that library in C? It's not that it is vital to keep the variable protected, but I would rather it if programs couldn't import it as it is nothing of their business. I don't care about solutions involving macros. ...

How to export symbols from a shared library

Hello, I have created a shared library(*.so) using the *.o object code files(C source code) using RVDS compiler on windows Host. I link this shared object with a application(using gcc for arm target on linux host) and obtain a executable, which on running generates segmentation fault.(I know i have to debug it!) Instead of creating sh...

Multiple apps with common code -- how to approach this?

My company has two or three web apps that use a lot of common code -- a custom MVC framework, utility classes, JavaScript libraries, and so on. We'd prefer not to duplicate all this code in each app, because we end up with several slightly different versions of it in use. But we don't want the apps to require the same exact copy of this...

Integrating Instant Messaging into an ASP.NET application

I was thinking about integrating some instant messaging function into an existing ASP.NET web application, e.g: the web application can display the online-status of users (are they currently logged in with their IM client) users can send messages from the web application to the IM client of other users users can initiate a IM chat from...

Best open source Java library to incorporate Facebook functionality into a Java web app?

What's the best open source Java library to add Facebook functionality to a Java web app? ...

What are the best ways to convert MS word file to image or pdf preferably using java?

I want to convert MS word formatted documents to images and pdf. I am well versed with Java. I was looking for apis using which I can do the same. Can anyone please point me to that ? If you know the best alternatives even though they are for other languages , please update me about that. ...

Data import wizard library for .Net?

Does anyone know of a 3rd party data import wizard that can be embedded into applications? It should import from Excel, Access, SQLServer, csv, tab-separated flat file, XML, Oracle etc. We have a fixed data structure within our application and the user should be able to configure the wizard to match his/her import fields to our own data ...

Linking libsox in Windows

Hello, can anyone help me with linking libsox to my program in Windows? I have made a static library libsox.lib according to directions in INSTALL file in sox 14.2.0 source code version. Is there any way to build a dynamic library? I think it should be easier way... ...

Location of Third Party Dll's in Version Control for .NET Project

What would be the ideal location (directory) to check in Third Party Reference Dll's for a .NET Project in a version control system. Typically i have seen most people to put them under bin, so that the runtime can automatically pickup these files. However is that the right way to go. I originally wanted to have a separate directory whic...