Tagged Questions

18
votes
7answers
901 views

Is there an MD5 Fixed Point where md5(x) == x?

Is there a fixed point in the MD5 transformation, i.e. does there exist x such that md5(x) == x?
5
votes
14answers
891 views

How can you concatenate two huge files with very little spare disk space?

Suppose that you have two huge files (several GB) that you want to concatenate together, but that you have very little spare disk space (let's say a couple hundred MB). That is, g …
2
votes
5answers
120 views

Is the PHP file instantiated on every AJAX call?

I was just wondering how the PHP is behaving in the background. Say I have a PHP which creates an array and populates it with names. $names = Array("Anna", "Jackson" .... "Owen" …
2
votes
13answers
302 views

Will reassigning a variable in every iteration of a loop affect performance?

Consider the following two ways of writing a loop in Java to see if a list contains a given value: Style 1 boolean found = false; for(int i = 0; i < list.length && !fo …
1
vote
3answers
273 views

Creating a cout function in C?

This is a totally hypothetical question, but I have to know the answer. I assume most C++ compilers are written in assembly. Which makes them different languages entirely (I could …
1
vote
9answers
302 views

Alternative to Filename Extensions?

Since reading this question, I'm wondering: What would be the Right ThingTM to do to associate a UNIX file (ie, blob of data) with a file type? We have file extensions (DOS), dat …
0
votes
4answers
121 views

What would a multithreaded UI api look like, and what advantages would it provide?

Or, equivalently, how would you design such an API. Expected/example usage would be illustrative as well. My curiosity comes directly from the comments (and subsequent editting o …
-4
votes
5answers
157 views

Lots of the tests in the test suite are failing! Any advice on debugging it?

I already solved this but thought I'd ask anyway... I have a large application with a reasonably comprehensive test suite and unit test system. I was working on it and made a chan …