schnaader

8,398
Reputation
358 views

Registered User

Name schnaader
Member for 1 year
Seen 8 mins ago
Website
Location Germany
Age 25
Math student at Technische Universität Darmstadt, Germany. Major programming languages: C/C++, Delphi and ASM.
57s
answered Can you make a statement like this
3m
revised Can you make a statement like this
code layout fixed
27m
comment C++ extract polynomial coefficients
See my edit. __
27m
revised C++ extract polynomial coefficients
added 289 characters in body
48m
answered C++ extract polynomial coefficients
50m
comment C++ extract polynomial coefficients
You perhaps should go for -4, 1, 0, 4, -3 so you have the coefficients for all exponents (including 2) or create an additional array 0,1,3,4 that stores the used exponents.
3h
comment How to correctly free/finalize an ActiveX DLL in Delphi?
And about the "don't worry" part: I know this leak isn't that important, but FastMM will show about 30 other leaks, some of them childs of TAutoObjectFactory, some parts of TODNCServer, so it will get much harder to spot new memory leaks.
3h
comment How to correctly free/finalize an ActiveX DLL in Delphi?
Well, the code is simple: In the initialization, right after assigning pAutoObjectFactory, call RegisterExpectedMemoryLeak(pAutoObjectFactory);
5h
revised Practical COW example program?
added COW link
5h
revised How to remove a row in two-dimensional array
code typo corrected
5h
revised How to get count similar word in list?
layout fixed
8h
asked How to correctly free/finalize an ActiveX DLL in Delphi?
1d
accepted Saving large images created in Flex
1d
comment What is the performance penalty of operator overloading STL
Of course, memory leaks can happen in Java - see here: ibm.com/developerworks/library/…
1d
comment Saving large images created in Flex
So then try to increase the size of the image slowly to see where the limit is and then use f.e. the half of this limit to be on the safe side.
1d
answered Saving large images created in Flex
1d
accepted Why won’t this code output to a file?
2d
accepted How do I convert a char string to a wchar_t string?
2d
answered How do I convert a char string to a wchar_t string?
2d
accepted How should I generate an initialization vector?
2d
revised Programmatically check if a number is a palindrome
added 53 characters in body
2d
revised while loop in batch
deleted 10 characters in body
2d
comment while loop in batch
You are both right. Edited the answer to correct this.
2d
accepted while loop in batch
2d
answered while loop in batch
2d
comment while loop in batch
So what is your question? Does this batch work or is your problem that it's broken?
2d
revised How should I generate an initialization vector?
added 42 characters in body
2d
comment How should I generate an initialization vector?
You're right, edited the answer.
Nov
23
comment Concatenating PDFs in PHP
pdftk is GPL licensed, isn't it?
Nov
23
comment C windows sendto()
Blame =, == and lines that are too long :)
Nov
23
comment How do you divide integers and get a double in csharp
Just for completeness: Converting one of the ints to double is enough, but it doesn't hurt to convert them both :)
Nov
23
comment Programmatically check if a number is a palindrome
Waiting for a Brainfuck answer - this will be even more obscure :)
Nov
23
answered Programmatically check if a number is a palindrome
Nov
23
comment how do i seed a random class to avoid getting duplicate random values
I'm not complaining about the method/constructor design, but how people understand it. They only see "new Random()" and "r.Next" and think that it will choose a different seed for them, but it doesn't.
Nov
23
comment how do i seed a random class to avoid getting duplicate random values
This is a duplicate of hundreds of other questions about this - they really should've added a Seed method to Random in C#.
Nov
23
revised how do i seed a random class to avoid getting duplicate random values
added 8 characters in body
Nov
23
revised How to tell SQLexec not to wrap characters?
title corrected
Nov
23
comment Assign 10-digit char user ids to 1 of 1000 servers.
Note that such an attempt won't work if you get more than 1000 users and even with a good hash function there will be collisions.
Nov
23
revised How do I pass multiple heap arrays to a new thread?
title typo
Nov
23
comment C# GDI Invert Graphics flipped on the X axis
"flipped on the X axis" and "upside down" both mean that the image is mirrored on the X axis (along the Y axis)
Nov
23
answered How should I generate an initialization vector?
Nov
23
revised C# GDI Invert Graphics flipped on the X axis
title corrected
Nov
23
comment PHP doesn’t handle stack overflow?
Refreshing the page after loading will make it work - strange...
Nov
23
comment PHP doesn’t handle stack overflow?
You shouldn't expect PHP to give nice error messages when it sees something like this: lorienshaw.net/hasselhoff.html
Nov
23
answered PHP doesn’t handle stack overflow?
Nov
23
revised PDF file compression
added 160 characters in body; added 88 characters in body
Nov
23
revised PDF file compression
added 138 characters in body
Nov
23
comment PDF file compression
The current version still is a test version, but works fine. To be on the safe side you can make sure that reconstructed PDFs have the same md5sum or compare them elsewhere.
Nov
23
comment PDF file compression
See my answer for a nice solution to the "already compressed" problem.
Nov
23
answered PDF file compression