Tagged Questions

46
votes
41answers
2k views

Should We Mask Passwords?

From Jacob Nielson's "Stop Password Masking": Usability suffers when users type in passwords and the only feedback they get is a row of bullets. Typically, masking passwords doesn't even …
10
votes
3answers
3k views

Difference between <input type=’button’ /> and <input type=’submit’ />

There is no such thing as a stupid question, so here we go: What is the difference between between <input type='button' /> and <input type='submit' />?
9
votes
5answers
1k views

How can I prevent Firefox’s Autocomplete?

There's several section of our site where the user needs to enter some information, and Firefox's auto fill takes over when the page loads - mostly incorrectly! For example, there's a "Fax Number" …
8
votes
4answers
601 views

Do I need to manually close a ifstream?

Do I need to manually call close() when I use a std::ifstream? For example in the code: std::string readContentsOfFile(std::string fileName) { std::ifstream file(fileName.c_str()); if …
7
votes
5answers
2k views

Handling input with the Zend Framework (Post,get,etc)

Hi, im re-factoring php on zend code and all the code is full of $_GET["this"] and $_POST["that"]. I have always used the more phpish $this->_request->getPost('this') and …
7
votes
1answer
585 views

Trapping second keyboard input in (ubuntu) linux

I have written a program that gets input from a usb second keyboard (actually a barcode scanner). The problem is that if another window is active the data is input there rather than in my program. …
7
votes
5answers
827 views

What is the best way to replace the file browse button in html?

I know that it's possible to replace the browse button, which is generated in html, when you use input tag with type="file". I'm not sure what is the best way, so if someone has experience with this …
6
votes
2answers
110 views

Selecting good, non-conflicting keybindings for a game

PC keyboards weren't designed for gaming, compromises were made to bring the price down, so some problems occur. Most importantly, when you hold down certain keycombos, some keys don't react to …
6
votes
6answers
548 views

Multiple mice on OS X

I am developing an OS X application that is supposed to take input from two mice. I want to read the motion of each mouse independently. What would be the best way to do this? If that is not …
6
votes
3answers
584 views

How do I get input from an XBox 360 controller?

I'm writing a program that needs to take input from an XBox 360 controller. The input will then be sent wirelessly to an RC Helicopter that I am building. So far, I've learned that this can be done …
6
votes
3answers
656 views

How do I read UTF-8 with diamond operator (<>)?

I want to read UTF-8 input in Perl, no matter if it comes from the standard input or from a file, using the diamond operator: while(<>){...}. So my script should be callable in these two ways, …
6
votes
5answers
3k views

Whats a Good Javascript Time Picker ?

What's a good time picker for jquery or standalone js? I would like something like google uses in their calendar where it has a drop down of common times in 15min intervals or lets you manually type …
6
votes
8answers
5k views

c# determine the number of lines within a text file

Is there an easy way to programmatically determine the number of lines within a text file?
5
votes
4answers
263 views

input and output without a library in C

I'm writing a small kernel for my programs in C. This is not (at the moment) an OS kernel, it's merely a way for me to keep track of input and output in programs without relying on external source …
4
votes
2answers
45 views

“Show password” button. How to clone object with all properties.

Hello. I'm making a "show password" button for password input. Problem that is browsers don't allow to change attribute 'type'. Ok, i'm cloning this element with jquery's clone() function and change …

1 2 3 4 5 27 next
15 30 50 per page