Jump to content

Lars Fosdal

Administrators
  • Content Count

    3319
  • Joined

  • Last visited

  • Days Won

    110

Everything posted by Lars Fosdal

  1. Lars Fosdal

    Android Screenshot not working on new phones >= 10

    Thanks for not sharing how you solved it?
  2. Is anyone using this? I can't believe how sluggish it is...
  3. Lars Fosdal

    PAServer for remote Debugging on Windows

    It is through a VPN, on a 500Mbit/s fiber connection to a remote machine, on a firewalled, closed internal network.
  4. Lars Fosdal

    document projects

    Or in the "I made this".
  5. Lars Fosdal

    Herb Sutter on C++20

    This is my favorite Herb presentation.
  6. Lars Fosdal

    PAServer for remote Debugging on Windows

    IDE locks up every f'ing time. Connection pings ok. Checking it in the profile confirms connection with the PA Server. PA Server downloads the exe + rsm + a file that appear to belong to another project? Debugger Kernel starts up. No app launch - and the IDE is dead on my end.
  7. Lars Fosdal

    PAServer for remote Debugging on Windows

    Not sluggish... FUBARed. Why can't I cancel the deployment phase? Why does the IDE lock up after deployment?
  8. Lars Fosdal

    Herb Sutter on C++20

    is and as could help declutter that versatility, though.
  9. The appropriate place would be something like \Program Files (x86)\<Your Company or System Name>\<Services>\YourServiceHere.exe
  10. Lars Fosdal

    Delphi compatibility with Windows 11?

    The settings look very different on Windows 11. Some of them are not enabled for RDP.
  11. Lars Fosdal

    Delphi compatibility with Windows 11?

    Judging from what I read, it seems that x86 runs fine, but x64 is still work in progress on MS side. W11 for ARM still is in preview state. I'll be able to answer this for myself, around Xmas 🙂
  12. Lars Fosdal

    Delphi compatibility with Windows 11?

    On the topic of VMs - I wonder how well Windows 11 for ARM will be running under Parallels and if it can run x86 and x64 code.
  13. Lars Fosdal

    Delphi compatibility with Windows 11?

    Hyper-V.
  14. Lars Fosdal

    Delphi compatibility with Windows 11?

    Yes, it shows. That thing is f'ing brilliant!
  15. Lars Fosdal

    Delphi compatibility with Windows 11?

    I like 11. It appears to be snappier than 10. But, yeah... there are still remnants from 7 in there. Really annoying that they haven't done away with the old Control Panel completely and got it modernized in Settings.
  16. Lars Fosdal

    Interbase SQL

    Where do you get T2 from in the outer EXISTS?
  17. Lars Fosdal

    Delphi compatibility with Windows 11?

    Only the start menu has rounded corners. Go figure.
  18. Lars Fosdal

    Delphi compatibility with Windows 11?

    Annoyingly, the Windows 11 GUI doesn't show rounded corners in my VM. Makes me wonder what else looks different between a VM and a regular desktop.
  19. We use inline vars quite a bit. For loops, in particular - as well as for temporary variables. But, yes, the tooling is lagging behind.
  20. Lars Fosdal

    Async Tasks in VCL Projects

    You've put good advice in that article, @Uwe Raabe. Just my two cents... A lot of people say multi-threading is hard. It is only hard if you have not learned to do it properly, like any other thing in life. Debugging multi-threading apps, on the other hand... Make sure you log a lot - with the thread context in the log. IMO, the debugger is not yet properly equipped to deal with multiple threads, unless you count using lots and lots of breakpoint tweaking. The Parnassus Parallel Debugger plugin may solve some of that, but it is not yet out for Delphi 11, and it has stability issues in 10.4.
  21. FWIW: We have several 32-bit services. There is no reason what so ever to put them in one of the Systems folders.
  22. Lars Fosdal

    enable/disable the internet connection?

    Just an observation. I've been on Windows 10 for a few years now, and I don't recognize this "Windows keeps downloading stuff". Once a month, there are patches - and staying patched is generally a good idea. As long as you are on Windows Pro or Enterprise, you have control over WHEN you want the patching to happen, unless your company has overriding policies - in which case you need to butt heads with the IT department to get them adapted to your needs. If you are using Windows Home, you need an upgrade. Disabling/Enabling your network connection on the PC to avoid patching seems like the wrong solution, because you really need that working connection to get work done. If you really need to block something, do it in a firewall rule. Most routers can do that.
  23. In concept, it is great - but lack of support in the debugger is a problem. If you have two blocks with var x := <whatever> it gets even more confused. I love using inline vars for loops -> no use after the loop block and type inference saves you from having to declare the type.
×