procedure Meeting;
const
MeetingTitle =
'December Holiday Chat';
MeetingMonth =
2020.12
;
{ tags:
#2020
}
begin
WriteLn('''
We don’t usually meet in December but since there are so few holiday events which would normally take us out of our homes we have more time. Plus, many of us need an excuse to see others, if only to verify we’re not alone. So we’ll take an hour or two online during our normally scheduled third Wednesday and wish each other happy holidays and best wishes for a prosperous new year!
''');
MeetingDetails(MeetingTitle, MeetingMonth);
end;
procedure Meeting;
const
MeetingTitle =
'November Member Share';
MeetingMonth =
2020.11
;
{ tags:
#2020
}
begin
WriteLn('''
Thanksgiving is a time for thankfulness and sharing. For our November meeting, we’ll give each attendee an opportunity to share something they’ve done recently that might be interesting to the rest of the group and to mention something they’re thankful for. This has been a crazy year and the goal is we’ll encourage each other with cool technological feats or accomplishments.
Hopefully, some of these activities will involve Delphi somehow but we’re going to leave it open.
''');
MeetingDetails(MeetingTitle, MeetingMonth);
end;
procedure Meeting;
const
MeetingTitle =
'October Online!';
MeetingMonth =
2020.10
;
{ tags:
#2020
}
begin
WriteLn('''
With no end in sight to quarantine restrictions for indoor gatherings, we’re going to meet online in October. A link will be provided a week before the meeting, which will be back to our regular schedule: 6:00 PM the third Wednesday of the month.
We won’t have a specific topic but will just have an open discussion of how this strange year has affected your business or career. We may also look at the new features of the latest version of Delphi, 10.
''');
MeetingDetails(MeetingTitle, MeetingMonth);
end;
procedure Meeting;
const
MeetingTitle =
'MARCH MEETING CANCELED!';
MeetingMonth =
2020.03
;
{ tags:
#2020
}
begin
WriteLn('''
With the rapid spread of Corona virus, we will support the advice to limit interactions with others until the threat has abated.
Furthermore, since all restaurants are closed for in-house dining, All future meetings are suspended until further notice.
''');
MeetingDetails(MeetingTitle, MeetingMonth);
end;
procedure Meeting;
const
MeetingTitle =
'Sysmatics App Demo';
MeetingMonth =
2020.02
;
{ tags:
#2020
}
begin
WriteLn('''
Demo of applications by Sysmatics and how minimizing apps on the desktop do not work the same in Windows 10 as previous versions.
PRESENTER Gene Juhos has been working with Delphi since version 3. Before that he used the Pascal language on the Apple Lisa. He started his programming career writing code for an IBM 3741. He’s written useful code in COBOL, FORTRAN, C, C++, Assembler, and CADOL. Currently, his business, Sysmatics, converts proprietary character based business applications to Delphi for several customers.
''');
MeetingDetails(MeetingTitle, MeetingMonth);
end;
procedure Meeting;
const
MeetingTitle =
'Tech Predictions for Next Year';
MeetingMonth =
2019.11
;
{ tags:
#2019
}
begin
WriteLn('''
The November meeting is our last meeting of each calendar year. This year, we’ll get out our crystal ball and peer into the future of what 2020 will bring to the tech industry. Come add your thoughts to the mix! DISCLAIMER: The discussions will be purely speculation and the opinions of those present!
''');
MeetingDetails(MeetingTitle, MeetingMonth);
end;