library

Can Sharepoint document library support folder versioning?

Will the sharepoint document library support folder versioning? For example, I have a document library with a folder say, 'My Folder'. Can i create a new folder with the same name so that there will be multiple versions of that folder. ...

What is the C runtime library?

OK, I know this is maybe the most stupid question ever asked here, but what actually is C runtime library and what is used for? I was searching, googling like devil, but I could find better than Microsofts: "The Microsoft run-time library provides routines for programming for the Microsoft Windows operating system. These routines automat...

Is there a public implemention of LZSS compression in C# or that can be used in C#?

I'm looking for LZSS for decoding some packets from a game engine. If anyone could point me to a library I would be extremely happy. Thanks! ...

Missing A Detail About Boost (.lib files)

Where do I find the lib files for linking my program when using some Boost libraries? Decided to try its threading functionality but I am getting Error 6 fatal error LNK1104: cannot open file 'libboost_thread-vc90-mt-gd-1_42.lib' InterviewPractice after I include Error 6 fatal error LNK1104: cannot open file 'libboo...

How does GCC compile applications that reference a static library

I've read that the gcc compiler can perform certain optimization when compiling an application that references a static library, for instance - it will "pull" in only that code from the static library that the application depends upon. This helps keep the size of the application's executable to a minimum if portions of the static library...

.NET 2d library for circuit diagrams

I want to draw and manipulate logic flow (as opposed to analog) circuit diagrams and I'm trying not to reinvent the wheel. Problems like positioning, line drawing, line crossing and connecting, path finding, rubberband lines, and drag & drop are also identical in flow charts, UML diagrams, or class diagrams so I started by viewing relat...

where are the frameworks for creating libraries?

Whenever I create a PHP library (not a framework) I tend to reinvent everything every time. "Where to put configuration options?" "Which design pattern to use here?" "How should all the classes extend each other?" and so on... Then I think, isn't there a good library framework to use anywhere? It's like a framework for a web applic...

How to catch unintentional function interpositioning?

Reading through my book Expert C Programming, I came across the chapter on function interpositioning and how it can lead to some serious hard to find bugs if done unintentionally. The example given in the book is the following: my_source.c mktemp() { ... } main() { mktemp(); getwd(); } libc mktemp(){ ... } getwd(){ ...; mktemp...

guides for writing php libraries?

i have studied design patterns and want to use them to code an open source library (not an application). but i have never coded a library before and don't know where should i include files, should i have a bootstrap file that loads everything or should every class load their own classes they are dependent on etc. are there any tutorial...

what is the difference between plugin and library?

i wonder what the difference between a library and a plugin is? if a component creates a database (maybe comes with a .sql file or creates through a method) could it still be a library or is it called a plugin or module? cause i am creating a address book component and it provides methods to insert and read records in database. i don't...

how to learn a library/framework structure?

a lot of people are contributing to open source libraries/frameworks. i wonder how these people learn the structure so that they can contribute? lets take doctrine and symfony as an example. is there a blueprint over these frameworks to give the developers an insight of the structure? or do they just download it and study the code? h...

Validation library for PHP/mysql

Hi! Is there any lightweight validation library available for PHP that easily can check if a specific string or value is valid for a known database type - Something like this: if (is_MEDIUMINT($var)) { $this->db->insert($anothervar); } Thanks! ...

What is a good Javascript graphing library to use with GWT application?

Do you have any suggestions of graphing libraries to use with a GWT project? I need to graph a set of data points and several lines. Also some shading of the area under a line. I am open to suggestions of straight Javascript libraries or Java that I can just use with GWT. ...

iPhone best location for code used by more than one viewcontroller?

The more I develop iPhone apps, the more reusable functions I write. At the moment I just copy them into the .m files that need them. But would it be better to have a separate .m file and #import it instead? I don't wish to compile a library, I just want to know how other folks have handled this. Thanks. Clarification: I want other .m f...

Is the Tao framework dead?

I'm looking into experimenting with Tao but I am somewhat put-off by its dead-looking state. It hasn't been updated since 2008 and it looks like their website stopped functioning at roughly the same time. Does anyone have any information on the current situation or know of its stability? ...

Trouble using xib files in libraries

Hi there, I'm having some trouble working with libraries and included xib files. Let me explain my situation first. I've got a project that's running pretty good. Now I need a part of my project as a library for another customer who want's to use some of the functionality in his app. I've created a library with help of that highly recom...

Starting a personal reuasable code repository.

Hi, I've been meaning to start a library of reusable code snippets for a while and never seem to get round to it. At the moment I just tend to have some transient classes/files that I drag out of old projects. I think my main problems are: Where to start. What structure should my repository take? Should it be a compiled library (wher...

Clustering F/OSS Library for .NET

Anyone aware of F/OSS library for clustering algorithms? Specifically interested in Hierarchical Clustering. Surely there are some libs available, not requiring writing up from scratch. p.s I know about NMath, it is $ ware ...

The best way to package iPhone/iPad static libraries?

Hi everyone, I have a couple of static Phone/iPad libraries I an working on. The problem I am looking for advise on is the best way to package the libraries. My objective is to make it easy to use the libraries in other projects and include the correct one in a build with minimal problems. To make it more interesting I currently build ...

create a simple pdf report from html

I'm looking for a way to generate pdf files from html In order to make simple tabular reports I would need the following features table rendering variable page size repeating headers / footers on every page calculated page number / total page css support would be nice I know there have been many similar questions in stackoverflow, b...