Thursday, May 27, 2004

Super-goals and sub-goals discussion

Fumbling Towards the Meaning of Life: "jamesr at best.com"

AI - The Mind Revolution --- George71's site

AI history - The Mind Revolution: "General Problem Solver "

AI basic Design

Design
----------
The design of brains requires that we know what a brain is.
Nature -> Sensors -> Brain -> Motors -> Nature
is the flow diagram for everything that has a brain.
----------

Wednesday, May 19, 2004

Betterhumans > The Age of Purposeful Machines

Betterhumans > The Age of Purposeful Machines
Patrick Bailey has ideas which are similar with my ideas about hardcoded goals
I think I need to rename my hardcoded goals into Super-goals.

Monday, May 10, 2004

Monday, May 03, 2004

JAIR - Journal of Artificial Intelligence Research --- FAQ

JAIR - Some Frequently Asked Questions

AI Access Foundation, Inc.

AI Access Foundation, Inc.

Converting HTML to Text

Converting HTML to Text

private void Page_Load(object sender, System.EventArgs e)
{
Response.Write(StripTags("<b>Test</b>"));
}
/// <summary>
/// Removes tags from passed HTML
/// </summary>
/// <param name="HTML">Incoming HTML string</param>
/// <returns>Stripped text without HTML tags</returns>
string StripTags(string HTML)
{
return System.Text.RegularExpressions.Regex.Replace(HTML, "<[^>]*>", "");
}

Rex Swain's HTTP Viewer

Rex Swain's HTTP Viewer