Discussing, Learning, and Using Delphi and related technologies to create Great Applications!
procedure Meeting;
const
  MeetingTitle = 'Delphi 13 Florence';
  MeetingMonth = 2025.09 ;
  { tags: #2025 }
begin
  WriteLn('''

Delphi 13 Florence is the latest major release of our namesake’s IDE and has several new features including the language’s very first ternary operator!

  ''');
  MeetingDetails(MeetingTitle, MeetingMonth);
end;

procedure Meeting;
const
  MeetingTitle = 'RAD Server, Part 1½';
  MeetingMonth = 2025.02 ;
  { tags: #Homer Jones #RAD Server #2025 }
begin
  WriteLn('''

In October of 2023, the concepts of building RAD Server modules were introduced with the promise of a more advanced topic “soon”. Well, next month, we will finally dive into the deep end but this month a refresh of that introductory topic will be shared along with a quick database demo that produces a JSON list of customers. Additionally, a quick show-and-tell of an Android app written with the popular JavaScript framework, React Native will demonstrate how the JSON data produced is used.

  ''');
  MeetingDetails(MeetingTitle, MeetingMonth);
end;

procedure Meeting;
const
  MeetingTitle = 'Advent of Code';
  MeetingMonth = 2024.12 ;
  { tags: #AoC #2024 }
begin
  WriteLn('''

For the last 10 years, a set of programming challenges has been produced on a daily basis from the beginning of December until Christmas. It is called Advent of Code, a name derived from the “Advent Calendars” popular this time of year where kids open a daily tab on a wall-hung calendar to reveal a surprise as they count down the days until Christmas.

  ''');
  MeetingDetails(MeetingTitle, MeetingMonth);
end;