5
votes
2answers
221 views
Fun with md5 - digests of digests
Two questions actually:
1) Does there exist a 128-bit number whose md5 hash is itself?
X == md5(X) - does 'X' exist and can it be found without brute force?
2) Does there exi …
5
votes
5answers
107 views
What is an exciting area of database research? [closed]
I'm in graduate school and about to start a project related to databases. The professor has provided a list of topics for us to choose from, but we are also free to suggest somethi …
8
votes
14answers
928 views
Does “if ([bool] == true)” require one more step than “if ([bool])”?
This is a purely pedantic question, to sate my own curiosity.
I tend to go with the latter option in the question (so: if (boolCheck) { ... }), while a coworker always writes the …
1
vote
1answer
101 views
Prove that binary trees with the same inorder and preorder traversals are identical?
Does anybody know how to prove that if two binary trees have the same inorder and preorder traversals, then they are identical? (perhaps by showing that you can't have two differen …
7
votes
22answers
314 views
Code that causes physical effects in hardware?
A couple of years ago, I remember reading about an academic project that executed a specific sequence of instructions whose effect was to cause the targeted processor to catastroph …
8
votes
3answers
353 views
Can someone please explain the difference between Big-O and Little-O Notation?
I'm having trouble distinguishing between these these two. Can someone please explain the differences to me? I'm a little slow, so examples would probably help.
Thanks
2
votes
1answer
47 views
Optimal Multi-page Navigation
I have encountered many web sites and even desktop applications that have a breadcrumb type control to navigate pages of information.
For example, given X pages where the user is …
4
votes
4answers
455 views
Where can I find good open source code flow visualization software?
I am working on an academic research regarding some very long functions in the Linux kernel (link, link).
For that research, I would like to use some code flow visualization tool, …
4
votes
2answers
43 views
Academic papers concerning Task changes and productivity?
I'm currently writing up a technical report for a course, and I'm to source at least one academic/scientific paper, which is difficult since my focus is on programming (It's an gen …
2
votes
3answers
507 views
Identity column maximum value in SQLite DBs
I have a purely academic question about SQLite databases.
I am using SQLite.net to use a database in my WinForm project, and as I was setting up a new table, I got to thinking abo …
1
vote
2answers
100 views
Entropy repacking
I have been tossing around a conceptual idea for a machine (as in a Turing machine) and I'm wondering if any work has been done on this or related topics.
The idea is a machine th …
3
votes
3answers
194 views
Regular expression for finding a regular expression?
Does anyone have code for finding a file that contains a regular expression? I would assume you could have two different flavors, one for BREs and one for EREs.
You would think s …
2
votes
3answers
156 views
Help understanding academic notation for type system
I'm trying to understand an academic paper (pdf) about programming language design. In particular, it describes a lightweight version of Java called Featherweight Java. It has typi …
2
votes
4answers
119 views
Source Control for an Academic Research Group?
In contrast to most software development organizations, our little research group within a university department consists of a professor and a flow of grad and undergrad students, …
10
votes
9answers
990 views
Algorithm to determine how positive or negative a statement/text is
I need an algorithm to determine if a sentence, paragraph or article is negative or positive in tone... or better yet, how negative or positive.
For instance:
Jason is th …
