Search:

Type: Posts; User: curlious

Page 1 of 19 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    11
    Views
    15,570

    I just created a simple conversion program. But...

    I just created a simple conversion program. But I do it so it is fail safe. I also have done it with different GUI APIs to see how the values are changed for instance qt can be made to accept only...
  2. Replies
    13
    Views
    1,613

    Sorry you are correct I'm pretty rusty.

    Sorry you are correct I'm pretty rusty.
  3. Replies
    13
    Views
    1,613

    I would imagine different employees would have a...

    I would imagine different employees would have a different payrate.
  4. The interface is the public member functions of a...

    The interface is the public member functions of a class. This is the only means the outside world has to interface with your class.

    I believe the implementation typically means the .cpp...
  5. Replies
    6
    Views
    1,438

    Thanks for the tip with -> and pointers for some...

    Thanks for the tip with -> and pointers for some reason I have always had the habbit of casting (*pointer).memfunc()
  6. Replies
    6
    Views
    1,438

    It's just a learning exercise to show that pass...

    It's just a learning exercise to show that pass by refrence can use pointers or refrences.

    Anyhow your solution seems to have worked, (I haven't run it yet though).

    Thanks!

    BTW no cast...
  7. Replies
    6
    Views
    1,438

    trouble with transform

    I'm having difficulty understanding these error messages and why my code doesn't work


    /Purpose: Demonstrates pass by refrence using pointers and refrences


    #ifdef HAVE_CONFIG_H
    #include...
  8. A MIDI file is just like a musical score isn't...

    A MIDI file is just like a musical score isn't it.
    So this is already done, but we all know synths and midis sound bad at there best.
    I think Bach studied mathmatics in relationship to music though...
  9. I was thinking on similar lines but did not want...

    I was thinking on similar lines but did not want to get off topic with encryption. Besides I have some moral quanandrums with putting the idea out their in relationship to music.

    The original...
  10. What are deltas in relationship to streamed...

    What are deltas in relationship to streamed music?
    What are you thinking about?

    Ultimately the master track should be an Analog recording. I was just thinking a very high bitrate master file...
  11. Thread: Deck Shuffle

    by curlious
    Replies
    51
    Views
    8,584

    Don't "Throwaway" the code in fact you can...

    Don't "Throwaway" the code in fact you can improve it further by considering more meaninful names for your variables. This will benifit others reading the code, and ultimately make you a better...
  12. The idea is to create a set of basic rules for...

    The idea is to create a set of basic rules for your heuristics then have the computer
    recurse the rules with new information(from the text) to create new heuristics need to interpret the data.
    ...
  13. Digital rights suppose the artist doesn't want...

    Digital rights suppose the artist doesn't want his master tracks copied.
  14. Replies
    6
    Views
    1,568

    Pointers act as a variable that points to a...

    Pointers act as a variable that points to a memory adress that may be another variable.



    WIKI *widget = new Pointer_Wiki_Widget();

    in this case the WIKI type pointer called widget points to...
  15. For what reason do you need a GUI to anlyze the...

    For what reason do you need a GUI to anlyze the contextual meaning of text.
    Yes prolog is designed for assist with this.
    The syntactic breakdown of a sentence is trivial. I think the contextual...
  16. You guys must be detectives seems like an ill...

    You guys must be detectives seems like an ill concieved idea (analysis/requirements) for a basic data structure class.

    Why do this with a "Container" class, useing the STL seems like the simplest...
  17. I used to be interested in Natural Language...

    I used to be interested in Natural Language Processing specificaly text. I have a couple of questions.

    The link you gave did not work for me.

    For what reason do you want to create this? ...
  18. How about this idea. lets say you have a musical...

    How about this idea.
    lets say you have a musical piece sampled at 128Kb/s
    then you have the same piece sampled at 512Kb/s

    The 512Kb/s file is the master file on a server while the 128Kb/s file...
  19. Thread: Deck Shuffle

    by curlious
    Replies
    51
    Views
    8,584

    My bad, I guess if I wasn't lazy I would have...

    My bad, I guess if I wasn't lazy I would have analyzed the code deeper and seen this.
    kudos to you
  20. Thread: Deck Shuffle

    by curlious
    Replies
    51
    Views
    8,584

    I find the it interesting that you want to...

    I find the it interesting that you want to simulate the shuffle of a real dealer.
    But conjoining a split deck rarely ever is a linear one to one swap of cards.
    Usually you get say 0-4 from one side...
  21. Replies
    36
    Views
    22,179

    My advice is don't teach it. Even after you...

    My advice is don't teach it.
    Even after you learn the fundamentals it is a different level to teach it without a couple years experience using it. Don't short change your students!
  22. Replies
    18
    Views
    2,403

    Code Complete is a book Published by Microsoft...

    Code Complete is a book Published by Microsoft and written by Steve McConnell.

    It is a book mainly about the down and dirty work of writing code. It has some very good advice on coding.
    ...
  23. Replies
    18
    Views
    2,403

    Like DougDebug says a more discriptive variable...

    Like DougDebug says a more discriptive variable is often good even in this situation, but requires more typing.

    LoopCount doesn't help much but LedgerIndex or VectorCount. The idea is to capture...
  24. Replies
    0
    Views
    1,341

    QInttValidator may be broken.

    After all this work on my fail safe enter integer widget I find this

    QValidator* validator = new QIntValidator( INT_MIN, INT_MAX, this );

    On my system though the max integer is 2147483647...
  25. Replies
    4
    Views
    1,833

    thanks Thantos and DaveD

    thanks Thantos and DaveD
Results 1 to 25 of 457
Page 1 of 19 1 2 3 4