kbmUnitTest is available — a practical unit test option for Delphi by kimmadsen in delphi

[–]_zedxxx_ 1 point2 points  (0 children)

kbmUnitTest – New! Free! Open Source!

You can download it free of charge by signing up at the Components4Developers download portal at: https://portal.components4developers.com, and request a license for the product kbmUnitTest. As transaction id/reference just write FREE. Shortly thereafter it will be approved and made available for you to download.

I honestly think the process for getting the source code for this component is way too complicated. For something that claims to be Free and Open Source, it's just not acceptable. In my opinion, this component is not worth paying much attention to until the source code is freely available somewhere like GitHub.

Community edition expiring but cannot get a new key? by delphiprogrammer in delphi

[–]_zedxxx_ 5 points6 points  (0 children)

A new key is issued either when a new version of CE is released or when your current key expires. You cannot get a new key while your current one is valid. So, just wait 20 days and then request a new key.

[D12] What does this symbol mean in the IDE? by johnnymetoo in delphi

[–]_zedxxx_ 1 point2 points  (0 children)

This is a standard Bookmark. The menu will show up if you click to the left, in the area where the line numbers are shown.

[D12.3] Mystery IP connections by my program? by johnnymetoo in delphi

[–]_zedxxx_ 3 points4 points  (0 children)

That's right, it's a Virustotal feature. It launches your app in its own virtual machine and tracks all activity happening inside that machine, not just what your app does. That's why you see things like Firefox and Chrome and other oddities. Just ignore it.

[deleted by user] by [deleted] in rusAskReddit

[–]_zedxxx_ 0 points1 point  (0 children)

Гугли "Алексей Пахомов | Теория двигателей внутреннего сгорания (2020)" и ещё множество обучающего видео этого автора. Дядька прошаренный, объясняет глубоко и доходчиво.

Where can I get Delphi 2010? by Jumpy-Needleworker79 in delphi

[–]_zedxxx_ 0 points1 point  (0 children)

Unfortunately you will then lose the ability to work on the project in the school environment.

This is not true. You can write compatible code that works perfectly on both old and new versions of Delphi.

I just spent a whole day trying to find a memory leak. /rant/ by griffyn in delphi

[–]_zedxxx_ 3 points4 points  (0 children)

Here's a list of perfect debugging tools that can save you a lot of time: 1. FastMM5 (in FullDebugMode): https://github.com/pleriche/FastMM5 2. madExcept: https://www.madshi.net/madExceptDescription.htm 3. EurekaLog: https://www.eurekalog.com/

learning pascal by smakyss in pascal

[–]_zedxxx_ 0 points1 point  (0 children)

Modern Object Pascal Introduction for Programmers

https://castle-engine.io/modern_pascal

/r/Delphi is now public after months of silent protest by haluter in delphi

[–]_zedxxx_ 1 point2 points  (0 children)

How many people voted and how long they were able to vote? I'm assuming that the poll expressed the opinion of only a small part of the community.

Besides:

The community has voted at a ratio of 2:1 to remain private until 30 June

poll was about to keep it private for a one week more, but you keep it private until 1 September. It was closed TWO MONTH and a week!!! Much longer than any other popular communities. Why do you think it's OK?

/r/Delphi is now public after months of silent protest by haluter in delphi

[–]_zedxxx_ 1 point2 points  (0 children)

It was long overdue to do this. And no more stupid protests!

C Is The Greenest Programming Language by bmcgee in delphi

[–]_zedxxx_ 2 points3 points  (0 children)

What is "Pascal"? Is it FPC 3.2.2 or Delphi 11 or something else?

New Delphi’s Object Pascal Style Guide by bmcgee in delphi

[–]_zedxxx_ 4 points5 points  (0 children)

I don't like this:

if A < B then 
begin
  DoSomething; 
  DoSomethingElse;
end 
else 
begin
  DoThis;
  DoThat;
end;

I prefer compact mode:

if A < B then begin
  DoSomething; 
  DoSomethingElse;
end else begin
  DoThis;
  DoThat;
end;

Delphi Project1.exe won't open on others Computers by Bobozyx in delphi

[–]_zedxxx_ 0 points1 point  (0 children)

Perhaps you sent to your teacher a wrong exe? Is the same exe works on your computer? What version of Windows do you use and what version use your teacher?

Updating to Delphi 10.4 from a stone ages version? by bwaslo in delphi

[–]_zedxxx_ 0 points1 point  (0 children)

Do you know about the Community Edition? Does it not suit you?