Delphi

Try Delphi on Amazon Linux.

Author: h.mohri I tried Delphi on Amazon Linux. Amazon Linux is Linux that exists only in the instance of EC2(AWS). “Free tier eligible” can be used. [Create an instance.] Select Amazon Linux from EC 2 and create a new instance. It is possible to connect with SSH in the initial state. [Environment…
Read more
News

RxLib and Tokyo Compatibility

Author: Jhonny Although in the pagehttp://www.micrel.cz/RxLib/says that they are not the official page of theRxLib, anyone needing this library of components to be able to update their version Delphi … they hope that they add support for Delphi Tokyo. As…
Delphi

Design Patterns in RAD Delphi

Author: Bogdan Polak BSC What is a design pattern? While several definitions can be formulated, they all contain one universal message. In my opinion the most accurate definition is given in the Wikipedia: https://en.m.wikipedia.org/wiki/Software_design_pattern I would like to draw your attention to two lines: general reusable solution solve common problems Let’s consider whether…
Read more
C++

New in 10.2: MariaDB Support

Author: Pawe Gowacki One of the biggest new RAD Studio 10.2 Tokyo database features is support for MariaDB open-source relational database. MariaDB is one of the most popular open-source SQL databases. It is a fork from MySQL database, after it has been acquired by Oracle…
Delphi

FireMonkey on Linux!

Author: Pawe Gowacki It did not take long since the release of Delphi Linux compiler to have the ability to build Linux GUIs with Delphi! Just go to http://fmxlinux.com and get the only currently available download of FireMonkey for Linux which is “Free Trial v 0.905”. RAD Studio 10.2 “Tokyo” must be installed. Install the trial after making sure it is not running. It is…
Read more
Delphi

Hello Delphi and VCL! Hello community!

Author: Bogdan Polak BSC Hello This is my first blog entry. I’d like focus here on software architecture in Delphi world. Why do Delphi developers need architectural patterns? Do they need it? In my opinion, they do not only need it, but they use it constantly. In my…
News

Creating a Linux Daemon (service) in Delphi.

Author: Craig Chapman With the introduction of the Linux target for Delphi, a wide range of possibilities are opened up to Delphi developers, to create Linux server applications. Unfortunately there are currently a limited number of project types available from the RAD…
C++

10.2 Tokyo TJsonSerializer and JSON.Converters

Author: h.mohri First declare with Pascal to use the converter and generics. //// unit Unit2; interface uses System.JSON.Converters, System.JSON.Serializers, System.Generics.Collections; type TListString = TList<String>; TDictionaryStrStr = class(TDictionary<String, String>) constructor Create; overload; end; TTJsonListConverterString =…
Read more