free

What is the most feature rich, ad-less, free web hosting service available on the internet?

Pretty simple question. Looking for recommendations for setting up a free website and having the best answer voted up. All platforms and programming languages included. I value a powerful programming environment over everything else Thanks Note: I'm asking this question for somebody else, I'd personally just pay dreamhost or l...

How to free dynamic allocated variable by SIGTERM?

Hi, I work on code something like this ... HEADERS ... int *var; void child() { ... //some work free(var); exit(EXIT_SUCCESSFUL); } int main(void) { ... //allocate variable var = (int *) malloc(N*sizeof(int)); ... //work with var for(int i; i<PROC_COUNT; i++) { pid_t child = fork(); if(pid == 0) { child...

What is the best FREE programming books available for a C# dev?

So what is the best FREE available for a C# dev? Also if you have any really good books that aren't really related to C# but are still programming related fell free to post them also. Just one rule: It has to be legal to download. I don't want illegal books on my HDD. ...

Free desktop client for Oracle?

Which is the best Open Source free client for querying an Oracle database? It may additionally support other databases (MySQL, Postgres etc), since our development environment often requires switching between different databases. ...

Text editor for editing files over ssh

I can't find any free programmer-oriented text editor that would run on windows and would edit remote files over ssh(sfpt). Any suggestions? ...

What is the best freeware / open source Log File Viewer with a filter and sort option?

I saw the posting about the Best Tail Log Viewer, but it does not support filtering or sorting of custom column names. I've been testing out the Kiwi Syslogd, and you have to pay for the ability to sort and filter. Does anyone know of a log viewing software tool that also supports filtering and sorting? ...

Free UI Tools for Developers

As with many developers in small or mid sized shops, I have to put on my designer hat from time to time. I can't really justify buying something like CS4 or other designer tools. I do currently have a small tool bag of helpful, free tools like Paint.NET IconExtract ColorCop Are there any other good ones out there that I should chec...

Lightweight Free PHP forum software

I've used both Vbulletin and Simple Machines in the past but I'd like something much less bloated. It must have basic features like: user levels, list of users online, avatars, bans, mods, sticky threads, lock threads, etc. Private messaging would be a plus! It must also be easily customisable & clean coded. (And the more lightweight/...

Good, free introductory text to c++?

Hi all, I'm looking for a good book on the basics of C++. I'm relatively new to writing compiled code, and the last time I've actually coded ANYTHING was 2 years ago...basic PHP stuff. Online resources are GREAT and I would prefer something that is legally available for free. Any ideas? -FO ...

which code editor is free and can upload by ftp by a keystroke, and have a side panel for folder browsing?

I like PhpEd because with CTRL-SHIFT-S, it will upload to the test server, so no need to switch to the FTP client, locate the file, and upload it. I also like TextMate because the display is nice (Monaco font is less cramped than Lucida Console and easy to look at than Courier)... and also with a left panel for folder and file listing. ...

Where Do malloc() / free() Store Allocated Sizes and Addresses?

Hi, where do malloc() and free() store the allocated addresses and their sizes (Linux GCC)? I've read that some implementations store them somewhere before the actual allocated memory, but I could not confirm that in my tests. The background, maybe someone has another tip for this: I'm experimenting a little bit with analyzing the heap...

Free Visual Database Design Software?

I am planning to build a web application that will require a relatively complex database. There are several tables involved with many relationships, enough to make it very difficult to keep it straight in my head. I need a simple and easy way to summarize the tables and illustrate the main relationships so that it visually makes sense ...

allocating and freeing a char * in c++

Hey everyone, I am getting a heap corruption error I cannot figure out. char * c = (char *) malloc(1); // main loop _gcvt_s(c, 100, ball->get_X_Direction(), 10); if(pushFont(c, (SCREEN_WIDTH - 30), (SCREEN_HEIGHT - 40), message, screen, font, textColor) == false) { //return 1; // error rendering text. } // end main loop f...

Freeing memory returned from C functions.

In C, which is the better practice when it comes to freeing memory returned from functions: Provide a "destructor" function that encapsulates the call to free(). Require users to free() the returned pointer themselves. For example, to open and close a file we do: FILE* f = fopen("blah", "w"); fclose(f); Is this preferable to: FIL...

Is it safe to use Free instead of Release for modal forms in Delphi?

The Delphi online help says that Release should be used to remove a form from memory. However, in many examples for modal forms I have seen this construct: MyForm := TMyForm.Create(nil); try MyForm.ShowModal; finally MyForm.Free; end; Is Free a safe way to destroy a modal form? As I can see in the source for ShowModal, Application...

c free memory

Hello, I have written a problem to practice pointers and allocating memory. However, I am getting a stack dump when I free the memory. Am I freeing in the correct place. Is there anything else wrong with my program that could make it unsafe? many thanks for any advice, void display_names(char **names_to_display, char **output); int...

Can I export Word document(*.doc) from Reporting Service by using free component?

I'm looking for some tool that can generate many document formats like Microsoft Excel, PDF, Microsoft Word, HTML. So, I decide to use Reporting Service of SQL Server 2008 Express. But I found that Reporting Service can't export to Microsoft Word by itself. It need to use some component. Moreover, I can't find any free component to doing...

Does anyone know of a decent free online bug tracker for web development purposes?

Does anyone know of a decent FREE online bug tracker for web development purposes? ...

Visio the standard for software development sketching?

I feel that my professional exposure has been biased towards Visio, by the choice of IT managers and project managers. I've worked only in Microsoft solution centric shops where MS Office was the standard. Are there any other professional shops out there using other tools? ...

What is a good free source control solution

I am looking for a new source control solution. We are currently using an ancient version of VSS, and it sucks. This will be used by only me for now, and at most two or three others in the future. I would like it to be usable from within VS 2008. It has to be free. Our company is not buying any new software due to the economic downtur...