Jump to content

Lars Fosdal

Administrators
  • Content Count

    3565
  • Joined

  • Last visited

  • Days Won

    120

Everything posted by Lars Fosdal

  1. The health risks are the same for men and women in that environment. Even when pregnant. Apart from the ability to exert physical strength (not including my niece who is a strongwoman national champion), women are no less fit than men to work in difficult or demanding enviroments. I also have a machine-engineering niece, and another one that is currently doing her master on material techology. But, as always, we are drifting - no, racing - away from the core topic, and I am (as often) to blame.
  2. No idea. We don't really have that many mines these days. However, women can drive heavy machinery as good as or better than men. https://forskning.no/svalbard-partner-historie/kull-karer-og-kvinnfolk/1023284 informs
  3. Someone needs to make a ChatGPT SO front-end that helps you ask questions that are acceptable to the moderators of SO 😛 As for ChatGPT generated answers... I don't mind those as long as they are verified to be correct before publishing. Unfortunately, that doesn't seem to be the case.
  4. Quite low. Not many female developers using our ancient tool, it seems. We need more women in IT to end the boy's club attitudes that exist in many places.
  5. Yet, the 2022 survey statistics shows that less than 1 in 10 of the responding users are female.
  6. https://www.wired.com/story/stack-overflow-gender-problem/ and there is this... Can the moderation be a factor when women, minorities and non-native english speakers are put off by SO?
  7. I just did some deshittification and perma-deleted my Reddit account. It followed my Twitter, Facebook, Instagram and Snapchat accounts. I never was on TikTok. Enough with the corporate anti-social media. I'd rather be an anti-social among other anti-socials on a truly social platform like Mastodon.
  8. Lars Fosdal

    Program "hides" behind the others

    Personally, I would be fine with it being in the background while I wait for it to complete the update/restart. At that point - I'd prefer a notification panel that would allow me to refocus the new window manually. I really do not like apps that bring themselves to the foreground - for whatever reason. I am looking at you, configured to start-with-first-login Teams, Outlook, and Discord. If I didn't initiate the starting of the app MANUALLY, I don't want it to grab my focus and keyboard input.
  9. That is probably as good a justification as any other. 🙂
  10. Lars Fosdal

    Upgrading from 11.2 to 11.3

    I second that. I had a lot less issues after I started doing upgrades this way.
  11. It is more a defacto observation - since MDI window styling doesn't happen in Windows 10 and 11. Ref. https://github.com/dotnet/winforms/issues/3691 which has a series of interesting comments. So - given it has been like this for 10 years - is it likely to be fixed?
  12. @David Heffernan 20ish years ago, we replaced it with a toolbar-like main window and floating windows with "magnetic" edges. But - the floating approach became less sexy when you no longer could control the window size/position of other apps. Today, it would probably have been based on larger windows, with multi layer panels/grids. It depends a lot on your use case. The current apps - which are WMS related - use a navigator sidebar/menu and "virtual tabs". The drawback of MDI was a lot of space went to borders and title bars. You could work around that, but why do that when you can just as well do panels/grids/splitters? Also - what if MS decides to yank out MDI completely? It is, after all, deprecated.
  13. Especially when you consider that MS has abanoned it themselves, not updating the styling for MDI. I wrote a successful MDI app back thirty years ago. I would not have chosen MDI for that app today.
  14. Why not go ASP.NET Core for microservices? Tons of tooling, scalability, containers, cross-platform, etc.
  15. Do you use LiveBindings? I don't.
  16. I stopped asking or answering questions on SO years ago due to the moderation. Life is too short to bother with the aggravation.
  17. Since Seattle https://docwiki.embarcadero.com/RADStudio/Alexandria/en/What's_New_in_Seattle
  18. From https://docwiki.embarcadero.com/RADStudio/Alexandria/en/Extending_the_IDE_Using_the_Tools_API The 32-bit IDE is already large address space enabled.
  19. Lars Fosdal

    ChatGPT Converted Unit

    Chat in, shit out?
  20. Lars Fosdal

    Find String in TstringList

    Right, so it should be set to false to match the original code samples. There is something odd in the original samples. If I copy the text, and paste it into a code block here - I get artifacts in other.cff - note the red dots. Makes me wonder if the artifacts also exist in the original code - in which case it should fail.
  21. Lars Fosdal

    Find String in TstringList

    Isn't that case sensitive?
  22. Lars Fosdal

    Find String in TstringList

    Have you checked the data in the string list for non-printable characters around the .extensions?
  23. Lars Fosdal

    Find String in TstringList

    The first three can fail because you are resetting Result for each entry, meaning only the last line will decide the result. Result := False; for var s in StrList do begin Result := Result or (SameText(s, 'some.pds') or SameText(s, 'other.cff')); if Result then Break; end; Is there whitespace in the strList entries? If there is - Trim. Why the double search in ContainsStr? Is that the AnsiStrings.SameString or the SysUtils.SameString?
  24. Lars Fosdal

    Find String in TstringList

    Perhaps you should show us the search code you use?
×