Search:

Type: Posts; User: kwigibo

Page 1 of 9 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    2,589

    What code do you have so far?

    What code do you have so far?
  2. Replies
    4
    Views
    1,725

    Also try double buffering

    Also try double buffering
  3. Thread: Star Wars 3...

    by kwigibo
    Replies
    86
    Views
    15,065

    Star Wars 3...

    ...it is a must see.

    Hehe that rhymes. well offer your opinions.
  4. Replies
    4
    Views
    1,606

    First of all use if () else if () else structure...

    First of all use if () else if () else structure in your board::move() method. Makes no difference its just for clarity and a good practice for this situation.

    Second as Just said, don't...
  5. Replies
    7
    Views
    1,850

    a quick thing i noticed, don't declare a variable...

    a quick thing i noticed, don't declare a variable inside the loop. You are better off declaring the line before the loop. You can reset the variable value inside the loop but not declare it.
  6. Replies
    14
    Views
    1,633

    i find if i'm having trouble is to write it as...

    i find if i'm having trouble is to write it as plain english first either on paper or in you .c file and enclose it in comments. Then when i do the coding i can think more clearly about what i am...
  7. Replies
    6
    Views
    1,693

    Briefly, without looking at the code have you...

    Briefly, without looking at the code have you thought of using a debugger and stepping through your code. This will show you where it is hanging.

    Just a thought.
  8. Thread: Http Post

    by kwigibo
    Replies
    7
    Views
    1,759

    CGI scripting is the place to look. It has been a...

    CGI scripting is the place to look. It has been a couple of years since i have done any of this so i can't remember off the top of my head but that is a good place to start.

    If you understand the...
  9. Replies
    9
    Views
    3,474

    PM your email address with modem details and...

    PM your email address with modem details and tomorrow i'll write a better and more indepth answer as it is really late atm and i'm tired.

    Perhaps tomorrow i'll make more sense.
  10. Replies
    9
    Views
    3,474

    PS. 3 Setup you modem in NAT not bridge and...

    PS.

    3 Setup you modem in NAT not bridge and probably best to use PPPoE not PPPoA
  11. Replies
    9
    Views
    3,474

    1. set static ip's eg. (10.0.0.x or 192.168.0.x...

    1. set static ip's eg. (10.0.0.x or 192.168.0.x or 172.16.0.x)

    important thing to remember is not to have the same ip's anywhere on the network must all be unique. also set a subnet of...
  12. Replies
    6
    Views
    1,056

    (u_no[2] > 64) && (u_no[2] < 91) From the code...

    (u_no[2] > 64) && (u_no[2] < 91)

    From the code i provided above should do it.

    or use isupper() from ctype.h
  13. Replies
    6
    Views
    1,056

    //if first position is a number if((u_no[0] >...

    //if first position is a number
    if((u_no[0] > 47) && (u_no[0] < 58))
    {
    //if second position is a number
    if((u_no[1] > 47) && (u_no[1] < 58))
    {
    //if first position is a...
  14. Thread: Linux

    by kwigibo
    Replies
    7
    Views
    1,607

    most of the new Linux distros have java support...

    most of the new Linux distros have java support on the CD's. Something like gcc-java or gcc3.0-java
  15. Thread: Mandrake 8.2

    by kwigibo
    Replies
    12
    Views
    1,897

    Must be a trend or something, I switched from...

    Must be a trend or something, I switched from RH7.2 to mandrake 8.2. I love it, I wish I found it earlier.
  16. Thread: Semaphor ???

    by kwigibo
    Replies
    3
    Views
    2,131

    Off the subject a little, where are you doing...

    Off the subject a little, where are you doing this course, Im currently doing an OS course at USQ on Nachos.
  17. Thread: Linux Overall

    by kwigibo
    Replies
    4
    Views
    1,481

    I prefer KDE myselft, I really dislike Gnome....

    I prefer KDE myselft, I really dislike Gnome. That Icewm isn't bad if you want a windows feel.
  18. Replies
    8
    Views
    1,792

    you could use sprintf, or typecast.

    you could use sprintf, or typecast.
  19. Thread: prime no's

    by kwigibo
    Replies
    7
    Views
    2,205

    A simple search would of solved this problem....

    A simple search would of solved this problem. Does anyone ever use that I wonder.
  20. You need to open the file first, what the...

    You need to open the file first,


    what the hell is that, typedef is used to give a data type an alias name eg typedef int bool. This is valid in C because C doesn't have a builtin data type of...
  21. Replies
    12
    Views
    5,416

    Good little program, fixed it up heres the file,...

    Good little program, fixed it up heres the file, it only works for january at the moment though I'll let you fix the rest up, partly cos Im lazy and partly cos it'll help you understand. Also you...
  22. Replies
    17
    Views
    5,962

    dido to monster. The board has a strong...

    dido to monster. The board has a strong philosophy that we don't write your programs. You write then and we may help.
  23. Replies
    11
    Views
    2,334

    Hi, Im going to assume only the +-/* operations....

    Hi, Im going to assume only the +-/* operations. What I'd do is first read the whole thing in as a string with fgets(..). Im doing this way because I've assumed the equation can vary in length. Next...
  24. Thread: prime numbers

    by kwigibo
    Replies
    17
    Views
    4,342

    Sorry to offend you, but I didn't want anyone to...

    Sorry to offend you, but I didn't want anyone to be misled
  25. Thread: prime numbers

    by kwigibo
    Replies
    17
    Views
    4,342

    >>any non prime number will atleast have 3...

    >>any non prime number will atleast have 3 factors (including 1, it's square root, and itself).

    sqrt(21) = 4.582575...

    not a factor of 21. A factor has to be an integer.
Results 1 to 25 of 213
Page 1 of 9 1 2 3 4