Perl
AI Weblog
Mind Supporters
Mindmaker
Supporters

CPAN - mind.txt

AI Coding Steps
Index of
AI4U from
iUniverse.com

Forums
AGI Mailing List

AI Chat

AI Meetup Day

AI Poll: Results

CogNews

comp.lang.perl.misc

Extropians BBS

KurzweilAI.net

perl-AI Mailing List
archived at Google

Slashdot: Perl


Resources
AI FAQ: Software

AI Funding

BlogShares
Member Sites and
Others Linking To
Amazon AI4U
0595259227
Agents Portal
GameDev.net
GreatMindsWorking
Amazon AI4U
0595654371


CPAN

Concept-Fiber Theory of Mind

DMoz -- Perl

FAQTs -- Perl

Free Software Donation Directory

JavaScript AI Mind

Mind.Forth AI

Perl Design Patterns

Poor Man's AI Lab

RedPaper AI Lab

Standards in AI

Variables in AI4U


Weblogs Via
Technorati


2lmc spool ( q.v.)

Ahoyhoy.org ( q.v.)

AI Has Been Solved ( q.v.)

Blog HOT or NOT: weblogs with a perl focus.

Eckel, Bruce ( q.v.)

fiddle2 ( q.v.)

fozbaca.org ( q.v.)

Hunt, Kenneth ( q.v.)

Larsen, F.M. ( q.v.)

Nadeau, Charles ( q.v.)

perlblog ( q.v.)

Smith, Jeremy ( J$)

webmaster ( q.v.)

YAWN ( q.v.)




               ________        
              /        \   
             ( Motorium )   _______
    ________  \________/\  /       \               ________
   /        \            \/  main   \             /        \
  ( Volition )-----------(   Alife   )-----------( Security )
   \________/  ________  /\  loop   /\  _________ \________/
              /        \/  \_______/  \/         \
             (  Think   )      |      ( Sensorium )
              \________/   ____V____   \_________/
                          /         \       |
                         (  Emotion  )  ____V___
                          \_________/  /        \
                                      ( Audition )
                                       \________/
Next implement the Audition module as part of the general AI framework
described in AI4U: Mind-1.1 Programmer's Manual and textbook of AI.

See also Ada - APL - C - C++ - COBOL - Forth - Java - JavaScript - Labview - Lisp -
Oberon - Prolog - Python - Ruby - Scheme - Smalltalk - Tcl - Visual Basic - XML.

Wed.13.AUG.2003 -- mind.pl

#!/usr/bin/perl -w
#
sub security;
sub sensorium;
sub emotion;
sub think;
sub volition;
sub motorium;
while (1) {
  security();
  sensorium();
  emotion();
  think();
  volition();
  motorium();
}
sub security {
  # http://mentifex.virtualentity.com/acm.html#security 
} def;
sub sensorium {
  # http://mentifex.virtualentity.com/acm.html#sensorium
  print "Press ENTER or ESCAPE key: ";
  $_ = <STDIN>;
  exit if (/^\027/);
} def;
sub emotion {
  # http://mentifex.virtualentity.com/acm.html#emotion 
} def;
sub think {
  # http://mentifex.virtualentity.com/acm.html#think 
} def;
sub volition {
  # http://mentifex.virtualentity.com/acm.html#volition 
} def;
sub motorium {
  # http://mentifex.virtualentity.com/acm.html#motorium 
} def;
#---

Sun.10.AUG.2003 in the evolution of Do-It-Yourself Artificial Intelligence.

This weblog invites all Perl programmers to implement the main Alife Mind loop of the simplest artificial intelligence.

Please put the resulting free AI source code on the Web to inspire other coders to flesh out the core of the AI with additional mind-modules.

There is no need to standardize or homogenize the evolution of the server-side AI Minds in Perl. Let there be a wide diversity and diaspora of the evolving Minds in a classic scenario of the survival of the fittest.