library

Any detached/independent Session Library in PHP using Flat File or MySQL?

Any detached/independent Session Library in PHP using Flat File or MySQL? ...

Best C++ Matrix Library for sparse unitary matrices

Hello, I am looking for a good (in the best case actively maintained) C++ matrix library. Thereby it should be templated, because I want to use a complex of rationals as numerical type. The matrices what I am dealing with are mainly sparse and unitary. Can you please suggest libraries and also give a small explaination why to use them, ...

C++ library works in vb6 but not in c#

Hello, I'm writing a C# application that has to consume a C++ api provided by my customer. The library works fine when it's referenced by a vb6 application, but when I reference it in my c# application and try to call the same methods, i get a different (wrong) behaviour. The methods I'm calling take a couple of string arguments. Provid...

Help needed Using C File In Project, iPhone

Hello all, I am new to all this, but here goes: There is an apple file that I would like to use parts of for my app. It is called BatteryTimeRemaining.c. http://www.opensource.apple.com/source/PowerManagement/PowerManagement-211/pmconfigd/BatteryTimeRemaining.c I want to be able to use some of the calculations in it, the problem bein...

Is there a WPF control which will show a list of files in an Explorer-like view?

I often need to display a list of files to the user, say, as a result of a search query. Typically I describe my own simple DataTemplate for FileInfo. But I'm lazy to re-implement all the Explorer's functionality: the Views, Sorting, Context Menus and drag&drop. I feel like the problem is common and someone has already assembled a go...

Can I separate C++ main function and classes from Objective-C and/or C routines at compile and link?

I have a small C++ application which I imported Objective-C classes. It works as Objective-C++ files, .mm, but any C++ file that includes a header which may end up including some Objective-C header must be renamed to a .mm extension for the proper GCC drivers. Is there a way to write either a purely C++ wrapper for Objective-C classes ...

Alternatives to Love2D for a Lua 2D Graphics Lib

I'm looking for alternatives to the Love2D graphics/game library which ideally would support the following: Easy primitive rendering (e.g. points, lines, 2d polygons) Ability to load and draw images basic text rendering (though something more full-featured would be nice) Do any others exist? ...

Redefine folder structure of document library with metadata

Hi all, I have a problem in my sharepoint document library structure. Currently the document library consiste of folder sub-folder structure to store a document categorywise. Now our client want to redefine this folder structure with a metadata structure. Can any one tell me how can I use metadata instade of folder sub folder structure...

What's the fastest vector/matrix math library in C for iPhone game?

As the title, I'm finding vector/matrix library in C optimized for iPhone/iPod processors. Or just generally fast. ---(edit)--- I'm sorry for unclear question. I'm looking for fast lib for commercial games for iPhone/iPod. So GPL lib cannot be used. However, I'll stop finding fastest lib, it maybe meaningless. ...

Compiling a C library so it can be used in an iPhone static library

I've never done this before, so I'm not sure where to even start. I have a few projects where I want to use the liblio library, both on the iPhone and OS X. I've put the installation instructions in a gist. Here are my questions, and I'll try and edit these questions as I figure them out. Do I want to use make install to compile these...

Pick video file from iPhone local library

Hi, I know how to pick audio file (MPMediaPickerController), but how to pick video file??? thanks ...

401 UNAUTHORIZED in SharePoint 2007

Hi, I've created a web part that gathers information from a Document Library. It works well under the "admin" web application (we have two web apps: admin site for non-anonymous users; www site for anonymous users. These two sites share the same content). When I open www site, it shows the empty Web Part when it's not reference to the ...

Is there a way to specify how many characters of a string to print out using printf()?

Is there a way to specify how many characters of a string to print out (similar to decimal places in ints) printf ("Here are the first 8 chars: %s\n", "A string that is more than 8 chars"); Would like it to print: "Here are the first 8 chars:A string" ...

Horizontal UIScrollView with images in a component?

Hey guys, I've started implementing a UIScrollView that will contain many thumbnail-sized pictures and will scroll only horizontally. For this, I keep a limited number of UIImageViews created and remove/add them to the UIScrollView as the user scrolls it. The problem is I need to find a way to optimize it as scrolling sometimes gets sl...

versions of C++ standard library

Hi What are difference between The GNU C++ Library (libstdc++), "C++ Standard Library", "Standard Template Library" and "SGI STL". When programming in Linux with compiler GCC and programming in Windos in MSVC (MicroSoft Visual C++), which the standard C++ libraries are using by default? Thanks! ...

Java Compare Addresses

Hi, Does anyone know a library to compare addresses in Java ? Something that would give equality on addresses, written in different ways. For example, it should recognize that "22 Acacia Avenue" and "22 acacia av." is the same address. Of course, this can escalate a lot, that's why i'm asking. Thanks in advance. ...

Dynamic table / matrix data structure for Java

I need a Java implementation of table-like data structure where I could dynamically insert or delete rows and columns. I need to get data from any row or column very fast and with no overhead in selecting row over column or vice versa. Does anyone know libraries where such data structure is already implemented? ...

Multi-threaded network UDP server library for .net

Is there something like twisted (python) or eventmachine (ruby) in .net land? Do I even need this abstraction? I am listening to a single IO device that will be sending me events for three or four analog sensors attached to it. What are the risks of simply using a looped UdpClient? I can't miss any events, but will the ip stack handle t...

C# Library for a collection with many-to-many associations between items? (e.g. one node table & one relationship table)

Hi, Is anyone aware of a C# library that provide a means to manage a Web like map of items, which each item can have relationships to other items in the collection/table. As an example an implementation of this with a datastore might see the schema looking like the below. Picture a page with node objects scattered across it with lines...

What c lib to use when I need to parse a simple config file under linux?

Hi Let's say I have a simple config file that my c program needs to read/parse. Let's say it looks a little bit like this: #Some comment key1=data1 key2=data2 Is there a standard c lib that I can use instead of writing my own parser? Thanks Johan Note: Today I have my own little parser, but there must be some standard libs that...