Perl
AI For You


SourceForge Logo

AI4U++ Textbook
Citeseer - AI4U
mind.txt - CPAN

Forums
A.I. Zone

AGI (read) Join

AI Chat

AI Meetup Day

AI Poll: Results

aima-talk

CogNews

comp.lang.perl.misc

Extropians BBS

KurzweilAI.net

perl-AI Mailing List
archived at Google

Slashdot perl 6 etc.


Resources
AI FAQ: Software

AI Wiki

AIMind-I.com

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


Codepaste

CPAN

del.icio.us perl

DMoz -- Perl

FAQTs -- Perl

GridApp Systems

Mentifex FAQ

Mind.Forth AI
& Dev Journal
& User Manual

Tutorial AI Mind
& Dev Journal
& User Manual

Singularity...
  • Timeline

    Standards in AI

    Textbook Revolution
  • free AI textbook

    Theory of Cognitivity

    Variables in AI4U

    Wikipedia

    Wikipedia - Perl 6


    Weblogs Via
    Technorati


    2lmc spool ( q.v.)

    Ahoyhoy.org ( 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.)

    Dennis Kane

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

    Nadeau, Charles ( 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 from
    the AI textbook AI4U: Mind-1.1 Programmer's Manual with printable Index.

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

    Sun.4.FEB.2007 Perl for Modular AI

    http://modularai.messageforums.net/perl-for-modular-ai_t28.html
    is an invitation for Perl AI coders to work on their own favorite
    mind-modules of Perl AI.

    http://tech.groups.yahoo.com/group/artificialintelligencegroup/message/3376 is a related post dealing with a Perl AI project.


    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.