Search:

Type: Posts; User: EddyDreizehn; Keyword(s):

Search: Search took 0.02 seconds.

  1. Replies
    1
    Views
    272

    Re: Help Needed: program does not take keyboard input

    Hi Igenyar

    You have this problem in all programs or in a specific one?

    When all, then could be something defect with the signals. The OS have to send the keyboard interrupts to the running...
  2. Replies
    10,014
    Views
    1,110,220

    Lose 15 Years

    I have lose 15 years of my life. Then i switch to linux. It was a hard time, special with the commands in the shell... But i learn and it works from day to day better...

    :guitar:

    Don't support...
  3. Re: Alternative user interface development in C

    Hi ...

    I believe, best, fastest and simplest way to write GUI in linux is with Python Tkinter. Its the default GUI, so you can use this fore windows too.
    For C development exists "ncurses" - a...
  4. Replies
    2
    Views
    449

    Re: Lubuntu 13.10 mouse pointer slow

    Hi arrowhead

    - Buy a logitech mouse - you have never problems...
    - Some mouse pads or grounds (under the mouse) are not so good. You have tried this?

    :guitar:
  5. Replies
    1
    Views
    339

    Re: File Program in c

    Hi...

    I know only the function "atoi". That converts a Ascii-String to a integer value:

    char *string = "1203"
    int var1 = atoi(string) ;

    var1 is now 1203.
  6. [SOLVED] value != ascii character

    You have:

    List = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]

    Try this:

    List = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"]

    A value like 0 is not the self like ascii character "0"
  7. Re: How do I exit While Loop when a non int type is entered? Java

    I'm cant Java. But there must be a function like "atoi" - "ascii to integer". That means, the function converts the ascii-string to a integer.
    If it's not possible, because its no integer, the...
  8. Replies
    3
    Views
    458

    Nested while loop not possible

    Bash can't nested while loops like this. Other languages can this. In bash you have to create something like that:



    while [ ... ]
    do

    var=`while [ ... ] ; do ; somestuff ; done`

    done
  9. Replies
    5
    Views
    699

    Learning by doing!

    A linux book is full of hard stuff. Be professionell; read one page, make it on your computer and write the information in your own words.
    Then read next page... So you have a little bit longer for...
  10. Replies
    2
    Views
    324

    Re: Pause a script?

    Maybe, you mean something like that:



    read -n1 char


    Wait for press any key. The pressed key is in variable char saved.

    :guitar:
Results 1 to 10 of 13