Discussing, Learning, and Using Delphi and related technologies to create Great Applications!
procedure Meeting;
const
  MeetingTitle = 'All About JSON';
  MeetingMonth = 2025.10 ;
  { tags: #Cyndi Lewis #Homer Jones #2025 }
begin
  WriteLn('''

Have you heard about the JSON format but are not sure what it’s for? Or perhaps you’ve been using a JSON library in your Delphi programs but are wondering if there’s a better one. October is the month we’ll answer those questions!

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

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;