Search:

Type: Posts; User: aldo_baldo

Page 1 of 4 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    20
    Views
    2,187

    Talk about problem solving! I didn't even think...

    Talk about problem solving! I didn't even think to a simple solution like that! Many thanks for your help, phantomotap.

    Edit: I just visited my profile page and --surprise!-- I discovered that I...
  2. Replies
    20
    Views
    2,187

    Maybe I have to stop visiting this forum, after...

    Maybe I have to stop visiting this forum, after all. Some of you don't like the way I give my two cents, and most of the time (not always, to be honest -- I read a handful of really valuable hints...
  3. Replies
    20
    Views
    2,187

    I would like to point out that I didn't submit...

    I would like to point out that I didn't submit any code at all. Looks like you don't like the people who do, so I'm not doing it (though I would like to). Quite and involuted sentence ideed, but I...
  4. Replies
    20
    Views
    2,187

    Indeed, I do as well. What can make "working...

    Indeed, I do as well. What can make "working examples" noxious is not "working examples" as such, but the learner's wrong attitude. Another problem could be on the teacher side -- there are some of...
  5. Replies
    20
    Views
    2,187

    Actually, I intended to be a little bit...

    Actually, I intended to be a little bit sarcastic, mates! :)
  6. Replies
    20
    Views
    2,187

    Nooooooooo! Disaster! Now you'll be accused of...

    Nooooooooo! Disaster! Now you'll be accused of "spoon-feeding" the OP, that's for sure. Evil, evil, evil! :(
  7. Jimmy, a tool is a tool. The problem is, who's...

    Jimmy, a tool is a tool. The problem is, who's going to use it and why. Just to say, one sells a gun to a chap who states that he's going to hunt rabbits for lunch. Then that chap goes and kills...
  8. Did any of you ever read "1984"? Well, "Big...

    Did any of you ever read "1984"? Well, "Big Brother's watching you".
    Shame on those who help anyone to implement this sort of spy/slavery tools. Computers should be here to make life a bit better,...
  9. Replies
    11
    Views
    941

    I use realloc() every now and then. When I do, my...

    I use realloc() every now and then. When I do, my approach is something like this:


    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>

    #define kInitialMemorySize 24
    #define...
  10. You know, I would't appreciate inccurring in any...

    You know, I would't appreciate inccurring in any occasional ravaged anus as well. I think it's quite a widespread attitude, even though exceptions are a possibility.
  11. Grumpy, I chose the wrong word. The meaning of...

    Grumpy, I chose the wrong word. The meaning of the Italian word "radicale" is quite different from that of the English word "radical" (I just checked). In Italian, "radicale" stands for something...
  12. Replies
    7
    Views
    4,104

    There are QUITE A FEW "misundertandings" in your...

    There are QUITE A FEW "misundertandings" in your code. It should be rewritten from scratch, I fear, testing it step by step with a debugger to see whats going on. Some people here have pointed out...
  13. Believe it or not, from a general standpoint I...

    Believe it or not, from a general standpoint I agree with you. My opinion is that you are a bit too radical, though.
  14. I reviewed my "library" quite a bit, changing the...

    I reviewed my "library" quite a bit, changing the approach to some functions in ways that look somewhat better to my eyes.

    I tried a rough speed-test, too, using an Italian translation of Huxley’s...
  15. Indeed, I am taking seriously any hint. I like...

    Indeed, I am taking seriously any hint. I like learning. The problem is when those hints are simply not there! And, yes, I have no reason to doubt of Grumpy's knowledge and experience. Moreover, I'm...
  16. Replies
    8
    Views
    2,985

    Provided that the shift is needed, couldn't one...

    Provided that the shift is needed, couldn't one use memmove() too?
  17. Replies
    8
    Views
    2,985

    It's not that difficult. Try starting from the...

    It's not that difficult. Try starting from the end of the array (item[9]), not from its beginning. Take item[8] and put it into item[9], take item[7] and put it into item[8], take item[6] and put it...
  18. Home again. MutantJohn, I read with care what you...

    Home again. MutantJohn, I read with care what you wrote. Written as you wrote, the general concept is much easier to grasp (no japanese in your words! :) ). It makes sense or, I could even say, it's...
  19. Many thanks, MutantJohn. I haven't the time to...

    Many thanks, MutantJohn. I haven't the time to spend for the deep reasoning required by your reply right now, but I'm surely going to find it this evening.
  20. Grumpy, I can't do without noticing that, at...

    Grumpy, I can't do without noticing that, at times, you are rather rude (not just this time, such a stile emerge in many threads). Saying to one who's trying to discuss about a topic "I'm an expert,...
  21. Mmm... the problem is not in the level of math as...

    Mmm... the problem is not in the level of math as such, it's in the jargon used to deal with it. It's like studying the history of London written in Japanese (provided that you are not from Japan, of...
  22. Many thanks for your articulated reply, Grumpy....

    Many thanks for your articulated reply, Grumpy. You pointed out so many things that I can hardly take them all into account at once, though. So I start with just a few of them (by now).

    #1. O(n^2)...
  23. Yes, char*** is what I intended to obtain. The...

    Yes, char*** is what I intended to obtain. The reason is that I needed to point ot an array of char*, which means I needed a char**. And I needed a way to handle dynamic allocation of such array, so...
  24. Ah, good question! :) There's a problem, though:...

    Ah, good question! :) There's a problem, though: I'm a self-taught hobbyist non-programmer, so I can't even get what you actually mean by "O(n^2) algorithm". I guess from what I read in other threads...
  25. Extracting items from a string or a text file

    1384513846

    A couple of days ago, I had a conversation about reading formatted text, and I enjoyed it quite a lot. So, I tried to put together a few functions that SHOULD help with tasks like that....
Results 1 to 25 of 79
Page 1 of 4 1 2 3 4