Discussing, Learning, and Using Delphi and related technologies to create Great Applications!
procedure Meeting;
const
  MeetingTitle = 'Live Templates';
  MeetingMonth = 2007.07 ;
  { tags: #Slides #2007 }
begin
  WriteLn('''
Starting with Delphi 2006, the base product has a VERY cool feature previously only available in 3rd-party add-on products such as Code Rush and Castalia. The feature is Live Templates and allows the user to write macros with customized paramters. It is a great productivity enhancement and is much more powerful than many people realize. With Live Templates you can: fix typos automatically; insert large code snippets with a couple of keystrokes; remind yourself of obtuse parameter options; greatly speed up coding.
  ''');
  MeetingDetails(MeetingTitle, MeetingMonth);
end;

procedure Meeting;
const
  MeetingTitle = 'CodeGear Delphi 2007 and Delphi for PHP Launch Tour!';
  MeetingMonth = 2007.05 ;
  { tags: #David I #Delphi Release #2007 }
begin
  WriteLn('''
Experience the CodeGear products first-hand in Portland! You will be provided with a CodeGear update, as well as presentations and demonstations showcasing the new products. As if the opportunity to check out our newest, coolest toys wasn’t enough, we will also give all attendees a special product discount, and enter your name in a raffle for products and even an 80GB iPod! PRESENTER David Intersimone from CodeGear, and Michael Li from InfoCan Management
  ''');
  MeetingDetails(MeetingTitle, MeetingMonth);
end;

procedure Meeting;
const
  MeetingTitle = 'Impromptu Discussions';
  MeetingMonth = 2007.04 ;
  { tags: #2017 }
begin
  WriteLn('''
We have no specific planned presentation this month. We’ll gather as colleagues in the industry and friends that like to talk about computers and programming and see what topics emerge!
  ''');
  MeetingDetails(MeetingTitle, MeetingMonth);
end;

procedure Meeting;
const
  MeetingTitle = 'CodeGear Discussion';
  MeetingMonth = 2007.03 ;
  { tags: #2007 }
begin
  WriteLn('''
Did anyone “attend” the virtual CodeGear conference last week, CodeRage? There were some good sessions, although I didn’t have time to listen in on all I wanted to. If you missed any of them, they’re all available at the CodeRage web site. The topic this month is just a loose discussion around Borland/CodeGear and speculation about how they’ll do this year. Delphi 2007 for Win32 was announced on Friday and has several really nice features and improvements.
  ''');
  MeetingDetails(MeetingTitle, MeetingMonth);
end;

procedure Meeting;
const
  MeetingTitle = 'General Discussion';
  MeetingMonth = 2007.01 ;
  { tags: #2007 }
begin
  WriteLn('''
There is no planned presentation tonight. However, if you want to influence this year’s schedule, discuss programming concepts, debate politics, or hear some home remodeling stories, meet me at the Lorenzen Center Monday night. I’ll be there around 5:30 PM. PRESENTER David Cornelius has been using Borland’s software development tools since the mid-80’s. He is the coordinator of the Oregon Delphi User Group, works for Retail Dimensions, and runs a contract software development business (CorneliusConcepts.
  ''');
  MeetingDetails(MeetingTitle, MeetingMonth);
end;

procedure Meeting;
const
  MeetingTitle = 'Nick Hodges' Fourteen Reasons Why You Should Upgrade to BDS2006';
  MeetingMonth = 2006.11 ;
  { tags: #Slides #2006 }
begin
  WriteLn('''
Less than half of our meetings this year have covered Delphi (1 month on FinalBuilder, 1 month skipped, 1 month on Java, and 3 months on PHP), so I decided it would behoove us to finish out the year with an actual Delphi presentation. While trying to figure out what would be a good topic and who I might be able to get up on the platform, I happened across an interesting blog.
  ''');
  MeetingDetails(MeetingTitle, MeetingMonth);
end;

procedure Meeting;
const
  MeetingTitle = 'Content Management Systems';
  MeetingMonth = 2006.10 ;
  { tags: #2006 }
begin
  WriteLn('''
Due to the high interest in Content Management Systems (CMSs) and PHP scripting, we’ll spend this month’s meeting discussing them. There won’t be a formal presentation, but there will be a laptop with a working copy of WAMP (Windows/Apache/MySQL/PHP) and at least Drupal and Joomla! loaded. To get you started on a good discussion, here are some web sites for reference you can browse beforehand: Read independent evaluations: CMS Watch Explore and test: Open Source CMS Compare and discuss: CMS Matrix PRESENTER David Cornelius has been using Borland’s software development tools since the mid-80’s.
  ''');
  MeetingDetails(MeetingTitle, MeetingMonth);
end;

procedure Meeting;
const
  MeetingTitle = 'Java Study';
  MeetingMonth = 2006.09 ;
  { tags: #Java #Rod Johnson #2006 }
begin
  WriteLn('''
In our continuing exploration on other programming langages and platforms, we cannot ignore Java. By using the JVM (Java Virtual Machine), the programmer can write once and run (almost) everywhere–at least more places than .NET can currently boast. Developers can write GUI client apps, enhance web pages, and build back-end server systems. Perhaps one of the more appealing aspects for Delphi Developers is the fact that Java is stronly typed and fully object-oriented.
  ''');
  MeetingDetails(MeetingTitle, MeetingMonth);
end;

procedure Meeting;
const
  MeetingTitle = 'More PHP';
  MeetingMonth = 2006.06 ;
  { tags: #Ken Cobun #PHP #2006 }
begin
  WriteLn('''
This month, the topic will continue our exploration of PHP. Last month was an introduction, this month we’ll get more advanced. The topic will largely be directed by the audience, but will try to at least touch on the following topics: Setting up PHP, Apache, MySQL on Windows (WAMP) Configuration of PHP.INI (Development vs Production) How to control your web application with .htaccess Security issues We’ll also see some sample web pages generated with PHP and try to address any other topics the group wants to talk about.
  ''');
  MeetingDetails(MeetingTitle, MeetingMonth);
end;

procedure Meeting;
const
  MeetingTitle = 'Introduction to PHP';
  MeetingMonth = 2006.05 ;
  { tags: #Chris Newcombe #PHP #2006 }
begin
  WriteLn('''
PHP - that’s the P from LAMP - is essentially a scripting language used inside HTML code to build dynamic web pages. Tonight’s talk will be an introduction to PHP. Examples of different coding structures will be given, presented from the perspective of what the PHP equivalent is to the familiar Delphi structures. To illustrate these concepts in a practical way we’ll go through the steps to build a simple website for a small store.
  ''');
  MeetingDetails(MeetingTitle, MeetingMonth);
end;