library

Complex HTML parsing with Python

I am already aware of tag based HTML parsing in Python using BeautifulSoup, htmllib etc. However, I want a powerful engine which can do complex tasks like read html tables, lists etc. and present these as simple to use objects within code. Does python have such powerful libraries? ...

.Net SSL server library

I have created a server application that accepts connections over SSL. It's simple and works well enough. However, I'm wondering if there's a library out there that already does that. Ideally, it would be as easy to use as: authenticate with this certificate, listen on this port, and let me know when there's a new client connected. The l...

Python library for experimenting with compiler optimizations

I want to learn about compilers and some optimization techniques, and I thought it would be helpful to do some quick implementations of the algorithms. Is there a library/framework for Python that can make things easier (like the Natural Language Toolkit) - generating the parse tree, manipulating loops, methods? I saw that Microsoft...

How to create a Cocoa library and use it in python.

Hello. I've been making a game and the python library I was used is terrible (Pyglet). I want to try using Cocoa for the OSX version. I'll be able to figure out using the objects from classes like NSWindow and NSOpenGLView and then put these objects in my own class for the game loop. I have no idea how I can use PyObjC to load a dynami...

Control elements library

Hello all, Does anyone know a controls library, which meets the following requirements: Open source; Full modern OSs functionality (buttons, checkboxes, radiobuttons, scroll bars, progress bars, sliders, tabs, menus, lists, trees); Handleless (controls shouldn't be derived from OS's window entity); Shouldn't hardcode appearance (neith...

How to install/upgrade Lisp libraries on Debian

I recently discovered that some of my favorite libraries have been removed from Debian, e.g., Hunchentoot: For a while now most Common Lisp projects do not do releases anymore, our plan is to move to proving a cl-build like environment inside debian I've looked at the mailing lists and Debian Common Lisp homepage and not found an...

Exposing existing class library to WCF service

Hi guys, I have an existing class library with all the classes to communicate with my server. I've created a WCF service that will be hosted on my existing server as part of different application domain. Since I already have the classes I thought it can be exposed on my WCF service to lessen my development time. I successfully hosted m...

Django Python Delete Project App Library

If I want to delete a Django App or Project. Is there a way to cleanly delete it? Or a library in Python? How can I delete and re install libraries. So I am SURE that nothing is left of that library. Thanks a lot ...

How to find function range?

I have an arbitrary function or inequality (consisting of a number of trigonometrical, logarithmical, exponential, and arithmetic terms) that takes several arguments and I want to get its range knowing the domains of all the arguments. Are there any Java libraries that can help to solve a problem? What are the best practices to do that? ...

What's a good java library for graphing tabular data?

i have some tab-delimiter data in csv file, and i want to graph these data, and overlap the graph if possible. i'm currently doing this using excel, which is kinda slow when i have many graphs to make. i'm looking for ways to automate this, the data is generated thru some java process, so i would like to extend the process to graph the d...

code helper for c programming

Are there any plugins for visual studio (any version) or any other ide that can show you the standard library function prototypes and their (examples) , return etc for the standard c library... much like the java code helper found in eclipse if I am not mistaken (I am not a java developer but I think I saw something similar to what I des...

Failed to getResource() utf file from package in Android

Hi, I have a custom java library which getResource() from an UTF-8 encoded text file in the package. keyWordPairs = new Hashtable<String, Vector<String>>(); try { File pinYinDatabase = new File(this.getClass().getClassLoader().getResource("myCustomLibrary/NewPinYin.utf").getFile()); BufferedReader br = new BufferedReader(new Fi...

What are the good javascript libraries for drawing shapes?

I'm wanting to create various shapes in HTML pages and am looking for a decent javascript library to simplify the task. What type of js libraries exist for drawing shapes on the web? I am familiar with Raphaël for SVG - but don't really know what else is out there for SVG or non-SVG drawing. ...

Python newbie - help needed in choosing modules/libraries

i am learning python.. i want to do certain kind of scripting in python.. like, i want to communicate 'wmic' commands through dos promt.. store the result a file.. access some sqlite database, take the data it has and compare with the result i stored.. now, what i dont get is that, how should i proceed? is there any specific frameworks o...

Proguard: How not to optimize classes from a library

I've got a JavaME project here in which I had to include a given library. I'm using Netbeans 6.8, so I just added the library to the project. The classes of the library are then correctly packed into the resulting jar-file. My problem now is that the classes of this library must not be touched by the Proguard obfuscator. So I've tried ...

How do I make my library simple, yet target the different frameworks?

I created an API wrapper called Chargify.NET and I'm starting to see a pattern develop that could potentially be solved by targeting .NET 4. The issue is that as they enhance the API, I need to create more and more overloaded functions to handle one specific action (Creating a subscription, in this case). Right now, I have MANY (I think...

Javascript library for dockable panels/tabs?

In the process of converting a .NET rich application to Javascript. One of the GUI features folks liked a lot was to rearrange their application layout. In .NET this was accomplished via Sandock: http://www.divelements.com/net/controls/sanddock/screenshots.aspx Anything like this for Javascript? ...

If you could substantially alter Java's classpath libraries, whichdifferent decisions would you make?

If you had the chance to significantly change/update Java's classpath libraries, which things would you add/update/change/deprecate/remove? ...

Android-ndk: difference between static and shared library

Hi I'm new to Android ndk and i didn't understand yet which are the differences between static and shared library. Could you explain me what these differences are? When developing a library how could i choose one of them? Thanks a lot ...

Is there an opensource java library to interface to an image scanner ?

Hello all, I would like to make a tool to capture images from an scanner, is there an opensource java library to control / interface with a scanner? (I found JTwain but is about EUR 3000) Thanks! ...