free

ASP.NET MVC free book

Can anyone point me to a free ASP.NET MVC book? ...

Bigtable implementations

I would like to know if there is any fast free/opensource BigTable implementations. ...

Content Management System

Can anyone tell me the site where I can build a website which is compatible to host applications such as video and photo gallery? ...

(Free) optimization programs for .Net-programs

What are the good (free) optimization programmers, .Net programmers need to have to optimize their programs? ...

ASP.NET - Free Testing Tools

. Hi, We have built an ASP.NET application and we would like to do functional, regression, load , and stress etc. tests. Would you please let me know if there are any free tools to these tests? Thanks and Regards.. Shruthi Keerthi.. . ...

strtok and memory leaks

hello, I wrote a simple url parser using strtok(). here's the code #include <stdio.h> #include <stdlib.h> typedef struct { char *protocol; char *host; int port; char *path; } aUrl; void parse_url(char *url, aUrl *ret) { printf("Parsing %s\n", url); char *tmp = (char *)_strdup(url); //char *protocol, *host...

C programming : How does free know how much to free?

In C programming, you can pass any kind of pointer you like as an argument to free, how does it know the size of the allocated memory to free? Whenever I pass a pointer to some function, I have to also pass the size (ie an array of 10 elements needs to receive 10 as a parameter to know the size of the array), but I do not have to pass th...

C can someone tell me what is going on here?

I can not figure out what the heck is happening here. What I expect is that the output should say that there is only 1 element in keys, it's saying there are 7 when I have allocated only the 0 position with 120 bytes. void add2(char **b, char *i) { if (!i) { b[0] = (char*) malloc(120); sprintf(b[0], "%s", "hithere");...

multi dimensional char array?

What I am trying to do is create an 2-d array of character strings The following seg faults instantly, what is wrong? void add2(char***b, char *i) { if (!i) { b[0][0] = (char*) malloc(120); sprintf(b[0][0], "%s", "hithere"); b[0][1] = (char*) malloc(120); sprintf(b[0][1], "%s", "bithere"); } else { ...

Is there a free python library for phone calling?

Hello everyone, I'm writting a small python script notify me when certain condition met. I used smtplib which does the emailing for me, but I also want the script to call my cell phone as well. I can't find a free library for phone callings. Does anyone know any? Thanks a lot. -J ...

Silverlight (.NET 3.5) - Good free hosting?

I am ramping up a Silverlight application and would like to be able to use a free hosting account to test that it will run properly in a deployed environment. I was wondering if anyone knows some free hosting services for Silverlight 3.0 applications? ...

Optimal way to free() a malloc'ed 2D array in C

Supposing I have a 2 dimensional array which was created with something like this, char **foo = (char **) malloc(height * sizeof(char *)); for(i = 0; i <= height; i++) foo[i] = (char *) malloc (width * sizeof(char *)); First of all, Is this even the right way to create an array like this?. The catch here is, 'height' and 'width' ...

FCKeditor free commercial license

Hi, just want to ask if there is a free commercial license of FCKeditor? older version maybe? I just need a simple web text editor. Any suggestion?? Thank you. ...

Using strtok() on an allocated string?

Is there anything I should know about using strtok on a malloced string? In my code I have (in general terms) char* line=getline(); Parse(dest,line); free(line); where getline() is a function that returns a char * to some malloced memory. and Parse(dest, line) is a function that does parsing online, storing the results in dest, (whic...

Flash media server alternatives for video streaming

i'm looking for some free media servers for live streaming of video/audio, it would be great if it has HD support; also it would be good if it would be something .net related, cuz i'm making the server side in asp.net ...

Is there any danger in calling free() or delete instead of delete[]?

Possible Duplicate: ( POD )freeing memory : is delete[] equal to delete ? Does delete deallocate the elements beyond the first in an array? char *s = new char[n]; delete s; Does it matter in the above case seeing as all the elements of s are allocated contiguously, and it shouldn't be possible to delete only a portion of the ...

Where can you release eensy weensy helpful little .NET classes?

I find myself writing a lot of reusable code because I couldn't find reusable code that other people wrote. Tiny stuff, like little winforms components, among other things. I am looking for a website where I could release this sort of stuff to the public with licensing on it. I don't need something like Google Code/Sourceforge/Codeplex,...

Best open source database for large web based application

Hello, I am beginning work on a relatively large web-based application with the potential for large throughput and storage of a large amount of data. My expertise lies in MS SQL Server but it is cost prohibitive for a startup project. Is there any alternative to SQL Server (standard) that can handle the same throughput, has similar f...

Using free inside the destructor of an object freed with delete

I'm having a little issue. I have an object that I'm freeing with delete, and it has a char* that's being freed with free in its destructor. The reason I'm using free is because I used strdup and malloc in creating the char pointers. The reason I'm using malloc is because I used strdup to begin with in most code paths. Would this scenari...

c malloc questions (mem corruption)

When using malloc, if it produces a core dump with the error: malloc(): memory corruption: ....... *** Does this mean that malloc tried to allocate memory that was not free to allocate? IF so what are the causes of this? ...