moonshadow

10,800
reputation
300 views

Registered User

name moonshadow
member for 1 year
seen 3 hours ago
website
location Cambridge, UK
age 30
A software engineer working in the games industry. Check out my photos!
1d
awarded  Nice Answer
1d
revised Java - to i++ or ++i and whats the difference
added 197 characters in body; added 84 characters in body
1d
accepted Binary files and cross platform compatability
1d
answered Java - to i++ or ++i and whats the difference
1d
answered C Debug Print Macros
1d
comment Binary files and cross platform compatability
@Stick it: By "sentinel members", I mean arrange for the top-level structures written to your file to contain a member with a known constant value, and also place one at the end of the file; at load time, check that these members contain the value you expect - this should catch problems with sizes / padding differing between the compilers.
1d
answered Binary files and cross platform compatability
1d
comment why do these regex tests let certain characters pass?
How are you checking your string? Could you post the entire block of validation code?
1d
accepted Problem with bin/sh -i in a forked process, error: ‘can’t access tty, job control turned off’
2d
answered Problem with bin/sh -i in a forked process, error: ‘can’t access tty, job control turned off’
2d
revised Any value in salting an already “strong” password?
added 8 characters in body
2d
comment Any value in salting an already “strong” password?
It's not irrelevant, or at least is not made so by the reasons you cite. The question is whether the attack is a class break or not - whether the cost of an attack is to be paid per target or per hash algorithm; this is true regardless of whether the user reuses the passwords or not.
2d
accepted Any value in salting an already “strong” password?
2d
comment Any value in salting an already “strong” password?
The presence of salt means I can't reuse the results I generated while bruteforcing one server to bruteforce another - I have to start over again from scratch for each target. Also, I need to know the salt in order to be able to find a plaintext collision, although generally if the hashed salted password is available to me, the salt also is.
2d
answered Any value in salting an already “strong” password?
Dec
19
answered 0xDEADBEEF or 0xdeadbeef? Upper or lower case hex?
Dec
18
answered Whats your favorite software book that was fun to read?
Dec
18
revised Java mutual exclusion
added 29 characters in body
Dec
18
answered Java mutual exclusion
Dec
18
comment Toggle form visibility with javascript
Might want to get rid of the .toggle()s in the HTML.
Dec
18
answered Concat Macro argument with namespace
Dec
18
comment Hooking “Open in new tab” and “Back”
developer.mozilla.org/En/XUL_Tutorial/…
Dec
18
comment Hooking “Open in new tab” and “Back”
developer.mozilla.org/en/XUL
Dec
18
answered Decode JSON data in Java
Dec
17
answered How do i put stars into `read`?
Dec
17
revised thread synchronization - delicate issue
added 62 characters in body
Dec
17
comment thread synchronization - delicate issue
@Pierre: yes, you've made the increment and comparison an atomic operation, as I suggested :)
Dec
17
answered thread synchronization - delicate issue
Dec
16
comment Do you - or does your company - give back to the Open Source / Free Software communities?
Does answering questions here count as giving back to the community? ;)
Dec
16
comment How to save pointer to member in compile time?
@Jon: indeed, just discovered chapeter 15.5: Pointers to Members in my Stroustrup reference. sheepish
Dec
16
comment C++ fancy template code problem
Actually, while this is technically true and required by the standard, MSVC++ (which, judging by the error code, is what OP is using) is not quite this strict - it merely requires the type to be fully declared before the function can be instantiated. If you want to be at all portable, though, do as Shmoopty says; GCC is much less relaxed :)
Dec
16
answered question on struct with char array
Dec
15
comment Unsigned Integer in Javascript
Math.pow won't help you if you use the shift or bitwise boolean operators on the result as it'll be coerced to a 32-bit signed integer; e.g. alert(Math.pow(2,31)|1) yields -2147483647
Dec
15
comment Unsigned Integer in Javascript
And what's wrong with that? 1<<31 gives you the correct value - namely, it has bit 31 set. Bitwise logic - masks, shifts etc - will behave as you expect. Now, if you actually want to display a value greater than ((1<<31)-1) in the form of an integer in the range 2147483647..4294967296, you're going to have to do some nasty thing or other, e.g. alert(x<0?4294967296+x:x) which works by coercing x back to the double representation internally.
Dec
15
comment Unsigned Integer in Javascript
1<<32 results in a 33-bit number. That wouldn't fit in a C/C++ unsigned int either. The other two results are correct.
Dec
15
answered Unsigned Integer in Javascript
Dec
15
revised loop’s counter i as I++ vs. i+1 as position in an array
added 785 characters in body
Dec
15
answered loop’s counter i as I++ vs. i+1 as position in an array
Dec
15
answered Integers and float precision
Dec
15
accepted Can a SHA-1 hash be all-zeroes?
Dec
14
awarded  Nice Answer
Dec
14
answered Are C++ Templates just Macros in disguise?
Dec
14
answered Finding out no bits set in a variable in faster manner
Dec
14
answered Can a SHA-1 hash be all-zeroes?
Dec
14
revised Advice on starting a large multi-threaded programming project
added 1 characters in body
Dec
14
answered Advice on starting a large multi-threaded programming project
Dec
14
answered Min and Max values for integer variable at compile time in C++
Dec
10
accepted Filling out and submitting a form for a newly opened window
Dec
10
answered Filling out and submitting a form for a newly opened window
Dec
10
comment Filling out and submitting a form for a newly opened window
You will not be permitted to refer to objects in a document hosted on a different server to the one the current document was retrieved from. Are both documents on the same server? Are you using the 'www' prefix for one but not the other?