Jump to content

Attila Kovacs

Members
  • Content Count

    1936
  • Joined

  • Last visited

  • Days Won

    25

Everything posted by Attila Kovacs

  1. Why are you so obsessively interested in what others are doing? Why don't you go where you feel good? 😄
  2. The fox and the wolf meet in the forest. The fox says: Hey! Let's beat up the rabbit. Okay, but why? - asks the wolf. If he's wearing a hat, then for that reason, and if he's not wearing one, then for that reason! - replies the fox. They go to the rabbit and beat him up mercilessly. The next day, the fox starts again: Hey! Let's beat up the rabbit. But we already beat him up yesterday! - responds the wolf. But today, let's beat him up again! - insists the fox. Alright, but why should we do it today? - asks the wolf. We'll go to him and ask for a cigarette. If he gives us one with a filter, then for that reason, and if he doesn't, then for that reason. They approach the rabbit: - Hey, rabbit, give us a cigarette! Do you order a filtered or non-filtered one? - asks the rabbit. To which the fox exclaims: Look at that, for heaven's sake! Once again, he's not wearing a hat.
  3. The "I" in chatGPT is borrowed from the user for now. (with varying degrees of success)
  4. Those self-appointed moderators who hide behind their arrogance, claiming to maintain the quality on SO, do more harm to the language than they contribute.
  5. It is very rare for me to wish for something that I actually do not wish for.
  6. I have SO account but as far as I'm concerned, you can strike for a lifetime.
  7. Attila Kovacs

    MAP2PDB - Profiling with VTune

    @Anders Melander Could you please upload an unfocused build in the coming days. Not urgent. Thanks to both of you, and @Stefan Glienke too, pointing out the sources and that reading the documentgation is of great value 😉
  8. Attila Kovacs

    Problems with Delphi class structure / visibility

    It's unclear if you have OOP problem or the IDE is not working properly.
  9. Attila Kovacs

    MAP2PDB - Profiling with VTune

    free page number
  10. Attila Kovacs

    MAP2PDB - Profiling with VTune

    if it's compiled in debug mode, did they ship the own pdb? 😉
  11. Attila Kovacs

    MAP2PDB - Profiling with VTune

    this is a different checkInvariants
  12. >write a joke about people who still think that you know facts Sure, here's a lighthearted joke for you: Why did the fact-checker bring a ladder to work? Because they were tired of people always trying to bring them down with incorrect information!
  13. Attila Kovacs

    Cannot set Version info nor Icons

    When I'm having troube with Version Info 99% the time I have to delete the dproj and recreate it. I did not bother yet to find out why but I suspect the "Cfg_X" stuff is getting messed up.
  14. Attila Kovacs

    set of object instances

    https://stackoverflow.com/questions/19466038/finding-common-elements-in-two-arrays/19524788#19524788
  15. Attila Kovacs

    Record as result for BackgroundWorker

    r := AWorkItem.Result.ToRecord<TPrepareesult>;
  16. Attila Kovacs

    Sorting two lists in step?

    Maybe his next step would be to insert it into the db. We don't know 😛
  17. Attila Kovacs

    Sorting two lists in step?

    In a stringlists, it is highly plausible that lines are not unique. Why would you argue about the opposite? 😉
  18. Attila Kovacs

    Sorting two lists in step?

    no it wasn't
  19. Attila Kovacs

    Sorting two lists in step?

    was not defined tht list A contains unique keys 🙂
  20. Attila Kovacs

    Sorting two lists in step?

    no, but it's already answered. creating an index array and sorting that.
  21. Attila Kovacs

    Sorting two lists in step?

    no, it's like 'C' -> Pear 'A' -> Apple 'B' -> Banana
  22. Attila Kovacs

    Scanning for files while they are created or deleted

    You are overcomplicating the task. The file can be deleted even when its last byte is read. Just copy the files, catch all IO errors, and ignore the ones from the currenct file. The backup will be still valid for that moment.
  23. Attila Kovacs

    for i := X to Y inclusive... how?

    if (i >=0) and (i <=7) then do_something;
×