Jump to content

Dalija Prasnikar

Members
  • Content Count

    1062
  • Joined

  • Last visited

  • Days Won

    91

Everything posted by Dalija Prasnikar

  1. Dalija Prasnikar

    August 2020 GM Blog post

    If you want to discuss then forum is the right place, if you have specific question then SO is the right place to go. I would not say it is about preferences, but what you need at particular moment. Besides Delphi I am using other tools for development, most notably Android Studio and Xcode. I never needed forums to solve my problems... I could find all the answers on SO and official documentation. Hanging out with other developers and discussing all kinds of things... well, Delphi forums and communities were more than enough for me.
  2. Dalija Prasnikar

    August 2020 GM Blog post

    Great colors... make me blind... since color theme matches horrible 10.4 colors, this is all Embarcadero or Idera production...
  3. Dalija Prasnikar

    August 2020 GM Blog post

    Not really... official forums were already dead. They basically died when NNTP was dropped.
  4. Dalija Prasnikar

    Debugger in 10.3.3 is useless :'(

    I voted for it, but I would not hold my breath... this will be either closed as won't fix or will stay open for a long time.
  5. Dalija Prasnikar

    Check for Creators Update

    There is no support for release id as such, but every Windows 10 release id has corresponding build number. For instance Creators is 15063. So you can check whether build is 15063 or greater.
  6. Dalija Prasnikar

    Check for Creators Update

    There is TOSVersion record in SysUtils that holds OS version information. But you cannot check for particular version by name, you need to know its build number.
  7. Dalija Prasnikar

    Precisely timed display output on Android

    You need different architecture to achieve such timing. Timer is not precise enough and even if you can make it precise, there will always be other events that will mess up your timer schedule. You need a some kind of game loop. Basically, you should not rely on timer to calculate and paint your screen, you need to trigger paint event with delta time and based on that time (elapsed from last paint) you will calculate positions and render your screen. Some starting point: https://gamedev.stackexchange.com/questions/651/how-should-i-write-a-main-game-loop
  8. Dalija Prasnikar

    How do you organize developing new features in big projects?

    Manual version control is an oxymoron - there is no such thing as manual version control. It is not about something working perfectly or not, it is about manual version control not working at all. All you have are backups of your code at some point in time. Nothing else.
  9. Dalija Prasnikar

    How do you organize developing new features in big projects?

    Depending on the feature. If I need to test some general concept and/or feature is not tightly coupled with app I will make separate test project until I figure whether it will work as intended. If feature is tightly coupled with rest of the application I will create new feature branch in that app repository and start from there, even if compiling/running takes time. But, this is what we are trying to tell you, not having VCS is an issue. Because, new feature workflow highly depends on VCS. I know it may seem that learning how to use VCS takes valuable time, but you can get that time back in a week (literally).
  10. Dalija Prasnikar

    Does debugger handle WITH better in latest versions, 10.3+?

    It still does not work in 10.4
  11. Dalija Prasnikar

    Help, Missing files

    It would help if you would stick to one thread instead of posting separate topics... it is hard to track what is going on with pieces of information scattered around.
  12. Dalija Prasnikar

    Patch 2 for RAD Studio 10.4 now available

    Are you calling me insane???? This is my actual code!!! 😜
  13. Dalija Prasnikar

    Patch 2 for RAD Studio 10.4 now available

    LOL, it looks like fix for my code literally broke Vincent's code https://quality.embarcadero.com/browse/RSP-28761
  14. Dalija Prasnikar

    Patch 2 for RAD Studio 10.4 now available

    Honestly... I don't care if compiler broke your code... they released fix for compiler bug that broke my code...
  15. Dalija Prasnikar

    Patch 2 for RAD Studio 10.4 now available

    "If you can't laugh, what can you do?"
  16. Dalija Prasnikar

    Are we just "Cash Cows"?

    Apple Silicon is terminology used for Apple designed, ARM based chips https://en.wikipedia.org/wiki/Apple_Silicon
  17. Dalija Prasnikar

    Are we just "Cash Cows"?

    I literally just started typing same sentence. Delphi devs always complain all logic is dumped in form (event handlers), Android devs always complain all logic is dumped in Activity (Delphi form equivalent), iOs devs always complain all logic is dumped in ViewController (again Delphi form equivalent)...
  18. Dalija Prasnikar

    Should Delphi have native interfaces?

    I am not against evolution, but that evolution must follow some basic rules - and not all rules are Delphi specific, some common language rules also apply. If you are building a castle, you cannot go ahead and add another tower by ruining the foundations first. As far as rest of your posts is concerned, I am sorry to say, but I have hard time understanding what you want to say. Maybe it is the fact that you want to design things in different order is throwing me off course, maybe it is something else, but I cannot exactly pinpoint it.
  19. Dalija Prasnikar

    Should Delphi have native interfaces?

    One thing worth mentioning because you seem to take interface-class relation backwards. The whole purpose of interfaces (COM or native, or whatever) is that they are abstraction. They just define API, not the implementation. It is class that implements interface and knows about the interface, not the other way around. In other words, interface should never ever know anything about classes that implement interface and any proposals that violate that are practically useless.
  20. Dalija Prasnikar

    FreeAndNil 10.4 vs 10.3.1 and Pointers

    Everyone please vote for Global Generics https://quality.embarcadero.com/browse/RSP-13724 So we can have type safe FreeAndNil without quirks and lies.
  21. Dalija Prasnikar

    FreeAndNil 10.4 vs 10.3.1 and Pointers

    Maybe you will find some answers here https://dalijap.blogspot.com/2020/06/magic-behind-freeandnil.html
  22. Dalija Prasnikar

    TButtonItem does not have a TAG property

    Just to make it clear, I am not dismissing using dictionary mapping where it fits better (if you don't have up front defined set of actions at call site), I am merely objecting to the notion that using integer tags is toy programming.
  23. Dalija Prasnikar

    TButtonItem does not have a TAG property

    Sorry, but I don't see how if Sender is FooButton then DoFoo else if Sender is BarButton then DoBar .... Is preferable to case TComponent(Sender).Tag of TAG_FOO : DoFoo; TAG_BAR : DoBar; ... end; It also gets worse if you have several Senders that perform same task - for instance, button and menu (I know that you can have actions, but actions share same caption - not always preferable, especially in non-English environments) I am aware that you can also add dictionary and map actions that way, but then you need to maintain dictionary, its lifetime, mappings and on top of that you don't have spelled out logic in place where action happens - following code through dictionary is debugging nightmare. Mappings are mappings... you can always use wrong mapping being it integer based or not.
  24. Dalija Prasnikar

    TButtonItem does not have a TAG property

    For stuffing in pointers and such... it is not appropriate, but for storing integer values that can later be used to determine appropriate action... why would that be wrong or used only in toy apps? In Delphi I never used Tag in toy apps knocked up in minutes, because they were pretty simple, but in more complex ones, especially with dynamic content and multiple entry points for actions, tag is the most straight forward thing to use and maintain. Also, just yesterday, I wrote a whole a lot of tag based code in native Xcode iOS application where native view also has tag property specifically used for determining which action you want to run. And there just like in Delphi you have Sender object that you can also use to determine appropriate action, but just like in Delphi code working with objects would be more convoluted and using Tag is preferred when you have to determine or change action at runtime.
  25. Try going to to Options -> IDE - File Associations and doing Deselect All, Select All and Save. That should restore file associations for version where you have run Options dialog. In theory file associations will be reset as soon you save Options even without going to File Associations tab.
×