2
votes
5answers
142 views
Is there a way to determine if free() would fail?
Is there a way to determine if free() would fail if ever called on a certain memory block pointer?
I have the following situation: a thread having access to a shared resource fail …
0
votes
0answers
26 views
Web Server collapses for ram load [closed]
hey there, i have a question and may not be easy to answer, i really hope you can help me
i have a web server, with just one site hosted, this site is a joomla based website.
the …
3
votes
4answers
45 views
What are some interesting, free, open-source Dynamic Analysis tools for Java?
I am looking for some interesting dynamic analysers to use and report on for a university assignment. The tools should be:
Open-source (so I can learn from them)
Free (both as in …
0
votes
4answers
30 views
Free Intranet website to share data across the organization
Hi,
In our organization we don’t have any intranet website to share the data/information across the organization.
The information could be:
HR Related Information [E.g.: H …
186
votes
66answers
8k views
Most useful free .NET libraries?
I have used a lot of free .NET libraries, some from Microsoft itself!
Which ones have you found the most useful?
Dependency Injection/Inversion of Control
Unity Framework - Micr …
0
votes
2answers
89 views
Ansi C & C++ free e-book source for download
Hello every one,
I am failed to find out the free e-books for c & c++ language. ( Specially e-balagurusami if possible )
Actually, I wanted to give this books for trainees fo …
119
votes
96answers
8k views
What are some good free programming books?
I know of a couple, but I would like to build a list up for some nice holiday reading.
(If there is a book on here you read for free, and really liked, make sure to support the au …
1
vote
8answers
118 views
Free HTML editor for Windows
I'm looking for a free HTML editor for Windows that support combined syntax highlighting.
Basically it means that if I have a HTML document open with both JavaScript and CSS, it …
135
votes
63answers
5k views
Where can one find free software icons / images?
This may not be directly related to programming, but I always find it hard to get quality icons that can be used for software.
I currently have the need for some type of "green ch …
2
votes
10answers
151 views
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 …
1
vote
5answers
163 views
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 a …
0
votes
1answer
35 views
How to test In App purchase again and again and again…?
My in app purchase project working perfectly now, but I need to test purchasing and when once purchase is successfully done it cannot be undone? How can I test in app purchasing an …
2
votes
10answers
266 views
Is there any danger in calling free() or delete instead of delete[]? [closed]
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 …
1
vote
3answers
69 views
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 …
5
votes
7answers
125 views
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 l …
