library

Django and NoSQL, any ready-to-use library?

So far Django has good integration with several RDBMS. NoSQL, schema-less and document-oriented DBMS are picking up. What's the status of integration those on-trend and fashionable DBMSes with Django? Are there any production-ready or at least ready-to-use libraries for Django? So far I have these at hand: http://github.com/lethain/co...

how to create executable static library in android?

I ask somthing about static library.. " how to create executable static library in android?" and "How to connect static library in eclipse?" Static library is a binary file, How to understand static library in jni? I wondering static library operation method in android.. (such as static library in vc++) I'm exptected your repl...

Is there a C++ SOLR library?

Hi, I have a Solr box which is fed by a PHP cronjob right now. I want to speed things up and save some memory by switching to a C++ process. I don't want to reinvent the wheel by creating a new library. The only thing is I can't find a library for Solr in C++. Otherwise I will have to create one using CURL probably. Does any of ...

Can I write the contents of vector<bool> to a stream directly from the internal buffer?

I know vector< bool > is "evil", and dynamic_bitset is preferred (bitset is not suitable) but I am using C++ Builder 6 and I don't really want to pursue the Boost route for such an old version. I tried : int RecordLen = 1; int NoBits = 8; std::ofstream Binary( FileNameBinary ); vector< bool > CaseBits( NoBits, 0 ); Binary.write( ( const...

Production-ready PayPal, 2CO and Authorize.Net libraries for Python/Django?

Seems that Python lacks e-commerce solutions compared to PHP and C#. Any production-ready PayPal, 2CO and Authorize.Net libraries for Python/Django? EDIT: http://github.com/johnboxall/django-paypal http://www.djangosnippets.org/snippets/969/ E-commerce: http://www.satchmoproject.com/ http://code.activestate.com/recipes/456361/ http://...

RPC lib for Python

What RPC framework/lib for python could you recommend me? The architecture is client-server, server should stand high load, and connection tunneled over ssl. I've googled such things as pyro, twisted.spread, rpyc. ...

How can I avoid "duplicate symbol" errors in xcode with shared static libraries?

I have static libraries A, B and C organized into Xcode projects. A and B depend on C. When I build an iPhone project that depends on A and B, I get a linker error that a duplicate symbol (from C) was detected in A and B. How can I organize these three static libraries so I can include them in other Xcode projects without experiencing...

Is there a library in php to handle and compress mp3 files in php..?

Hi Everyone... Is there anyway in php to handle i.e compress a mp3 file using php...? Is there any library out there like ZZIPlib library (To handle .ZIP files)...? Thanks for your suggestions...! ...

Options for Evolving Cellular Automata Rules

I recently started work on a research project that has to do with evolving cellular automata rules (for a given task, follow the link if you're curious). I am currently evaluating options for tools that could be used for the job, here's what I have so far: MASON + ECJ Swarm MATLAB MATHEMATICA Some ad-hoc Python CA implementation + Pye...

ActionScript 3 - Install a library

I would like to know how can I install a library packages to a Flash project. I am using Adobe Flash CS4 and the library I'm trying to include is in AS3. The library can be found on http://code.google.com/p/as3ansi/ ...

Using .lib and .dll files in Linux

Hi all, I have to make a project to run successfully on a Linux machine. Right now my project works very well on windows machine. On Windows machine it is compiling and working fine. My project is using one ".lib" and one ".dll" file to do the tasks successfully on Windows. Can i use the same .lib file and .dll file on linux machine to...

Asking about using PHP LGPL Library, wanted to make my software non-GPL and non-LGPL

I would like to ask you some questions about LGPL, I've used a library written on PHP with license LGPL, I had made software and I'm not license it using LGPL or GPL, The libraries is a class' form I had modified the libraries and made a class to access the library, and I access the library through that class, but I'm not make it inheri...

Does PIL create artifacting on the bottom edge of the image when you thumbnail() then crop()? If so, what is your workaround ?

When I call PIL to thumbnail() an image, and then crop(), I get artifacting on the last row of pixels -- they're either mostly black with specks of intense color, or what seems to be a not-resized area of the image ( ie, that line of pixels is at the original resolution and did not scale down with the rest ) This does not seem to happen...

ExpressionEngine 2: Sharing Libraries, or Loading Libraries from other Modules

I’ve got a number of custom modules that use a few of the same common libraries, in particular my database class. Is there a place I can put this commonly used class for use in modules via $this->EE->load->library('mydb'); or, is there a way to load that class in one module when it’s located in the libraries folder of another module? ...

Should I use XML or JSON as a data format in Android Applications?

I'm starting to develop an application for Google Android and heavily relying on a web API that can deliver data in a restful way via json or xml. I now have to decide which library to choose. I saw that google includes org.json classes in the API but haven't tested them yet. How are your experiences? What library/API should I use an...

sYSMALLOc: Assertion failed - any ideas how to debug effectively ?

Hello, My server daemon works fine on most machines however on one I am getting: malloc.c:3074: sYSMALLOc: Assertion `(old_top == (((mbinptr) (((char *) &((av)->bins[((1) - 1) * 2])) - __builtin_offsetof (struct malloc_chunk, fd)))) && old_size == 0) || ((unsigned long) (old_size) >= (unsigned long)((((__builtin_offsetof (struct mall...

Library to parse C/C++ source code

Which library should I use to parse C/C++ source code file? I need to parse source file, calculate how much useful strings inside, how much 'for' blocks, 'if' blocks, how much comments inside. I also may need to insert a comment or small piece of code after each 'for' block. Is there any libraries? May be any library included in Micros...

Supporting Multiple JS libraries

I have developed one of my modules using Dojo. Its gone really well and I have done a lot of custom plugins and server support in Dojo to allow AJAX calls, RPC + SMD communication with my server. However, now that I am getting onto the user side of things, I am seeing that jQuery has some really nice already built plugins. Do you think...

Is the 64bit Windows platform immature? (even if comparing 32bit binaries with 64bit binaries running on it)

I compiled an 64bit binary of ioquake3 and an SDL binary to go along with it and I noticed on Windows 7 64bit, operation, while relatively stable, it doesn't have top notch performance. An equivalent binary on 64bit Debian, runs definitely faster, and perfectly stable. And I'm thinking: with all the major manufacturers still dispatchin...

C# Video Converter library

Hi, I am looking for a C# library(not commandline), commerical or free, that has the power similar to FFempeg. Video encoding is most important. Any suggestions? Best Regards, Rune ...