Search:

Type: Posts; User: ygfperson

Page 1 of 20 1 2 3 4

Search: Search took 0.06 seconds.

  1. Replies
    2
    Views
    2,614

    fopen and open

    what is the difference between the fopen and open functions?
  2. Thread: Hello...

    by ygfperson
    Replies
    37
    Views
    11,444

    It's been a long time indeed. I want to look into...

    It's been a long time indeed. I want to look into the song signature stuff too... there's so much I have to learn though.
  3. Replies
    2
    Views
    1,914

    Maybe it's a security problem, a lack of...

    Maybe it's a security problem, a lack of permissions. I think the port required to see the folders and the port required to transfer information is different (as in, one uses the UDP protocol and the...
  4. Thread: Is This Fast

    by ygfperson
    Replies
    3
    Views
    2,440

    You can't really measure that kind of performance...

    You can't really measure that kind of performance in seconds like that. You also have to measure how much your program grows over time, if it slows down noticably, etc.
  5. Thread: Network!

    by ygfperson
    Replies
    3
    Views
    2,101

    A hub is a device which routes packets from the...

    A hub is a device which routes packets from the source to all the other ports on the hub. A switch is a hub which learns which device a packet is destined for, and routes it accordingly. In other...
  6. Thread: Farewell

    by ygfperson
    Replies
    23
    Views
    10,326

    i haven't posted here often recently, but it's...

    i haven't posted here often recently, but it's sad to see you go bubba
  7. Replies
    12
    Views
    5,253

    I have a laptop with windows xp on it. The hard...

    I have a laptop with windows xp on it. The hard disk is 80 gb and was formatted ntfs. The only solution I found (short of actually paying for something) is to use qtparted, a linux program. (After...
  8. Replies
    15
    Views
    18,120

    Poll: cout has nifty type-checking. and you can define...

    cout has nifty type-checking. and you can define it for use with new objects you create, like string objects. anything you can do with printf can be done with cout using manipulators.
  9. Replies
    36
    Views
    12,682

    rufus wainright? my brother listens to them...

    rufus wainright? my brother listens to them sometimes... it's worth a try.

    as far as a suggestion for what makes a song good...something that's simple enough to be immediately grasped but also...
  10. Replies
    54
    Views
    20,244

    Well, a picture is worth a thousand words. ...

    Well, a picture is worth a thousand words.

    anyone thinking about suicide doesn't realize that there are so many options open to them besides suicide. it's amazing how little all that matters in...
  11. Replies
    8
    Views
    2,254

    let's see... what is a binary number? ...

    let's see...

    what is a binary number?

    1110001 = 1 * 2^0 + 0 * 2^1 + 0 * 2^2 + 0 * 2^3 ... etc

    you see what to do now?
  12. Thread: 2.6-final

    by ygfperson
    Replies
    18
    Views
    8,855

    are there any new kernel tools (like modprobe)...

    are there any new kernel tools (like modprobe) that need to be upgraded for 2.6 like there was back from 2.2 to 2.4?
  13. Replies
    1
    Views
    1,566

    you're better off following some on-line tutorial...

    you're better off following some on-line tutorial than asking us. We specialize in specific questions.
  14. Replies
    8
    Views
    3,347

    Maybe *date1 is an address?

    Maybe *date1 is an address?
  15. Replies
    5
    Views
    2,003

    To return arrays you need to malloc them (or...

    To return arrays you need to malloc them (or return a const char*, I think, don't trust me on that.)
  16. Replies
    9
    Views
    4,060

    Nice job

    Nice job
  17. Replies
    17
    Views
    7,083

    I got the ti-89 last year... it's a fine piece of...

    I got the ti-89 last year... it's a fine piece of machinery. Where all other portable computers drop their price every year, the TI-89 is still going strong at ~$150.

    Its amazing the programs you...
  18. Replies
    16
    Views
    7,164

    Just FMI, who was the host of the daily show...

    Just FMI, who was the host of the daily show before Stewart? Since I've been watching, it's only been Jon.

    And has Stephen Culbert been there forever?
  19. Replies
    19
    Views
    7,925

    You're not gonna get a good preformance reading...

    You're not gonna get a good preformance reading in each number with fscanf. Every number means the hard drive's being accessed. Even with a cache, it's still a great deal slower than reading it all...
  20. Replies
    19
    Views
    7,925

    congrats fordy. I gotta take a look at that...

    congrats fordy.

    I gotta take a look at that code... I thought mine would beat all.

    //edit: here's mine, cleaned up a little


    #include <stdio.h>
    #include <stdlib.h>
  21. Replies
    7
    Views
    1,549

    You're supposed to use 'file' in the ofstream,...

    You're supposed to use 'file' in the ofstream, not 'command'
  22. Replies
    12
    Views
    5,494

    Re: effort, and the bell-shaped curve...

    Pot. Kettle. Black. I'm not badmouthing what you've just said, but you're arguing against such superior sounding people using a superior sounding tone.

    I think the curve in school systems results...
  23. Replies
    21
    Views
    7,495

    When you say $30 or $20 or whatever, do you mean...

    When you say $30 or $20 or whatever, do you mean for two people or one? Twenty dollars for one person is kinda pricey. Of course, this is me speaking, an 18-year-old broke student who eats out at...
  24. Replies
    16
    Views
    8,247

    Bad luck, I guess. Try making this for (int...

    Bad luck, I guess.
    Try making this
    for (int i=0; i<1; i++) {
    cout << rand() % 5 << endl;
    }
    into this:


    for (int i=0;i < 10; ++i) {
    cout << rand()%4 + 1 << endl;
  25. Replies
    7
    Views
    1,549

    You can only use strcat on non-constant strings....

    You can only use strcat on non-constant strings. (String literals are constant, and they're anything like "this". )
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4