Tagged Questions

0
votes
3answers
56 views

Equivalent function to C’s “_getch()” in Java?

Hey guys, I was messing around with C/C++ and recently found the _getch() function. I also recently got an invite to Google Wave (amazing, btw), and I wanted to emulate the ability to send messages …
2
votes
2answers
236 views

Problem with kbhit()[and getch()] for Linux.

while(ch != 'q') { printf("looping\n"); sleep(1); if(kbhit()) { ch = readch(); printf("you hit %c\n",ch); } } This code gives me a blocking getch() like functionality. I am …
1
vote
1answer
320 views

Reading a single character (getch style) in Python is not working in Unix

Any time I use the recipe at http://code.activestate.com/recipes/134892/ I can't seem to get it working. It always throws the following error: Traceback (most recent call last): ... …
0
votes
2answers
609 views

Problem with an expect script

Hi, I'm trying to create a script to update a password in a non-interactive way. It's working on my laptop but fails on my server. Both are running the same configuration, using Etch. This is the …
0
votes
3answers
735 views

Non-blocking getch(), ncurses

I'm having some problems getting ncurses' getch() to block. Default operation seems to be non-blocking (or have I missed some initialization)? I would like it to work like getch() in Windows. I have …
3
votes
3answers
804 views

equivalent to getch(), mac/linux crash

Hey guys. So I am using getch() and my app crashes instantly. Including when doing: int main() { getch(); } I can't find the link but supposedly the problem is, it needs to turn off buffering or …
2
votes
1answer
654 views

How to get a single character in ruby without pressing enter

How can I get a single keyboard character from the terminal with ruby without pressing enter? I tried Curses::getch, but that didn't really work for me.