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.
----------
----------
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 26, 2004
The Classification of Virch Worlds
FrameSet in .NET
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.
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.
Wednesday, May 12, 2004
sciforums.com - VB Strong A.I. Project
Monday, May 10, 2004
Google's man behind the curtain
Google thinks that intelligence will not be invented at least 200 years...
Google's man behind the curtain | Newsmakers | CNET News.com
Google's man behind the curtain | Newsmakers | CNET News.com
Tuesday, May 04, 2004
Fiddler HTTP Debugger - HTTP Sniffer
Monday, May 03, 2004
JAIR - Journal of Artificial Intelligence Research --- FAQ
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, "<[^>]*>", "");
}
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, "<[^>]*>", "");
}