6,849 reputation
22145
bio website slashdevslashrandom.wordpress…
location Lausanne, Switzerland
age 33
visits member for 4 years, 7 months
seen 8 hours ago
stats profile views 646

Computer engineer, working mainly on J2EE stuff during the day, coding on whatever seems interesting at night.

Outside of programming, active in different associations (TrocK, AFS, ...).


Apr
18
awarded  Necromancer
Mar
22
comment Generate temporary URL to reset password
GUID are supposed to be unique, but not supposed to be cryptographically strong. It might be possible to guess which GUID will be created and thus create a token for a specific account.
Mar
22
comment Generate temporary URL to reset password
The real problem with this technique is that it cannot prevent multiple use of the same reset token.
Mar
22
comment Generate temporary URL to reset password
@SlavaNadvorny A Hacker will need to know the key to the encryption algorithm as well. You can assume that if the hacker has access to the encryption key, he probably also has access to the stored hashes, so yes this technique still seems like a good idea.
Mar
18
awarded  Nice Question
Mar
5
awarded  Nice Answer
Jan
18
awarded  Revival
Jan
9
awarded  Popular Question
Dec
10
answered How to deploy Java EE application using Jenkins CI?
Dec
1
comment Using PUT and DELETE methods in Spring MVC
Difficult to guess ... first thing that comes to mind: are you sure that your PUT request is a multipart request (I know, dumb question, but sometimes the aswer is obvious).
Nov
30
comment Using PUT and DELETE methods in Spring MVC
Sorry, I misread your post ... my bad.
Nov
30
answered Using PUT and DELETE methods in Spring MVC
Oct
11
awarded  Notable Question
Sep
30
awarded  Yearling
Aug
16
comment Create 2 arrays of random integers
Can you also show us how you check that the 2 arrays are the same ?
Aug
13
comment Does the “open source GPL license” allow any IT company to implement & sell the product commercially
Probably yes, as long as attribution to the original author(s) is preserved. This point is not clear to me when reading the licence, but when there is a fork to a GPL project, the forker usually changes the name. (have you actually read the licence ?)
Aug
13
comment MySQL database with entries increasing by 1 million every month, how can I partition the database to keep a check on query time
No, I really cant help you with PHP, my expertise is more with Java, sorry.
Aug
12
comment Does the “open source GPL license” allow any IT company to implement & sell the product commercially
That's probably the point where you need to see a lawyer. My understanding is that you should publish the modifications in any way you want. The original community is then allowed to integrate them if they want to.
Aug
12
answered MySQL database with entries increasing by 1 million every month, how can I partition the database to keep a check on query time
Aug
12
comment Does the “open source GPL license” allow any IT company to implement & sell the product commercially
It means that the modification you create must be released under the GPL, with the same rights and restrictions as the original code. Basically, you are able to modify the project, but you can not restrict other people from extending your own modifications.