free

Where do you find images and graphics designers for your softwares ?

Possible Duplicate: Where can one find free software icons / images? Hi, As a programmer, I'm sure some of you already experienced the same problem: You create a good software (free, open-source, or for friend-only diffusion, whatever) relying on good code and good ideas but since you're a programmer and not an image designe...

overload operator line 2 and 3, not compiling

program PROG15 (input,output); var invalid_operator : boolean; operator : char; number1, number2, result : real; procedure MULTIPLY; begin result := number1 * number2 end; procedure DIVIDE; begin result := number1 / number2 end; procedure ADD; begin result := number1 + numb...

Need a free Application for network monitoring, traffic per port, and a weekly report

Hi all, I would like to know if there's an open source application that can: -Being open-source (obviously free, no cost at all) -Check which ports are being used and check the bandwith used by each of them. -Based on requirements above create a weekly report. With details of each prt per day and time specifications. I have read abou...

Taming the malloc/free beast -- tips & tricks

I've been using C on some projects for a master's degree but have never built production software with it. (.NET & Javascript are my bread and butter.) Obviously, the need to free() memory that you malloc() is critical in C. This is fine, well and good if you can do both in one routine. But as programs grow, and structs deepen, keeping...

Is there a good free wavelet library for .NET?

Fast is good and support for wide range of wavelet families is also good. ...

Which vendors offer free licenses for use of their products in F/OSS projects?

Which vendors are known to offer free licenses of their otherwise paid and propreitary software in support of Free and Open Source Software (F/OSS) projects? Where possible, please provide a link to the product and the page where the free license offer for F/OSS projects is mentioned. For example, “Open Source License for ReSharper by J...

How to profile and capture double deletion of and memory corruption in c++

Hi I have application that I compiled with VS 2008 on windows 7 with c++ And I got exception I trying to catch this I created pdb file (because I compiled in release) . and see part of the stack ,but it doesn't give me hints on where the error. Im looking for free ways to get this error .can you recommend on free ways to do this? ...

Are there any free tools for building AIR applications?

There is an ongoing argument on the web right now about the "openness" of the iPhone OS and Adobe Flash platforms. Adobe's argument is that anyone can build a Flash application without having to worry about being allowed to distribute it. This made me wonder… is it possible to build and distribute an AIR application without giving any m...

Free server solution for strict content photos with geotags

Hi! I would like to create some kind of open free "group" posting of photos with geotags First I thought about Panoramio, but seems there is no API for photos upload. By now I can see only two ways: Flickr - there are groups but you have to approve group membership anyway, or use tags for grouping which is bad for maintenance Cust...

A commercial software but open and free for personal/edu. How to license?

I am developing a software to sell for business use but am willing to make it free and open-source for personal and educational use. Actually I can see the flowing requirements I would like the license to set: Personal and educational usage of the program and its source codes is to be free. In case of publishing of derivative works th...

Open Source Ad Server

Hey, Is there any Open-Source Ad Server without Openx, because it doesn't have a Self-service account creation. Thanks ...

Open Source ASP.NET CMS

Hey, I'm looking for an Open Source ASP.NET CMS. ! Thanks ...

Hudson Free Temp Space location

Hi I have just installed Hudson on a Weblogic server and I am having issues with the nodes going off line due to the Free Temp Space falling below the 1gig threshold. Now I have checked my /tmp folder (thinking Hudson uses that) but it is sitting at 10gigs free. Would anybody be able to point me to the folder Hudson uses? Also I am u...

Check for free domain names from a list of 5000 words

I have a list of 5000 words I would like automatically to check which ones are free as xxxx.com domain. Is there a free service to do so instead of copy/pasting thousands of times in register.com I am not searching for an automated solution to make profit of it. I need to buy a domain for myself. ...

Is there any free svn for visual studio plugin?

Is there any free svn for visual studio (9 10) plugin? (opensource will be +) ...

Any web service i can use to store small amounts of data (for free)?

any web service i can use to store small amounts of data (thinking XML or JSON) for free if possible? i am thinking i wanna create a small todo app just exploration/learning (so preferably free) that also backups data to the cloud so they can use it on smartphones for example? ...

Qt LGPL licencing for a free application with closed source

I'm working on an application developed with Qt 4.6.2. I'm linking dynamically and I don't want to share my source code. The application is totally free and I don't plan on selling any part of it. I did not make any changes in the Qt library, I'm only using it to develop the application... I just want to share my free application, witho...

In C, as free() knows an array size, why isn't there a function that gets the array size?

Possible Duplicate: If free() knows the length of my array, why cant I ask for it in my own code? Searching around (including here at stackoverflow), I got that malloc() allocates an array and also creates a header to control the array info. In this header, there's also the array size. free() use such information to know how ...

In C, is it possible do free only an array first or last position?

Hi there! I've an array, but I don't need its first (or last) position. So I point a new variable to the rest of the array, but I should free the array first/last position. For instance: p = read_csv_file(); q = p + 1; // I don't need the first CSV file field // Here I'd like to free only the first position of p return q; Otherwise I...

Freeing of allocated memory in Solaris/Linux

Hi, I have written a small program and compiled it under Solaris/Linux platform to measure the performance of applying this code to my application. The program is written in such a way, initially using sbrk(0) system call, i have taken base address of the heap region. After that i have allocated an 1.5GB of memory using malloc system c...