Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

68
votes
13answers
20k views

Disable browser 'Save Password' functionality

One of the joys of working for a government healthcare agency is having to deal with all of the paranoia around dealing with PHI (Protected Health Information). Don't get me wrong, I'm all for doing ...
18
votes
8answers
410 views

When is it acceptable to use instanceof?

I'm designing a game. In the game, various game objects extend different interfaces (and one abstract class) depending on what they need to be doing, and are passed to handlers which take care of ...
6
votes
5answers
966 views

PHP:How to send the original password to the user when he clicks forgot password which is encrypted by using md5?

I am using md5 to encrypt the passwords in my project. When user clicks on forgot password and submits his email,I have to send His password to him. But the password is encrypted using ...
2
votes
2answers
515 views

Javascript string to int array

var result ="1fg"; for(i =0; i < result.length; i++){ var chr = result.charAt(i); var hexval = chr.charCodeAt(chr) document.write(hexval + " "); } This gives NaN 102 103. Probably because ...
2
votes
5answers
4k views

Best way to get data into an android app?

Just a little background. I am a proficient asp.net/c#/sql server programmer who has been learning Android for less than 2 days. We have an existing .net website which stores a list of locations in ...
1
vote
4answers
1k views

jQuery's draggable grid

It looks like that the 'grid' option in the constructor of Draggable is relatively bound to the original coordinates of the element being dragged - so simply put, if you have three draggable divs with ...
1
vote
5answers
148 views

Security question

in my cms i have index.php, where client must enter username and password. if they are correct, he'll moove to admin.php, where the cms is. but now hacker can enter to cms/admin.php, so my security ...
-1
votes
9answers
2k views

truly unique random number generate by php?

I'm have build an up php script to host large number of images upload by user, what is the best way to generate random numbers to image filenames so that in future there would be no filename conflict? ...
-3
votes
7answers
215 views

mysql_real_escape more than once

I was just wondering whether it makes a difference if I mysql_real_escape data more than once? So if I escaped data in one part of my website, and then again in another part of code. Would this be a ...