<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="0.92">
<channel>
<lastBuildDate><![CDATA[Fri, 08 Aug 2008 00:54:44 GMT]]></lastBuildDate>
<title><![CDATA[lalbod]]></title>
<link><![CDATA[http://www.blogtext.org/lalbod/rss/lalbod]]></link>
<description><![CDATA[A free blog from blogtext.org]]></description>
<pubDate><![CDATA[Sun, 27 Jul 2008 17:46:18 -0500]]></pubDate>
<item>
<title><![CDATA[DEMO4]]></title>
<description><![CDATA[<p> ; «««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««<br/><br/>;                 Build this with the &quot;Project&quot; menu using<br/>;                        &quot;Console Assemble &amp; Link&quot;<br/><br/>comment * «««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««<br/><br/>There is another method of allocating space for uninitialised data in<br/>MASM that can only be done within a procedure. The use of LOCAL variables<br/>is possible in a procedure because the memory from the &quot;stack&quot; can be<br/>used in this way.<br/><br/>In MASM, allocating a LOCAL uninitialised variable is done at the beginning<br/>of a procedure BEFORE you write any code in the procedure. With memory<br/>allocated on the stack, it can only be used within that procedure and is<br/>deallocated at the end of the procedure on exit.<br/><br/>    LOCAL MyVar:DWORD       ; allocate a 32 bit space on the stack<br/>    LOCAL Buffer[128]:BYTE  ; allocate 128 BYTEs of space for TEXT data.<br/><br/>Variables created on the stack in this manner are sometimes called<br/>automatic variables and their main advantage is being fast, flexible<br/>and easy to use.<br/><br/>This demo also shows how to get user input from the console using &quot;input&quot;.<br/>It also introduces a simple procedure that has a value passed to it and<br/>the procedure uses a PROTOTYPE to enable size and parameter count checking<br/>to make the code more reliable.<br/><br/>««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««« *<br/><br/>    .486                                    ; create 32 bit code<br/>    .model flat, stdcall                    ; 32 bit memory model<br/>    option casemap :none                    ; case sensitive<br/> <br/>    include \masm32\include\windows.inc     ; always first<br/>    include \masm32\macros\macros.asm       ; MASM support macros<br/><br/>  ; -----------------------------------------------------------------<br/>  ; include files that have MASM format prototypes for function calls<br/>  ; -----------------------------------------------------------------<br/>    include \masm32\include\masm32.inc<br/>    include \masm32\include\gdi32.inc<br/>    include \masm32\include\user32.inc<br/>    include \masm32\include\kernel32.inc<br/><br/>  ; ------------------------------------------------<br/>  ; Library files that have definitions for function<br/>  ; exports and tested reliable prebuilt code.<br/>  ; ------------------------------------------------<br/>    includelib \masm32\lib\masm32.lib<br/>    includelib \masm32\lib\gdi32.lib<br/>    includelib \masm32\lib\user32.lib<br/>    includelib \masm32\lib\kernel32.lib<br/><br/>  ; --------------------------------------------------------------<br/>  ; This is a prototype for a procedure used in the demo. It tells<br/>  ; MASM how many parameters are passed to the procedure and how<br/>  ; big they are. This makes procedure calls far more reliable as<br/>  ; MASM will not allow different sizes or different numbers of<br/>  ; parameters to be passed. Note that a C calling convention<br/>  ; procedure CAN have a variable number of arguments but these<br/>  ; examples use the normal Windows STDCALL convention which is<br/>  ; different.<br/>  ; --------------------------------------------------------------<br/>    show_text PROTO :DWORD<br/><br/>    .code                       ; Tell MASM where the code starts<br/><br/>; «««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««<br/><br/>start:                          ; The CODE entry point to the program<br/><br/>    call main                   ; branch to the &quot;main&quot; procedure<br/><br/>    exit<br/><br/>; «««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««<br/><br/>main proc<br/><br/>    LOCAL txtinput:DWORD        ; a &quot;handle&quot; for the text returned by &quot;input&quot;<br/><br/>    mov txtinput, input(&quot;Type some text at the cursor : &quot;)<br/>    invoke show_text, txtinput<br/><br/>    ret<br/><br/>main endp<br/><br/>; «««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««<br/><br/>show_text proc string:DWORD<br/><br/>    print chr$(&quot;This is what you typed at the cursor&quot;,13,10,&quot;     *** &quot;)<br/>    print string                ; show the string at the console<br/>    print chr$(&quot; ***&quot;,13,10)<br/><br/>    ret<br/><br/>show_text endp<br/><br/>; «««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««<br/><br/>end start                       ; Tell MASM where the program ends<br/></p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/24230.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Sun, 27 Jul 2008 17:46:18 -0500]]></pubDate>
</item>
<item>
<title><![CDATA[DEMO3]]></title>
<description><![CDATA[<p> ; «««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««<br/><br/>;                 Build this with the &quot;Project&quot; menu using<br/>;                       &quot;Console Assemble and Link&quot;<br/><br/>comment * «««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««<br/><br/>A normal component of almost all programs is data. It can be either numeric<br/>data or text data. In MASM you have the distinction between data that is<br/>initialised with a value or UNinitialised data that just reserves the<br/>space to write data to.<br/><br/>Initialised data has this form.<br/><br/>.data<br/>  var1  dd  0                           ; 32 bit value initialised to zero<br/>  var2  dd  125                         ; 32 bit value initialised to 125<br/>  txt1  db  &quot;This is text in MASM&quot;,0    ; A zero terminated sequence of TEXT<br/><br/>  array dd 1,2,3,4,5,6,7,8              ; 8 x 32 bit values in sequence<br/><br/>Uninitialised data has this form.<br/><br/>.data?<br/>  udat1 dd ?                            ; Uninitialised single 32 bit space<br/>  buffa db 128 dup (?)                  ; 128 BYTES of uninitialised space<br/><br/>««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««« *<br/><br/>    .486                                    ; create 32 bit code<br/>    .model flat, stdcall                    ; 32 bit memory model<br/>    option casemap :none                    ; case sensitive<br/> <br/>    include \masm32\include\windows.inc     ; always first<br/>    include \masm32\macros\macros.asm       ; MASM support macros<br/><br/>  ; -----------------------------------------------------------------<br/>  ; include files that have MASM format prototypes for function calls<br/>  ; -----------------------------------------------------------------<br/>    include \masm32\include\masm32.inc<br/>    include \masm32\include\gdi32.inc<br/>    include \masm32\include\user32.inc<br/>    include \masm32\include\kernel32.inc<br/><br/>  ; ------------------------------------------------<br/>  ; Library files that have definitions for function<br/>  ; exports and tested reliable prebuilt code.<br/>  ; ------------------------------------------------<br/>    includelib \masm32\lib\masm32.lib<br/>    includelib \masm32\lib\gdi32.lib<br/>    includelib \masm32\lib\user32.lib<br/>    includelib \masm32\lib\kernel32.lib<br/><br/><br/>    .data<br/>      txtmsg db &quot;I am data in the initialised data section&quot;,0<br/><br/>    .code                       ; Tell MASM where the code starts<br/><br/>; «««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««<br/><br/>start:                          ; The CODE entry point to the program<br/><br/>    call main                   ; branch to the &quot;main&quot; procedure<br/><br/>    exit<br/><br/>; «««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««<br/><br/>main proc<br/><br/>    print OFFSET txtmsg         ; the &quot;OFFSET&quot; operator tells MASM that the text <br/>                                ; data is at an OFFSET within the file which means<br/>                                ; in this instance that it is in the .DATA section<br/><br/>    ret                         ; return to the next instruction after &quot;call&quot;<br/><br/>main endp<br/><br/>; «««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««<br/><br/>end start                       ; Tell MASM where the program ends<br/></p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/24227.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Sun, 27 Jul 2008 17:01:15 -0500]]></pubDate>
</item>
<item>
<title><![CDATA[WSDL Resources]]></title>
<description><![CDATA[<p>&nbsp;</p>
<h1>WSDL Resources</h1>
	<p><a href="http://www.w3schools.com/wsdl/">WSDL Tutorial</a> <br/><br/>
A multi-chapter wsdl tutorial from the always efficient folks at
w3schools includes a wsdl introduction, documents, ports, bindings,
wsdl and uddi, and wsdl syntax.</p>

	
	<p><a href="http://www.w3.org/TR/wsdl">Web Services Description Language (WSDL) 1.1</a> <br/><br/>
This document is a submission to the World Wide Web Consortium as a
suggestion for describing services for the W3C XML Activity on XML
Protocols. This draft represents the current thinking with regard to
descriptions of services within Ariba, IBM and Microsoft</p>

	
	<p><a href="http://www.developer.com/services/article.php/1602051">WSDL Essentials</a> <br/><br/>
This is Chapter 6: WSDL Essentials from the book Web Services
Essentials (ISBN:0-596-00224-6) written by Ethan Cerami, published by
O'Reilly &amp; Associates.</p>

	
	<p><a href="http://msdn.microsoft.com/archive/default.asp?url=/archive/en-us/dnarxml/html/wsdlexplained.asp">Web Services Description Language (WSDL) Explained</a> <br/><br/>
	MSDN site for WSDL.</p>

	
	<p><a href="http://radio.weblogs.com/0101679/stories/2002/02/15/aBusyDevelopersGuideToWsdl11.html">A Busy Developers Guide to WSDL 1.1</a> <br/><br/>
This document demonstrates how the process of achieving meaningful
interoperation between different environments can be achieved in a
simpler and less error prone manner by applying some of the basic
concepts described in WSDL 1.1</p>

	
	<p><a href="http://www-106.ibm.com/developerworks/webservices/library/ws-intwsdl/">Deploying Web services with WSDL: Part 1</a> <br/><br/>
In the Deploying Web services with WSDL series, Bilal will explore all
major technical aspects of creating, deploying, and publishing Web
services -- from Web Services Markup Language (WSDL), to Simple Object
access Protocol (SOAP), and Universal Description Discovery and
Integration (UDDI) registries. Part 1 focuses on WSDL authoring: You
will learn how to manually create a WSDL interface, and then compare
your effort with the output of a WSDL authoring tool.</p>

	
	<p><a href="http://www.javaworld.com/javaworld/jw-05-2002/jw-0524-wsdl.html?"> Is WSDL the indispensable API?</a> <br/><br/>
In this article, Eoin Lane shows a service's WSDL view, then explains
how you can generate client and service implementations for the various
programming languages. Eoin finishes by discussing possible sources for
initial WSDL view generatio</p>

	
	<p><a href="http://www.anomaly.org/wade/thesis/">WSDL: A New XML-Based Web Site Description Language</a> <br/><br/>
	This is a thesis regarding wsdl and xml.</p>

	
	<p><a href="http://www.xml.com/pub/a/ws/2003/05/27/wsdl.html">WSDL Tales From The Trenches, Part 1</a> <br/><br/>
	WSDL article.</p>

	
	<p><a href="http://www.xml.com/pub/a/ws/2003/01/08/randyray.html">Understanding Overloading in WSDL</a> <br/><br/>
	WSDL article.</p>

	
	<p><a href="http://www-106.ibm.com/developerworks/webservices/library/ws-whichwsdl/">Which style of WSDL should I use?</a> <br/><br/>
	RPC/encoded, RPC/literal, document/literal? Which one?</p>

	
	<p><a href="http://www-106.ibm.com/developerworks/library/ws-trans/?dwzone=ws">WSDL processing with XSLT</a> <br/><br/>
	First steps for Web service description processing.</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/17610.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Wed, 23 Jan 2008 01:17:56 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[ XSL Tutorials]]></title>
<description><![CDATA[<p>&nbsp;</p>
<h1> XSL Tutorials</h1>
	<p><a href="http://in.geocities.com/rsramsam/xslt.htm">XSLT  in J2EE/JAX and  ASP.Net</a> <br/><br/>
	This site features a 4-part tutorial with examples.</p>

	
	<p><a href="http://www.w3schools.com/xsl/">XSLT Tutorial</a> <br/><br/>
	Another comprehensive tutorial site from w3schools that includes an introduction, overview, tutorial and references.</p>

	
	<p><a href="http://www.w3.org/TR/xslt">XSL Transformations (XSLT) Version 1.0</a> <br/><br/>
This specification defines the syntax and semantics of XSLT, which is a
language for transforming XML documents into other XML documents.</p>

	
	<p><a href="http://www.htmlite.com/XMLintro.php">XML and XSLT</a> <br/><br/>
	This site covers the basics of creating an xml document and adding style to it using xslt.</p>

	
	<p><a href="http://www.zvon.org/xxl/XSLTutorial/Books/Book1/">XSLT Tutorial</a> <br/><br/>
	A multi-page xslt tutorial that includes an example page. There is also an xpath tutorials and an xml namespace tutorial.</p>

	
	<p><a href="http://www-106.ibm.com/developerworks/library/ws-trans/?dwzone=ws">WSDL processing with XSLT</a> <br/><br/>
	First steps for Web service description processing.</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/17609.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Wed, 23 Jan 2008 01:17:17 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[XML Tools]]></title>
<description><![CDATA[<p>&nbsp;</p>
<h1>XML Tools</h1>
	<p><a href="http://www.mindfusion.org/product1.html">XML Viewer</a> <br/><br/>
MindFusion's XML Viewer is a freeware program used to examine the
contents of an XML file in an easy-to-use environment. In addition you
can make modification to the XML such as inserting or deleting items or
properties.</p>

	
	<p><a href="http://www.freexmleditor.com/">Exchanger XML Lite V3.2</a> <br/><br/>
Exchanger XML Lite is a Java-based product that provides comprehensive
functionality for viewing, authoring and editing XML data and
documents. The Exchanger XML Lite edition is for use only in
non-commercial environments.</p>

	
	<p><a href="http://www.freedownloadscenter.com/Programming/Editors/XmEdiL.html">XmEdiL</a> <br/><br/>
XmEdiL is free document editor for XML and other languages. Provides
standard Windows interface, validation, transformations, XPath builder,
language editor, entry helpers, autocomplete, intellisense, projects,
syntax colorizing, W3C conformant.</p>

	
	<p><a href="http://xmlstar.sourceforge.net/">XMLStarlet Command Line XML Toolkit</a> <br/><br/>
XMLStarlet is a set of command line utilities (tools) which can be used
to transform, query, validate, and edit XML documents and files using
simple set of shell commands in similar way it is done for plain text
files using UNIX grep, sed, awk, diff, patch, join, etc commands.</p>

	
	<p><a href="http://www.xmlcooktop.com/">Cooktop</a> <br/><br/>
	Cooktop is a free xml editor for windows and development environment for XML, DTD, and XSLT documents</p>

	
	<p><a href="http://www.iol.ie/~pxe/">Peter's XML editor v2.0</a> <br/><br/>
	Microsoft XML parser MSXML 4.0 is needed to run this software. This can be installed by selecting the custom setup option.</p>

	
	<p><a href="http://gendiapo.sourceforge.net/">GenDoc</a> <br/><br/>
GenDoc is an open source XML editor written in Java2. It is based on a
existing project (MerlotXML), and can use two kinds of plugins (DTD
and/or action). The DTD plugin can be used to customize the editor for
a DTD, and an action plugin can be used to publish documents in HTML or
PDF format.</p>

	
	<p><a href="http://www.logilab.org/view?rql=Any%20X%20WHERE%20X%20eid%202552">Python XmlTools</a> <br/><br/>
Python XmlTools is a set of high level tools to help using XML in
python. It relies heavily on PyXml and 4Suite to access XML resources</p>

	
	<p><a href="http://www.xmloperator.net/">xmloperator : an XML editor</a> <br/><br/>
xmloperator is an XML editor, suitable for editing data oriented
documents. The software is open source, Java written, released under a
BSD-style license. It requires J2SE 1.4 and uses Xerces-J, Xalan-J and
Ant from the Apache Software Fondation.</p>

	
	<p><a href="http://www.ltg.ed.ac.uk/~ht/xed.html">XED</a> <br/><br/>
XED is a text editor for XML document instances. It is designed to
support hand-authoring of small-to-medium size XML documents, and is
optimised for keyboard input. There are beta versions for windows,
solaris, freebsd and linux.</p>

	
	<p><a href="http://www.pierlou.com/visxml/">Visual XML</a> <br/><br/>
Visual XML is a tool that enables you to create and modify DTD and XML
documents. It appears to be a java application in beta form.</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/17608.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Wed, 23 Jan 2008 01:16:35 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[XML Tutorials]]></title>
<description><![CDATA[<p>&nbsp;</p>
<h1>XML Tutorials</h1>
	<p><a href="http://www.javapassion.com/xml/brandeis-xml-2001.html">XML Course</a> <br/><br/>
This site has material from an xml course offered by the author, who
specializes in Java technology. I do not know if this is one of the
courses that he offers for free online, but there is a wealth of
information in the form of slides that are downloadable in pdf format.</p>

	
	<p><a href="http://www.w3schools.com/xml/default.asp">XML School</a> <br/><br/>
	Another comprehensive site from W3SChools with everthing from an introduction to XML to examples and a quiz.
</p>

	
	<p><a href="http://www.geocities.com/SiliconValley/Peaks/5957/10minxml.html">learn xml in 11.5 minutes</a> <br/><br/>
	Sounds a bit optimistic, but this looks like a pretty straightforward introduction to XML.
</p>

	
	<p><a href="http://www.devguru.com/features/tutorials/XML/beginning_xml.html">DevGuru XML Tutorial</a> <br/><br/>
	A Beginners Guide to Creating and Displaying Your First XML document.
</p>

	
	<p><a href="http://www.javacommerce.com/tutorial/xmldev/index.html">Introduction to XML Programming</a> <br/><br/>
In this Tutorial we will be explaining you step by step how to use XML
Parsers (SAX , DOM, XSLT). Also we will be explaining how to create
DTDs and we will also be covering how to use NameSpaces.</p>

	
	<p><a href="http://www.extropia.com/tutorials/xml/toc.html">introduction to XML for web developers</a> <br/><br/>
	XML tutorial for web developers.</p>

	
	<p><a href="http://www.topxml.com/xml/learnxml.asp">Learn XML</a> <br/><br/>
	This is a short tutorial on programming with xml.</p>

	
	<p><a href="http://www.w3schools.com/schema/default.asp">XML Schema Tutorial</a> <br/><br/>
Schema tutorial, learn what an XML Schema is. You will also learn how
XML Schema will replace DTD, and how to use the XML Schema language in
your applications.</p>

	
	<p><a href="http://www.wdvl.com/Authoring/Languages/XML/Intro/">XML: Structuring Data for the Web</a> <br/><br/>
	Another fine tutorial site from the people at the Web Developer's Virtual Library (WDVL).
</p>

	
	<p><a href="http://java.sun.com/xml/jaxp/dist/1.1/docs/tutorial/index.html">Working with XML</a> <br/><br/>
	The Java API for Xml Processing (JAXP) Tutorial</p>

	
	<p><a href="http://www.xmlfiles.com/xml/">XML 101</a> <br/><br/>
	XML tutorial.</p>

	
	<p><a href="http://www.zvon.org/xxl/XMLTutorial/General/contents.html">XML Tutorial</a> <br/><br/>
	In this tutorial selected XML features are demonstrated.</p>

	
	<p><a href="http://www.zvon.org/xxl/DTDTutorial/General/contents.html">DTD Tutorial</a> <br/><br/>
	In this tutorial basic DTD features are demonstrated on many examples.</p>

	
	<p><a href="http://www.w3.org/XML/">www.w3.org/XML/</a> <br/><br/>
	Tons of XML resources
</p>

	
	<p><a href="http://xmlhack.com/read.php?item=199">XML Schema tutorial</a> <br/><br/>
Roger Costello has produced an downloadable XML Schema tutorial which
is based on the latest drafts of the XML Schema specifications.</p>

	
	<p><a href="http://www.xml.com/pub/a/98/10/guide0.html">Technical Introduction to XML</a> <br/><br/>
This introduction to XML presents the Extensible Markup Language at a
reasonably technical level for anyone interested in learning more about
structured documents.(long article)</p>

	
	<p><a href="http://www.textuality.com/Lark/">Introduction to XML Processing with Lark and Larval</a> <br/><br/>
Lark is a non-validating XML processor implemented in the Java
language. Larval is a validating XML processor built on the same code
base as Lark. Source code can be downloaded.
</p>

	
	<p><a href="http://www.w3schools.com/xsl/default.asp">XSL Tutorial</a> <br/><br/>
	An introduction to XSL - The style sheet language of XML. What XSL is and what it can do.</p>

	
	<p><a href="http://www.brics.dk/~amoeller/XML/transformation/index.html">XSL and XSLT</a> <br/><br/>
	Stylesheets and document transformation</p>

	
	<p><a href="http://java.sun.com/xml/">Java Technology and XML</a> <br/><br/>
	XML with Java resources.</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/17607.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Wed, 23 Jan 2008 01:15:48 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[XML Forums]]></title>
<description><![CDATA[<p>&nbsp;</p>
<h1>XML Forums</h1>
	<p><a href="http://www.tek-tips.com/gthreadminder.cfm/lev2/4/lev3/32/pid/426">Tek-Tips XML Forum</a> <br/><br/>
	XML forum.</p>

	
	<p><a href="http://groups.google.com/groups?hl=en&amp;lr=&amp;ie=UTF-8&amp;group=comp.text.xml">Google XML Forum</a> <br/><br/>
	XML Forum</p>

	
	<p><a href="http://www.flashcfm.com/forums/categories.cfm?catid=7">XML / WDDX Forum</a> <br/><br/>
	XML / WDDX forum.</p>

	
	<p><a href="http://forums.webdeveloper.com/forumdisplay.php?s=4fe87282a23d6152eca691d2016c33e9&amp;forumid=5">XML Forum</a> <br/><br/>
	Free registration required to post.</p>

	
	<p><a href="http://www.flashkit.com/board/forumdisplay.php?forumid=48">flashkit XML Forum</a> <br/><br/>
	XML forum.</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/17606.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Wed, 23 Jan 2008 01:14:48 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[XML FAQs]]></title>
<description><![CDATA[<p>&nbsp;</p>
<h1>XML FAQs</h1>
	<p><a href="http://java.sun.com/xml/faq.html">Java Technology and  XML</a> <br/><br/>
	Sun faq about using xml with java.</p>

	
	<p><a href="http://www.tupps.com/flash/faq/xml.html">Flash-XML FAQ</a> <br/><br/>
The Flash-XML FAQ aims to provide a definitive source for common
questions about Flash and its interaction with XML (and XML
datasources).</p>

	
	<p><a href="http://www.oreillynet.com/faqs/list.csp?id_subject=23">The XML FAQ</a> <br/><br/>
	XML faq at Oreilly.</p>

	
	<p><a href="http://www.schemavalid.com/faq/xml-schema.html">XML Schema FAQ</a> <br/><br/>
	The XML Schema FAQ is largely updated from posts in xmlschema-dev and xml-dev.</p>

	
	<p><a href="http://www.rpbourret.com/xml/NamespacesFAQ.htm">XML Namespaces FAQ</a> <br/><br/>
	This looks like a comprehensive faq about xml namespaces.</p>

	
	<p><a href="http://irt.org/script/xml.htm">irt.org</a> <br/><br/>
	Extensible Markup Language (XML) FAQ Knowledge Base.</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/17605.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Wed, 23 Jan 2008 01:14:16 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[XML Articles]]></title>
<description><![CDATA[<p>&nbsp;</p>
<h1>XML Articles</h1>
	<p><a href="http://www.xmlfiles.com/">XML Files</a> <br/><br/>
	Links to XML articles and short tutorials.</p>

	
	<p><a href="http://www.ibiblio.org/xml/books/bible2/chapters/ch17.html">XSL Sample Chapter</a> <br/><br/>
	Chapter 17 of the XML Bible, Second Edition : XSL Transformations</p>

	
	<p><a href="http://www.w3.org/XML/1999/XML-in-10-points">XML in 10 points</a> <br/><br/>
This summary in 10 points attempts to capture enough of the basic
concepts to enable a beginner to see the forest through the trees.</p>

	
	<p><a href="http://www.simonstl.com/articles/whyxml.htm">Why XML?</a> <br/><br/>
	XML article.</p>

	
	<p><a href="http://www.geocities.com/SiliconValley/Peaks/5957/wxml.html">what is xml?</a> <br/><br/>
	XML article.</p>

	
	<p><a href="http://www.javaworld.com/javaworld/jw-03-2000/jw-0331-ssj-jspxml.html">Using XML and JSP together</a> <br/><br/>
XML and JSP are two of the hottest buzzwords these days. This article
shows how you can use these two technologies together to make a dynamic
Website.</p>

	
	<p><a href="http://www.htmlgoodies.com/tutors/xml.html">What is XML?</a> <br/><br/>
	XML article.</p>

	
	<p><a href="http://www.developer.com/services/article.php/2195981">Web Services Tutorial: Understanding XML and XML Schema</a> <br/><br/>
This Web Service article series covers all the important standards in
the Web Services stack and ties them together with real-world examples.
The first article in this series discusses XML (Extended Markup
Language).</p>

	
	<p><a href="http://www.brics.dk/~amoeller/XML/xml/whatisxml.html">What is XML?</a> <br/><br/>
	XML is a framework for defining markup languages:</p>

	
	<p><a href="http://www-106.ibm.com/developerworks/xml/library/x-sbxml.html">Humans should not have to grok XML</a> <br/><br/>
	When you should and should not use XML from IBM Developer Works.</p>

	
	<p><a href="http://www.javaworld.com/javaworld/jw-04-1999/jw-04-xml.html">XML for the absolute beginner</a> <br/><br/>
	A guided tour from HTML to processing XML with Java.</p>

	
	<p><a href="http://www.xml.com/">xml.com</a> <br/><br/>
	Articles and resources.
</p>

	
	<p><a href="http://www.javaworld.com/javaworld/jw-01-2000/jw-01-dbxml.html">XML APIs for databases</a> <br/><br/>
	Blend the power of XML and databases using custom SAX and DOM APIs.</p>

	
	<p><a href="http://www.dpawson.co.uk/xsl/print/index.html">Printing XML using XSL</a> <br/><br/>
	Printing XML using XSL</p>

	
	<p><a href="http://www.webreference.com/xml/column73/">Extending XMLMap: XML for Presentation Purposes</a> <br/><br/>
	XML article.</p>

	
	<p><a href="http://www.webreference.com/xml/column72/">Safer XML</a> <br/><br/>
	XML article.</p>

	
	<p><a href="http://www.webreference.com/xml/column70/">Charting the XML territory with XMLMap</a> <br/><br/>
	XML article.</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/17604.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Wed, 23 Jan 2008 01:13:38 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[Ajax Tutorials and Libraries]]></title>
<description><![CDATA[<p>&nbsp;</p>
<h1>Ajax Tutorials and Libraries</h1>
	<p><a href="http://freeajaxscripts.net/">Free Ajax Scripts Directory</a>   <img alt="new" height="12" src="http://www.freeprogrammingresources.com/images/new2.gif" width="25"/><br/><br/>
	A collection of free ajax scripts and tutorials with demos so you can test them out.</p>

	
	<p><a href="http://www.maxkiesler.com/index.php/weblog/comments/round_up_of_30_ajax_tutorials/">Round-up of 30 AJAX Tutorials</a> <br/><br/>
	This is a list of helpful ajax programming tutorials found around the web.</p>

	
	<p><a href="http://www.maxkiesler.com/index.php/weblog/comments/60_more_helpful_ajax_tutorials/">60 More AJAX Tutorials</a> <br/><br/>
This is another ajax programming blog entry by the same guy who listed
30 useful ajax programming tutorials. Many of the listed tutorials come
with ajax source code.</p>

	
	<p><a href="http://www.w3schools.com/ajax/default.asp">W3 Schools AJAX Tutorial</a> <br/><br/>
	An AJAX tutorial from the helpful people at W3Schools.</p>

	
	<p><a href="http://www.javapassion.com/ajaxcodecamp/">10-Week Free AJAX Programming (with Passion!) Online Course</a> <br/><br/>
The first session of this free online AJAX course is already underway,
but there are slides and various other resources available. This is a
Java site so the AJAX course ultimately involves JavaServer Faces and
AJAX integration.</p>

	
	<p><a href="http://www.manning.com/crane/">Ajax in Action</a> <br/><br/>
There are two sample chapters and a 22-minute screencast on ajax
available for free at the site for the book (source code appears to be
available too). You will need to register with an email to see the
screencast though.</p>

	
	<p><a href="http://atlas.asp.net/Default.aspx?tabid=47">ASP.NET Atlas</a> <br/><br/>
	Atlas is a free framework from Microsoft for adding Ajax to ASP.NET pages.</p>

	
	<p><a href="http://developer.yahoo.com/yui/">Yahoo! User Interface Library</a> <br/><br/>
This is a set of utilities and controls, written in JavaScript, for
building interactive web applications using techniques such as DOM
scripting, DHTML and AJAX. The components in the YUI Library have been
released as open source under a BSD license.</p>

	
	<p><a href="http://code.google.com/webtoolkit/">Google Web Toolkit</a> <br/><br/>
This is a java software development kit that lets you build AJAX
applications like Google Earth and Gmail. You write your program in
Java, and the GWT compiler converts your Java classes to
browser-compliant JavaScript and HTML.</p>

	
	<p><a href="http://www.webpasties.com/xmlHttpRequest/">Guide to Using AJAX and XMLHttpRequest from WebPasties</a> <br/><br/>
This is an Ajax articles that shows you how to use Ajax to
automatically fill in form fields with the city and state based on the
zip code that the user enters into another field.</p>

	
	<p><a href="http://www-128.ibm.com/developerworks/web/library/wa-ajaxintro1.html">Mastering Ajax, Part 1: Introduction to Ajax</a> <br/><br/>
	This is an introductory Ajax article at IBM.</p>

	
	<p><a href="http://www-128.ibm.com/developerworks/web/library/wa-ajaxintro2/?ca=dgr-lnxw07AJAX-Request">Mastering Ajax, Part 2</a> <br/><br/>
	Part two of this ajax series covers making asynchronus requests with javascript and ajax.</p>

	
	<p><a href="http://www.alistapart.com/articles/gettingstartedwithajax">Getting Started with Ajax</a> <br/><br/>
This article at A List Apart is an excerpt from the book Web Design in
a Nutshell and covers using ajax with innerHTML and Nodes to manipulate
page content dynamically.</p>

	
	<p><a href="http://www.johnwiseman.ca/blogging/?p=61">Creating a MySQL connection with PHP/AJAX</a> <br/><br/>
	This is a short ajax tutorial on opening a connection to MySql using ajax.</p>

	
	<p><a href="http://sourceforge.net/projects/sarissa">Sarissa</a> <br/><br/>
Sarissa is a cross-browser ECMAScript library for client side XML
manipulation, including loading XML from URLs or strings, performing
XSLT transformations, XPath queries and more. Supported: Gecko
(Mozilla, Firefox etc), IE, KHTML (Konqueror, Safari</p>

	
	<p><a href="http://sourceforge.net/projects/najax">NAJAX</a> <br/><br/>
This package can be used to call PHP classes on the Web server side
from Javascript code in Web pages. It uses AJAX technology to submit
HTTP requests from Javascript to pass call parameters and collect and
process the responses.</p>

	
	<p><a href="http://openrico.org/rico/home.page">Rico</a> <br/><br/>
Rico provides a very simple interface for registering Ajax request
handlers as well as HTML elements or JavaScript objects as Ajax
response objects. Multiple elements and/or objects may be updated as
the result of one Ajax request</p>

	
	<p><a href="http://xajax.sourceforge.net/">xajax</a> <br/><br/>
xajax is an open source PHP class library that allows you to easily
create powerful, web-based, Ajax applications using HTML, CSS,
JavaScript, and PHP. Applications developed with xajax can
asynchronously call server-side PHP functions and update content
without reloading the page</p>

	
	<p><a href="http://www.modernmethod.com/sajax/">Sajax</a> <br/><br/>
Sajax is an open source tool to make programming websites using the
Ajax framework &#65533; also known as XMLHTTPRequest or remote scripting &#65533; as
easy as possible. Sajax makes it easy to call PHP, Perl or Python
functions from your webpages via JavaScript without performing a
browser refresh</p>

	
	<p><a href="http://getahead.ltd.uk/dwr/">DWR</a> <br/><br/>
DWR is a Java open source library which helps developers wanting to
write web sites that include AJAX technology. It allows code in a web
browser to use Java functions running on a web server as if it was in
the browser.</p>

	
	<p><a href="http://ajaxanywhere.sourceforge.net/">AjaxAnywhere</a> <br/><br/>
AjaxAnywhere turns any set of existing JSP components into AJAX-aware
components without a complex JavaScript coding. Simply separate your
web page into multiple zones, and use AjaxAnywhere to refresh only
those zones that needs to be updated.</p>

	
	<p><a href="http://www.informit.com/articles/article.asp?p=425820&amp;rl=1">How To Use AJAX</a> <br/><br/>
Kris Hadlock explains how to use AJAX in a real-world situation and how
you can assess its value in a project. By the time you finish reading
this article, you'll know what AJAX is as well as where, why, and how
to use it.</p>

	
	<p><a href="http://www.xml.com/pub/a/2005/02/09/xml-http-request.html">Very Dynamic Web Interfaces</a> <br/><br/>
	This article explores the use of JavaScript and the XMLHttpRequest object.</p>

	
	<p><a href="http://en.wikipedia.org/wiki/AJAX">Ajax Programming</a> <br/><br/>
	This Wikipedia article has some general information about Ajax programming including example sites using ajax.</p>

	
	<p><a href="http://www.sunflowerroad.com/blog/timstidbits/ajax-tutorial/">Ajax Tutorial</a> <br/><br/>
This point of this article is not to debate the merits of one approach
over another, but to introduce ajax in a way that is simple, yet
powerful enough to be useful. The author uses php, xml and javascript.</p>

	
	<p><a href="http://developer.mozilla.org/en/docs/AJAX:Getting_Started">AJAX:Getting Started</a> <br/><br/>
This article at the Mozilla developer center guides you through the
AJAX basics and gives you two simple hands-on examples to get you
started.</p>

	
	<p><a href="http://rajshekhar.net/blog/archives/85-Rasmus-30-second-AJAX-Tutorial.html">Rasmus 30 second AJAX Tutorial</a> <br/><br/>
	N/A</p>

	
	<p><a href="http://jibbering.com/2002/4/httprequest.html">Using the XML HTTP Request object</a> <br/><br/>
	Ajax articles that is a short tutorial with ajax examples.</p>

	
	<p><a href="http://aleembawany.com/weblog/webdev/000051_ajax_instant_tutorial.html">AJAX: Instant Tutorial</a> <br/><br/>
More of a short article than a tutorial on how to make a call to an
http server get content and load it into your existing page without
having to refresh the whole page.</p>

	
	<p><a href="http://www.onlamp.com/pub/a/onlamp/2005/05/19/xmlhttprequest.html">A Simpler Ajax Path</a> <br/><br/>
This ajax article looks at some ways to handle server-side errors to
make debugging less of a headache. It uses the example of a html form
that posts to a server-side Ruby script.</p>

	
	<p><a href="http://particletree.com/features/the-hows-and-whys-of-degradable-ajax/">The Hows and Whys of Degradable Ajax</a> <br/><br/>
	Includes an online example and downloadable code (php is used server-side).</p>

	
	<p><a href="http://dhtmlnirvana.com/ajax/ajax_tutorial/">Ajax Tutorial: Ajax What Is It Good For?</a> <br/><br/>
	Walks through the basics of Ajax and culminates in the building of a little Ajax powered Fading Image Gallery application.</p>

	
	<p><a href="http://www.xml.com/pub/a/2005/08/19/ajax.html?CMP=OTC-TY3388567169">Remote Scripting with AJAX,</a> <br/><br/>
This two-part series of articles covers remote scripting using the AJAX
XMLHttpRequest protocol. Part one walks through an example application
that demonstrates how to implement the protocol, while part two shows
how to create a usable interface.</p>

	
	<p><a href="http://dev2dev.bea.com/pub/a/2005/08/ajax_introduction.html">An Introduction To Ajax</a> <br/><br/>
	This articles is an introduction to ajax programming and using the DWR java library.</p>

	
	<p><a href="http://today.java.net/pub/a/today/2005/08/25/dwr.html">Developing AJAX Applications the Easy Way</a> <br/><br/>
This article demonstrates the use of DWR, a Java open source library,
to create a multi-user web-based chat site. It demonstrates how simple
it is to integrate JavaScript in the web browser with Java on the
server.</p>

	
	<p><a href="http://www.onlamp.com/pub/a/onlamp/2005/06/09/rails_ajax.html">Ajax on Rails</a> <br/><br/>
	This article introduces the incredibly easy-to-use Ajax support that is part of the Ruby on Rails web application framework.</p>

	
	<p><a href="http://alexbosworth.backpackit.com/pub/67688">Ajax Mistakes</a> <br/><br/>
	A list of the many mistakes developers using Ajax often make.</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/17603.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Wed, 23 Jan 2008 01:12:00 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[Visual Basic Scripting Resources]]></title>
<description><![CDATA[<p>&nbsp;</p>
<h1>Visual Basic Scripting Resources</h1>
	<p><a href="http://msdn2.microsoft.com/en-us/library/d1wf56tt.aspx">Language Reference for VBScript</a> <br/><br/>
This is an MS site with reference information for VBScript including
keywords, features, functions, methods, objects, constants, operators,
properties etc.
</p>

	
	<p><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/script56/html/vbstutor.asp">VBScript User&#65533;s Guide</a> <br/><br/>
Microsoft's reference site for VBScript covers the basics of VBScript
such as data types, variables, constants, operators, conditions,
looping, procedures and coding conventions..
</p>

	
	<p><a href="http://www.visualbasicscript.com/">VisualBasicScript.com</a> <br/><br/>
	Includes information on VBScript and ASP.
</p>

	
	<p><a href="http://www.devguru.com/technologies/vbscript/quickref/vbscript_intro.html">DevGuru VBScript Quick Reference</a> <br/><br/>
This is an extremely comprehensive 247 page reference source that
explains and gives examples of code, plus the resultant output, for all
of the constants, functions, methods, properties, objects, operators,
and statements that define this language.
</p>

	
	<p><a href="http://www.intranetjournal.com/corner/wrox/progref/vbt/ch21_17.shtml">Adding VBScript to Web Pages</a> <br/><br/>
	Adding VBScript to a Web page using the script tag.</p>

	
	<p><a href="http://www.tek-tips.com/gthreadminder.cfm/lev2/4/lev3/32/pid/329">Tek-Tips VBScript Forum</a> <br/><br/>
	VBScript forum.</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/17602.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Wed, 23 Jan 2008 01:06:35 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[Visual Basic Forums]]></title>
<description><![CDATA[<p>&nbsp;</p>
<h1>Visual Basic Forums</h1>
	<p><a href="http://www.xtremevbtalk.com/">Extreme Visual Basic Forum</a> <br/><br/>
	You may have to register before you can post.</p>

	
	<p><a href="http://www.andreavb.com/forum/">AndreaVB Forum</a> <br/><br/>
	Free visual basic forum and other VB resources.</p>

	
	<p><a href="http://forum.onecenter.com/cpevb/">Visual Basic Forum</a> <br/><br/>
	Visual Basic Forum, post your questions or queries here.</p>

	
	<p><a href="http://www.code4u.com/?page=forum&amp;sectionID=14">Visual Basic Forum</a> <br/><br/>
	N/A</p>

	
	<p><a href="http://www.experts-exchange.com/Programming/Programming_Languages/Visual_Basic/">Experts-Exchange.com</a> <br/><br/>
	VB forum.</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/17601.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Wed, 23 Jan 2008 00:56:49 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[Visual Basic FAQs]]></title>
<description><![CDATA[<p>&nbsp;</p>
<h1>Visual Basic FAQs</h1>
	<p><a href="http://www.mvps.org/vbnet/index.html?http://www.mvps.org/vbnet/faq/main/index.html">VBnet FAQ Q&amp;A</a> <br/><br/>
	Visual Basic Developers Resource Centre</p>

	
	<p><a href="http://www.cs.umd.edu/~egolub/PocketPC/evb.faq.shtml">Unofficial Embedded Visual Basic 3.0 FAQ</a> <br/><br/>
	This FAQ assumes you have Embedded Visual Basic 3.0 installed on your machine.</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/17600.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Wed, 23 Jan 2008 00:56:04 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[Visual Basic Source Code]]></title>
<description><![CDATA[<p>&nbsp;</p>
<h1>Visual Basic Source Code</h1>
	<p><a href="http://msdn.microsoft.com/vbasic/downloads/code/101samples/">101 Code Samples for Visual Basic 2005</a> <br/><br/>
	101 Samples featuring many of the new features available with Visual Basic 2005 and the .NET Framework 2.0.</p>

	
	<p><a href="http://www.microsoft.com/downloads/details.aspx?familyid=08e3d5f8-033d-420b-a3b1-3074505c03f3&amp;displaylang=en">101 Visual Basic and C# Code Samples</a> <br/><br/>
This download includes a master set of Visual Basic and Visual C# code
samples demonstrating various aspects of the language in the following
areas: syntax, data access, Windows Forms, Web development and Web
services, XML, security, the .NET Framework, file system and file I/O,
interop and migration issues, COM+, ADO.NET, and advanced topics
including graphics with GDI+, remoting, serialization, MSMQ, and
Windows services.</p>

	
	<p><a href="http://vb.mvps.org/">Classic VB Code</a> <br/><br/>
	The collected works of Karl E. Peterson, author of numerous Visual Basic articles and samples.</p>

	
	<p><a href="http://www.planet-source-code.com/vb/">Planet Source Code</a> <br/><br/>
	Huge repository of VB Source code.
</p>

	
	<p><a href="http://www.thescarms.com/VBasic/">Scarms Visual Basic Code Library</a> <br/><br/>
	Includes source code screenshots and instructions.
</p>

	
	<p><a href="http://searchvb.techtarget.com/">Visual Basic Search Engine</a> <br/><br/>
	Free code library, free registration required.
</p>

	
	<p><a href="http://www.a1vbcode.com/">A1VBCode</a> <br/><br/>
	VB source code arranged by category.
</p>

	
	<p><a href="http://home1.swipnet.se/~w-13055/codepot.htm">Developer Workshop</a> <br/><br/>
	Visual Basic Source Code Depot.
</p>

	
	<p><a href="http://www.vbexplorer.com/">Visual Basic Explorer</a> <br/><br/>
	Source Code, Tutorials, Tips, Downloads, and Links.
</p>

	
	<p><a href="http://www.imt.net/~joe/matt/program/vb/Source/index.htm">The Visual Basic Cell</a> <br/><br/>
	Here you can find source code for many commonly used functions.
</p>

	
	<p><a href="http://www.murach.com/books/bvbn/download.htm">Sample Book Applications for VB.NET</a> <br/><br/>
	A downloadable file that contains 5 sample applications that go with a book on VB.NET.</p>

	
	<p><a href="http://www.vbaccelerator.com/home/index.asp">vbaccelerator.com</a> <br/><br/>
	A site devoted to providing free, advanced source code to Visual Basic programmers.</p>

	
	<p><a href="http://www.vbcode.com/">VBCode.com</a> <br/><br/>
	Visual Basic code snippets and files</p>

	
	<p><a href="http://www.codebeach.com/index.asp?categoryID=11&amp;TabID=1">Code Beach</a> <br/><br/>
	Free and Open Source Code and Tutorials.</p>

	
	<p><a href="http://www.emu8086.com/vb/index_vb.html">Visual Basic Source Codes</a> <br/><br/>
	N/A</p>

	
	<p><a href="http://www.codeguru.com/vb/">codeguru</a> <br/><br/>
	Extensive VB resources.</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/17599.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Wed, 23 Jan 2008 00:55:10 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[Visual Basic Tutorials]]></title>
<description><![CDATA[<p>&nbsp;</p>
<h1>Visual Basic Tutorials</h1>
	<p><a href="http://www.bitwisemag.com/copy/vb/vb1.html">VB - serial communications</a> <br/><br/>
A six part tutorial on serial comms with VB6 and VB .NET from Bitwise
magazine (I only see three parts, but it may be a work in progress or
maybe I am just too punchy form lack of sleep to find the others right
now.)</p>

	
	<p><a href="http://www.bitwisemag.com/copy/vb/vb_graphics1.html">VB - graphics</a> <br/><br/>
	A three part tutorial on mastering the GDI with VB6 from Bitwise magazine.</p>

	
	<p><a href="http://www.garybeene.com/">Gary Beene's VB Information Center VB Tutorial</a> <br/><br/>
	Beginner, intermediate and advanced Visual Basic Tutorials.</p>

	
	<p><a href="http://www.vb-helper.com/howtobeg.htm">VB Helper</a> <br/><br/>
	Tutorials, Tips and Tricks, and How to's.
</p>

	
	<p><a href="http://www.geocities.com/SiliconValley/Bay/5707/vbasic.html">The QP7 Programming Page</a> <br/><br/>
	event driven programming with VB.
</p>

	
	<p><a href="http://www.geocities.com/vkliew/vb/vb.html">Visual Basic Tutorial</a> <br/><br/>
	The objective of this online tutorial is to provide free tutorial for beginner to intermediate users.</p>

	
	<p><a href="http://freespace.virgin.net/s.cowan/vbhowto/">VB How To</a> <br/><br/>
	N/A</p>

	
	<p><a href="http://www.functionx.com/vb/">Visual Basic 6 Tutorial</a> <br/><br/>
	Tutorial and an example Color Changer application.</p>

	
	<p><a href="http://www.devdos.com/vb/wanttobe.shtml">Visual Basic (Introduction)</a> <br/><br/>
This website is for programmers and would-be programmers who want to
learn visual basic as quickly as possible, You will be quickly creating
applications by following the simple examples</p>

	
	<p><a href="http://robinmckay.topcities.com/resources.html">Visual Basic Resource</a> <br/><br/>
A set of vb tutorials, links, downloadable samples plus a chat room and
message board for developers at all levels of experience. </p>

	
	<p><a href="http://www.imt.net/~joe/matt/program/vb/Tutorials/">Visual Basic Tutorials</a> <br/><br/>
	Here is where you can find tutorials on how to do different things in Visual Basic.</p>

	
	<p><a href="http://cuinl.tripod.com/tutorials.htm">VB Tutorial</a> <br/><br/>
This Tutorial is for completely beginners with Visual Basic. It will
teach you right from the very start, how to make your first program in
Visual Basic. </p>

	
	<p><a href="http://www.vbtutor.net/vbtutor.html">Visual Basic Tutorial</a> <br/><br/>
	In order to get started with Visual Basic programming, I presume you already have some basic knowledge in BASIC programming</p>

	
	<p><a href="http://cuinl.tripod.com/tutorials/ocx-11.htm">Make Your First ActiveX Control</a> <br/><br/>
	In this tutorial we will make a button control, that will pop
a message box when the user will click on it.
</p>

	
	<p><a href="http://markbutler.8m.com/vb-tutorial.htm">VB Game Creation Tutorial</a> <br/><br/>
	This tutorial is specifically aimed at fairly new VB programmers who are interested in writing a game.
</p>

	
	<p><a href="http://www.boondog.com/tutorials/dlltutor/dlltutor.htm">Visual Basic (DLL's) and PC Interfacing</a> <br/><br/>
	This tutorial will show you can write VB programs using a Dynamically linked library (DLL).
</p>

	
	<p><a href="http://www.mvps.org/vbnet/">VBnet</a> <br/><br/>
	The Visual Basic Developers Resource Centre
</p>

	
	<p><a href="http://www.johnsmiley.com/visualbasic/vb.htm">Professor Smiley's</a> <br/><br/>
	website for the VB beginner.
</p>

	
	<p><a href="http://www.vbip.com/">Visual Basic Internet Programming</a> <br/><br/>
	Articles, tutorials, source code, and other resources devoted to VB developers.
</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/17598.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Wed, 23 Jan 2008 00:54:29 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[Visual Basic Books]]></title>
<description><![CDATA[<p>&nbsp;</p>
<h1>Visual Basic Books</h1>
	<p><a href="http://msdn.microsoft.com/vbrun/staythepath/additionalresources/upgradingvb6/">Upgrading Microsoft Visual Basic 6.0 to Microsoft Visual Basic .NET</a> <br/><br/>
This is a technical guide to upgrading from the Microsoft website. It
is a free visual basic book with 21 chapters and appears to be
comprehensive.</p>

	
	<p><a href="http://www.samspublishing.com/library/library.asp?b=STY_VB6_24hours&amp;rl=1">Sams Teach Yourself Visual Basic 6 in 24 Hours</a> <br/><br/>
This book teaches Visual Basic on several levels. You will quickly
begin creating applications by following simple examples. These
applications will be fully working Windows applications with all the
usual user-interface controls, such as command buttons, labels, and
text boxes.</p>

	
	<p><a href="http://msdn.microsoft.com/vbrun/staythepath/additionalresources/introto2005/">Introducing Visual Basic 2005 for Developers</a> <br/><br/>
Get a focused, first look at the features and capabilities in Microsoft
Visual Basic 2005, Visual Studio 2005, and .NET Framework 2.0. If you
currently work with Visual Basic 6, these authors fully understand the
adoption and code migration issues you&#65533;ll encounter. They&#65533;ll step you
through a quick primer on .NET Framework programming, offering guidance
for a productive transition. If you already work with .NET, you&#65533;ll jump
directly into what&#65533;s new, learning how to extend your existing skills.
From the innovations in rapid application development, debugging, and
deployment, to new data access, desktop, and Web programming
capabilities, you get the prerelease insights and code walkthroughs you
need to get productive right away.</p>

	
	<p><a href="http://www.computer-books.us/vb_0004.php">Programming VB.NET: A Guide for Experienced Programmers</a> <br/><br/>
This free 513-pages ebook is a comprehensive hands-on guide to the
Visual Basic .NET programming language addressed to readers with some
programming background. No background in Visual Basic is required,
however. While it will show you the syntax of VB .NET, this book is not
designed to teach you syntax. Trying to force VB .NET into the
framework of older versions of VB is ultimately self-defeating: you
cannot take advantage of its power if you continue to think within an
older paradigm.</p>

	
	<p><a href="http://www.computer-books.us/vb_0004.php">Programming VB.NET: A Guide For Experienced Programmers</a> <br/><br/>
	Mirror link.</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/17597.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Wed, 23 Jan 2008 00:53:51 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[Visual Basic.NET]]></title>
<description><![CDATA[<p>&nbsp;</p>
<h1>Visual Basic.NET</h1>
	<p><a href="http://www.computer-books.us/vb_0004.php">Programming VB.NET: A Guide for Experienced Programmers</a> <br/><br/>
This free 513-pages ebook is a comprehensive hands-on guide to the
Visual Basic .NET programming language addressed to readers with some
programming background. No background in Visual Basic is required,
however. While it will show you the syntax of VB .NET, this book is not
designed to teach you syntax. Trying to force VB .NET into the
framework of older versions of VB is ultimately self-defeating: you
cannot take advantage of its power if you continue to think within an
older paradigm.</p>

	
	<p><a href="http://msdn.microsoft.com/vbrun/staythepath/additionalresources/introto2005/">Introducing Visual Basic 2005 for Developers</a> <br/><br/>
Get a focused, first look at the features and capabilities in Microsoft
Visual Basic 2005, Visual Studio 2005, and .NET Framework 2.0. If you
currently work with Visual Basic 6, these authors fully understand the
adoption and code migration issues you&#65533;ll encounter. They&#65533;ll step you
through a quick primer on .NET Framework programming, offering guidance
for a productive transition. If you already work with .NET, you&#65533;ll jump
directly into what&#65533;s new, learning how to extend your existing skills.
From the innovations in rapid application development, debugging, and
deployment, to new data access, desktop, and Web programming
capabilities, you get the prerelease insights and code walkthroughs you
need to get productive right away</p>

	
	<p><a href="http://msdn.microsoft.com/vbasic/previous/2003/using/default.aspx">Visual Basic .NET 2003 Developer Information</a> <br/><br/>
	Examine in-depth technical information and learn how to build applications using Visual Basic .NET 2003.  </p>

	
	<p><a href="http://msdn.microsoft.com/vbasic/">Visual Basic Developer Center</a> <br/><br/>
	Microsoft's main VB Developer site.</p>

	
	<p><a href="http://www.devarticles.com/c/b/VB.Net/">VB.Net at Dev Articles</a> <br/><br/>
	Articles and short tutorials on vb.net programming.</p>

	
	<p><a href="http://www.vbdotnetheaven.com/Sections/Tutorials.asp">Visual Basic .NET Tutorials</a> <br/><br/>
Short tutorials - some with downloadable example code - for vb.net
programming including Visual Basic .NET for VB 6.0 Developers.</p>

	
	<p><a href="http://www.startvbdotnet.com/">Startvbdotnet</a> <br/><br/>
This .NET Website is aimed at developers who are new to Visual Basic
.NET and ASP.NET and at developers who are upgrading from Visual Basic
to Visual Basic .NET and from ASP to ASP.NET.</p>

	
	<p><a href="http://www.codeproject.com/vb/net/">Visual Basic .NET articles</a> <br/><br/>
	A lerge collection of vb.net articles organized into categories.</p>

	
	<p><a href="http://www.microsoft.com/downloads/details.aspx?familyid=08e3d5f8-033d-420b-a3b1-3074505c03f3&amp;displaylang=en">101 Visual Basic and C# Code Samples</a> <br/><br/>
This download includes a master set of Visual Basic and Visual C# code
samples demonstrating various aspects of the language in the following
areas: syntax, data access, Windows Forms, Web development and Web
services, XML, security, the .NET Framework, file system and file I/O,
interop and migration issues, COM+, ADO.NET, and advanced topics
including graphics with GDI+, remoting, serialization, MSMQ, and
Windows services.</p>

	
	<p><a href="http://msdn.microsoft.com/vbasic/downloads/code/101samples/">101 Code Samples for Visual Basic 2005</a> <br/><br/>
	101 Samples featuring many of the new features available with Visual Basic 2005 and the .NET Framework 2.0.</p>

	
	<p><a href="http://www.developer.com/lang/other/article.php/939411">Implementing Interfaces in VB .NET</a> <br/><br/>
	VB.NET article.</p>

	
	<p><a href="http://www.developerfusion.co.uk/show/1047/2/">New Object-Oriented Capabilities in VB.NET - VB.NET OO Implementation</a> <br/><br/>
	VB.NET Article.</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/17596.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Wed, 23 Jan 2008 00:52:50 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[Tcl/Tk Resources]]></title>
<description><![CDATA[<p>&nbsp;</p>
<h1>Tcl/Tk Resources</h1>
	<p><a href="http://www.bin-co.com/tcl/tutorial/">A Tcl(Tutorial for Cool Languages) for Tcl/Tk</a> <br/><br/>
	A tutorial for Tcl/Tk language. Teachs how to make GUI(Graphical User Interface) Tcl/Tk scripts for Windows, Linux and Mac OS.</p>

	
	<p><a href="http://www.invece.org/tclwise/">TCLWISE: An introduction to the Tcl programming language</a> <br/><br/>
This book is an introduction to the main ideas of the Tcl programming
language. To read this book, the only prior knowledge needed is some
basic understanding of programming in any language. The first nine
chapters are available online.</p>

	
	<p><a href="http://www.geocities.com/binnyva/code/tcl/tutorial/index.html">Tcl/Tk Tutorial</a> <br/><br/>
	A tutorial for Tcl/Tk beginners.</p>

	
	<p><a href="http://kakunin.chat.ru/tcldev/">TCL Developer Studio</a> <br/><br/>
The Developer Studio provides a useful framework for working with TCL
projects. Includes an editor and project management tools.
</p>

	
	<p><a href="http://users.belgacom.net/bruno.champagne/tcl.html">Tcl Tutorial</a> <br/><br/>
	This is a short introduction to the Tcl script language.
</p>

	
	<p><a href="http://www.ardenstone.com/projects/seniorsem/tcl/">A Non-Programmer's Introduction to Tcl/Tk</a> <br/><br/>
This is a tutorial geared towards all those people who are comfortable
with their computer and want to learn how to create some simple (and
perhaps not so simple) programs.
</p>

	
	<p><a href="http://www.cs.utah.edu/dept/old/texinfo/dejagnu/dejagnu_8.html">Tcl Overview</a> <br/><br/>
	One page that is an overview and short Tcl reference.
</p>

	
	<p><a href="http://www.itd.clrc.ac.uk/Publications/Cookbook/">A Cookbook for the Tool Command Language (Tcl) and the Tk Toolkit</a> <br/><br/>
	N/A</p>

	
	<p><a href="http://tcl.activestate.com/doc/engManual.pdf">Engineering Guide for the Tcl core implementation</a> <br/><br/>
	pdf file.
</p>

	
	<p><a href="http://www.doc.ic.ac.uk/~np2/software/tcl-setup.html">Integrating Tcl with the NT Shell</a> <br/><br/>
This document describes how to better integrate the Tcl interpreters
with the NT shell. By following these instructions you will be able to
treat Tcl/Tk scripts like any Win32 program and specify whether a
script is run as a windowed application or a comm</p>

	
	<p><a href="http://www.demailly.com/tcl/plugin/tutorial/">How To Write Tclets</a> <br/><br/>
	How to write Tclets and how to put them into web pages.
</p>

	
	<p><a href="http://www.hwaci.com/sw/mktclapp/">Mktclapp</a> <br/><br/>
	Mktclapp is a utility that helps you mix C/C++ with Tcl/Tk to make a standalone executable.
</p>

	
	<p><a href="http://www.msen.com/~clif/TclTutor.html">TclTutor : Interactive Computer Aided Instruction for Tcl</a> <br/><br/>
TclTutor is a computer aided instruction package for learning the Tcl
language. It consists of 43 lessons covering all of the basic Tcl
commands and most of the recent (8.0) additions.</p>

	
	<p><a href="http://www.beedub.com/book/">Practical Programming in Tcl and Tk</a> <br/><br/>
Sample chapters available for download in a mixture of pdf and html, a
few from each edition of this free tcl book. There also appears to be a
partial first draft of the first edition in pdf form.</p>

	
	<p><a href="http://www.csc.calpoly.edu/~dbutler/tutorials/winter96/tcl/">Introduction to Tcl/Tk</a> <br/><br/>
	Tcl/Tk tutorial that introduces the basics and the creation of a simple color picker application.</p>

	
	<p><a href="http://tcl.activestate.com/man/">Tcl-Tk Manual Pages</a> <br/><br/>
	Tcl/Tk documentation at ActiveState in html and tar format.
</p>

	
	<p><a href="http://users.pandora.be/koen.vandamme1/papers/tcl_objects/tcl_objects.html">Objects in TCL</a> <br/><br/>
	This paper assumes that you are familiar with TCL, and that you have written at least a few simple scripts in TCL.
</p>

	
	<p><a href="http://ptolemy.eecs.berkeley.edu/~johnr/tutorials/tcljava98/">Tcl and Java Programming</a> <br/><br/>
Tcl-Java tutorial held at the Tcl/Tk workshop for Tcl programmers
interested in interfacing Tcl scripts to Java, available in HTML and
slides.
</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/17595.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Wed, 23 Jan 2008 00:50:43 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[Ruby On Rails Resources]]></title>
<description><![CDATA[<p>&nbsp;</p>
<h1>Ruby On Rails Resources</h1>
	<p><a href="http://www.rubyonrails.com/">rubyonrails.com</a> <br/><br/>
	Central site for Ruby on Rails with downloads and instructional videos.</p>

	
	<p><a href="http://www.onlamp.com/pub/a/onlamp/2005/01/20/rails.html">Rolling with Ruby on Rails</a> <br/><br/>
	A five-part introduction to the Ruby on Rails framework at OnLamp.com.</p>

	
	<p><a href="http://www.onlamp.com/pub/a/onlamp/2005/03/03/rails.html">Rolling with Ruby on Rails, Part 2</a> <br/><br/>
	The second part of the OnLamp article.</p>

	
	<p><a href="http://wiki.rubyonrails.com/rails/pages/Tutorial">Ruby on Rails Tutorial</a> <br/><br/>
	A six-step tutorial on getting a basic Rails application running.</p>

	
	<p><a href="http://rails.homelinux.org/">Four Days on Rails</a> <br/><br/>
Rails is well documented on-line; in fact, possibly too well documented
for beginners, with over 30,000 words of on-line documentation in the
format of a reference manual. What's missing is a roadmap pointing to
the key pages that you need to know to get up and running in Rails
development. Four Days on Rails is designed to fill that gap. It's
about 40 pages formatted for double-sided printing on A4, and by the
time you've read it, you should have a useful toolbox of Rails
techniques and a good idea of where to look on the web for more
information</p>

	
	<p><a href="http://www.onlamp.com/pub/a/onlamp/2005/10/13/what_is_rails.html">What Is Ruby on Rails</a> <br/><br/>
	This is an introduction and road map to the many features of Rails</p>

	
	<p><a href="http://www.slash7.com/articles/2005/01/24/really-getting-started-in-rails">Really Getting Started in Rails</a> <br/><br/>
	Some Rails articles that look to be short tutorials.</p>

	
	<p><a href="http://www.onlamp.com/pub/a/onlamp/2005/06/09/rails_ajax.html">Ajax on Rails</a> <br/><br/>
	This article introduces the incredibly easy-to-use Ajax support that is part of the Ruby on Rails web application framework.</p>

	
	<p><a href="http://wiki.rubyonrails.com/rails/pages/Howtos">Howtos in Ruby on Rails</a> <br/><br/>
	This is a list of how to documents for Ruby on Rails.</p>

	
	<p><a href="http://weblog.rubyonrails.com/">Riding Rails</a> <br/><br/>
	Official RubyonRails blog.</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/17594.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Wed, 23 Jan 2008 00:49:28 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[Ruby Forums]]></title>
<description><![CDATA[<p>&nbsp;</p>
<h1>Ruby Forums</h1>
	<p><a href="http://www.tek-tips.com/threadminder.cfm?pid=753">Ruby Forum - Tek-Tips</a> <br/><br/>
	N/A</p>

	
	<p><a href="http://www.sitepoint.com/forums/forumdisplay.php?f=227">SitePoint Forums - Ruby</a> <br/><br/>
	N/A</p>

	
	<p><a href="http://www.sketchup.com/forum/list.php?f=6">SketchUp Ruby Forum</a> <br/><br/>
	N/A</p>

	
	<p><a href="http://ocsforums.com/forumdisplay.php?f=1">Ruby - OCS Community Forums</a> <br/><br/>
	N/A</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/17593.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Wed, 23 Jan 2008 00:48:50 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[Ruby Faqs]]></title>
<description><![CDATA[<p>&nbsp;</p>
<h1>Ruby Faqs</h1>
	<p><a href="http://www.rubygarden.org/faq/">The Ruby FAQ</a> <br/><br/>
	N/A</p>

	
	<p><a href="http://www.rubycentral.com/faq/index.html">Ruby Faq</a> <br/><br/>
	N/A</p>

	
	<p><a href="http://wiki.rubyonrails.org/rails/pages/FAQ">FAQ in Ruby on Rails</a> <br/><br/>
	N/A</p>

	
	<p><a href="http://hypermetrics.com/rubyhacker/clrFAQ.html">comp.lang.ruby FAQ</a> <br/><br/>
	This is the faq for the ruby-lang mail list.</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/17592.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Wed, 23 Jan 2008 00:48:13 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[Ruby Bloggers]]></title>
<description><![CDATA[<p>&nbsp;</p>
<h1>Ruby Bloggers</h1>
	<p><a href="http://redhanded.hobix.com/">RedHanded</a> <br/><br/>
	sneaking Ruby through the system</p>

	
	<p><a href="http://blogs.pragprog.com/cgi-bin/pragdave.cgi">PragDave</a> <br/><br/>
	N/A</p>

	
	<p><a href="http://nubyonrails.com/">Nuby on Rails</a> <br/><br/>
	N/A</p>

	
	<p><a href="http://www.robbyonrails.com/">Robby on Rails</a> <br/><br/>
	N/A</p>

	
	<p><a href="http://weblog.rubyonrails.com/">Riding Rails</a> <br/><br/>
	Official RubyonRails blog</p>

	
	<p><a href="http://www.vanderburg.org/Blog">Glenn Vanderburg</a> <br/><br/>
	N/A</p>

	
	<p><a href="http://www.slash7.com/">Slash7.com</a> <br/><br/>
	N/A</p>

	
	<p><a href="http://www.lylejohnson.name/blog/">Lovable Lyle</a> <br/><br/>
	N/A</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/17591.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Wed, 23 Jan 2008 00:47:35 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[Ruby Articles]]></title>
<description><![CDATA[<p>&nbsp;</p>
<h1>Ruby Articles</h1>
	<p><a href="http://rubyhacker.com/ruby37.html">Thirty-seven Reasons I Love Ruby</a> <br/><br/>
	Ruby Article.</p>

	
	<p><a href="http://www.whytheluckystiff.net/articles/rubyOneEightOh.html">What's Shiny and New in Ruby 1.8.0?</a> <br/><br/>
	Ruby article.</p>

	
	<p><a href="http://freshmeat.net/articles/view/358/">Why You Might Want to Try Ruby</a> <br/><br/>
	Freshmeat article on ruby programming.</p>

	
	<p><a href="http://www.ruby-doc.org/docs/Newcomers/ruby.html">Things That Newcomers to Ruby Should Know</a> <br/><br/>
	N/A</p>

	
	<p><a href="http://www.ruby-doc.org/docs/GSWR/">Getting Started With Ruby</a> <br/><br/>
This document presents some resources available to help newcomers to
Ruby solve their problems, advance their knowledge, and participate in
the Ruby community.</p>

	
	<p><a href="http://www.io.com/~jimm/writing/rubytalk/talk.html">Ruby, an Introduction</a> <br/><br/>
	A rather long article that is not quite a tutorial.</p>

	
	<p><a href="http://www.artima.com/rubycs/articles/pdf_writer.html">Creating Printable Documents with Ruby</a> <br/><br/>
In this article, Austin Ziegler introduces the creation of a variety of
types of documents with PDF::Writer for Ruby. This introduction covers
basic creation, partial document generation and customization, and
Rails-generated documents.</p>

	
	<p><a href="http://blogs.eng5.com/~mlightner/?p=19">The Fivefold Path</a> <br/><br/>
	What Every Webmaster and Web Developer MUST Know About Ruby on Rails and AJAX</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/17590.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Wed, 23 Jan 2008 00:46:47 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[Ruby Source Code]]></title>
<description><![CDATA[<p>&nbsp;</p>
<h1>Ruby Source Code</h1>
	<p><a href="http://ruby.codezoo.com/">CodeZoo</a> <br/><br/>
	Ruby Component Directory</p>

	
	<p><a href="http://rubyforge.org/">RubyForge</a> <br/><br/>
	RubyForge is a home for open source Ruby projects.</p>

	
	<p><a href="http://raa.ruby-lang.org/">RAA - Ruby Application Archive</a> <br/><br/>
	N/A</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/17589.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Wed, 23 Jan 2008 00:46:01 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[Ruby Sites]]></title>
<description><![CDATA[<p>&nbsp;</p>
<h1>Ruby Sites</h1>
	<p><a href="http://www.ruby-lang.org/en/">Ruby Home Page</a> <br/><br/>
	You can download Ruby here and find all kinds of information and the latest news about the Ruby programming language.</p>

	
	<p><a href="http://www.rubycentral.com/index.html">Ruby Central</a> <br/><br/>
	Articles, downloads and various ruby resources.</p>

	
	<p><a href="http://www.rubygarden.org/ruby">Ruby Wiki</a> <br/><br/>
	Here you may explore the abundance of information on Ruby and participate by creating your own Ruby related wiki pages.</p>

	
	<p><a href="http://rubyweeklynews.org/">Ruby Weekly News</a> <br/><br/>
	Ruby Weekly News is a summary of the week&#65533;s activity on the ruby-talk mailing list.</p>

	
	<p><a href="http://www.rubygarden.org/">Ruby Garden</a> <br/><br/>
	Various Ruby resources.</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/17588.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Wed, 23 Jan 2008 00:45:10 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[Ruby Downloads]]></title>
<description><![CDATA[<p>&nbsp;</p>
<h1>Ruby Downloads</h1>
	<p><a href="http://www.radrails.org/">RadRails</a> <br/><br/>
RadRails is an integrated development environment for the Ruby on Rails
framework. The goal of this project is to provide Rails developers with
everything they need to develop, manage, test and deploy their
applications. Features include source control, debugging, WEBrick
servers, generator wizards, syntax highlighting, data tools and much
much more.</p>

	
	<p><a href="http://www.ruby-lang.org/en/20020102.html">Download Ruby</a> <br/><br/>
	Get the latest stable release of Ruby.</p>

	
	<p><a href="http://www.saltypickle.com/rubydotnet/">Ruby/.NET Bridge</a> <br/><br/>
The Ruby/.NET Bridge lets you use .NET and Ruby objects together in
your programs. You can access .NET objects from Ruby and vice-versa.</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/17587.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Wed, 23 Jan 2008 00:44:25 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[Ruby Documentation]]></title>
<description><![CDATA[<p>&nbsp;</p>
<h1>Ruby Documentation</h1>
	<p><a href="http://www.ruby-doc.org/">ruby-doc.org</a> <br/><br/>
	News and Documentation for the Ruby Programing Languge</p>

	
	<p><a href="http://api.rubyonrails.com/">Ruby on Rails API</a> <br/><br/>
	N/A</p>

	
	<p><a href="http://www.ruby-doc.org/core/">Core Ruby Documentation</a> <br/><br/>
	N/A</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/17586.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Wed, 23 Jan 2008 00:43:47 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[Ruby Tutorials and Online Books]]></title>
<description><![CDATA[<p>&nbsp;</p>
<h1>Ruby Tutorials and Online Books</h1>
	<p><a href="http://sitekreator.com/satishtalim/index.html">Learning Ruby</a> <br/><br/>
	Ruby study notes that form a Ruby programming tutorial.</p>

	
	<p><a href="http://www.sapphiresteel.com/The-Little-Book-Of-Ruby">Little Book Of Ruby</a> <br/><br/>
	Ruby tutorial ebook - PDF download.</p>

	
	<p><a href="http://www.bitwisemag.com/copy/programming/ruby/intro/1/ruby1.html">Ruby</a> <br/><br/>
	An introduction to Ruby programming complete with source code from Bitwise magazine.</p>

	
	<p><a href="http://rhg.rubyforge.org/">Ruby Hacking Guide</a> <br/><br/>
This is a site that houses a project to translate the Ruby book from
Japanese into English. So far it looks like four of nineteen chapters
have been translated.</p>

	
	<p><a href="http://www.brpreiss.com/books/opus8/">Data Structures and Algorithms with Object-Oriented Design Patterns in Ruby</a> <br/><br/>
This also illustrates object-oriented design and it promotes the use of
common, object-oriented design patterns. The algorithms and data
structures in the book are presented in the Ruby programming language.
Virtually all the data structures are presented in the context of a
single class hierarchy. This commitment to a single design allows the
programs presented in the later chapters to build upon the programs
presented in the earlier chapters.</p>

	
	<p><a href="http://www.math.umd.edu/~dcarrera/ruby/0.3/">Learning Ruby</a> <br/><br/>
This is an online ruby programming tutorial in book form that can also
be downloaded. It appears that it may still be under construction and
currently goes up to creating you own classes and methods.</p>

	
	<p><a href="http://www.rubycentral.com/book/index.html">Programming Ruby</a> <br/><br/>
	Programming Ruby: The Pragmatic Programmer's Guide is an online ruby programming book that appears to be fairly comprehensive.</p>

	
	<p><a href="http://pine.fm/LearnToProgram/">Learn to Program</a> <br/><br/>
	A basic Ruby programming tutorial.</p>

	
	<p><a href="http://www.visibleworkings.com/little-ruby/">A Little Ruby, A Lot of Objects</a> <br/><br/>
	This is a draft book titled A Little Ruby, A Lot of Objects.</p>

	
	<p><a href="http://www.ruby-doc.org/docs/UsersGuide/rg/">Ruby User Guide</a> <br/><br/>
	Includes code examples.</p>

	
	<p><a href="http://poignantguide.net/ruby/">(Poignant) Guide to Ruby</a> <br/><br/>
	An online book about Ruby.</p>

	
	<p><a href="http://www.ruby.ch/tutorial/">RubyCHannel Tutorial</a> <br/><br/>
	This is an interactive tutorial with code that you can modify and have interpreted.</p>

	
	<p><a href="http://www.zenspider.com/Languages/Ruby/QuickRef.html">Ruby QuickRef</a> <br/><br/>
	A Ruby quick reference in book format.</p>

	
	<p><a href="http://developer.kde.org/language-bindings/ruby/tutorial/tutorial.html">Qt Tutorial #1 - The 14 Steps</a> <br/><br/>
This tutorial gives an introduction to GUI programming using the Qt
toolkit with QtRuby. It doesn't cover everything: the emphasis is on
teaching the programming philosophy of GUI programming, and Qt's
features are introduced as needed.</p>

	
	<p><a href="http://members.chello.nl/k.vangelder/ruby/learntk/">Ruby/Tk Tutorial</a> <br/><br/>
	This tutorial is aimed at people that want to use Tk as toolkit with Ruby.</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/17585.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Wed, 23 Jan 2008 00:43:05 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[Python Tutorials]]></title>
<description><![CDATA[<p>&nbsp;</p>
<h1>Python Tutorials</h1>
	<p><a href="http://www.hetland.org/python/instant-python.php">Instant Python</a> <br/><br/>
	This is a minimal crash-course in the programming language Python. It is available in several different languages.
</p>

	
	<p><a href="http://www.python.org/doc/current/tut/tut.html">Python Tutorial</a> <br/><br/>
	Python Tutorial at Python.org, July 20, 2001, Release 2.1.1. 
</p>

	
	<p><a href="http://www.livewires.org.uk/python/">The LiveWires Python Course</a> <br/><br/>
The LiveWires team produced a set of worksheets and a Python package
(the LiveWires package) to teach Python. The material is released as
open source and can be downloaded.
</p>

	
	<p><a href="http://www.ibiblio.org/obp/pyBiblio/">Python Bibliotheca</a> <br/><br/>
This site aims to be both a library of educational materials using
Python to teach computer programming, and a virtual meeting place for
teachers and students engaged in learning and teaching using Python.
</p>

	
	<p><a href="http://en.wikibooks.org/wiki/Non-Programmer's_Tutorial_for_Python/Contents">Non-Programmers Tutorial For Python</a> <br/><br/>
	All example python source code in this tutorial is granted to the public domain.</p>

	
	<p><a href="http://www.wag.caltech.edu/home/rpm/python_course/">Python Short Course</a> <br/><br/>
	Available as a powerpoint presentation, in pdf form, or viewable online in html format.</p>

	
	<p><a href="http://wiki.python.org/moin/PythonSpeed/PerformanceTips">Python Performance Tips</a> <br/><br/>
	This page is devoted to various tips and tricks that help improve the performance of your Python programs.
</p>

	
	<p><a href="http://www.dickbaldwin.com/tocpyth.htm">Python Programming Tutorial</a> <br/><br/>
	N/A</p>

	
	<p><a href="http://www.cs.virginia.edu/~lab2q/">CGI in Python</a> <br/><br/>
The objective of this site is twofold: introduce new Python programmers
to the core language and provide new CGI programmers with a conceptual
CGI knowledge base through the use of Python.</p>

	
	<p><a href="http://starship.python.net/crew/hinsen/">Python for Science</a> <br/><br/>
	Course materials for a course in Python in including exercises etc.</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/17584.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Wed, 23 Jan 2008 00:42:06 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[Python Source Code]]></title>
<description><![CDATA[<h1>Python Source Code</h1>
	<p><a href="http://python.codezoo.com/">CodeZoo</a> <br/><br/>
	Python Component Directory</p>

	
	<p><a href="http://aspn.activestate.com/ASPN/Cookbook/Python/">Python Cookbook at ActiveState.com</a> <br/><br/>
	Looks like there are a lot of cool Python recipes here.</p>

	
	<p><a href="http://www.scriptsearch.com/details/4389.html">OpenSource library to create dynamic PDF</a> <br/><br/>
	An easy package for high-quality dynamic personalized PDF documents in real-time &amp; high volumes from any data sources</p>

	
	<p><a href="http://www.codebeach.com/index.asp?categoryID=16&amp;TabID=1">Python Source Code</a> <br/><br/>
	Collection of Python source.</p>
<p>&nbsp;</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/17583.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Wed, 23 Jan 2008 00:41:12 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[Python Official Sites]]></title>
<description><![CDATA[<p>&nbsp;</p>
<h1>Python Official Sites</h1>
	<p><a href="http://www.gotdotnet.com/workspaces/workspace.aspx?id=ad7acff7-ab1e-4bcb-99c0-57ac5a3a9742">IronPython</a> <br/><br/>
IronPython is the code name of the early pre-alpha preview release of
the new Implementation Running on .NET of the Python programming
language. It supports an interactive interpreter with fully dynamic
compilation. It is well integrated with the rest of the framework and
makes all .NET libraries easily available to Python programmers.</p>

	
	<p><a href="http://www.zope.org/Members/Brian/PythonNet/index_html">Python for .NET</a> <br/><br/>
Python for .NET is a package that gives Python programmers nearly
seamless integration with the .NET Common Language Runtime (CLR) and
provides a powerful application scripting tool for .NET developers.
Using this package you can script .NET applications or build entire
applications in Python, using .NET services and components written in
any language that targets the CLR (Managed C++, C#, VB, JScript).</p>

	
	<p><a href="http://www.ironpython.com/">IronPython</a> <br/><br/>
	IronPython is a new Python implementation targeting the .NET and Mono platforms.</p>

	
	<p><a href="http://www.python.org/">Python Home Page</a> <br/><br/>
	Python central site as Python.org</p>

	
	<p><a href="http://www.activestate.com/Products/ActivePython/">ActivePython</a> <br/><br/>
ActivePython is ActiveState's quality-assured binary build of Python,
available for Linux, Solaris and Windows. As part of ActiveState's
support for Python, we provide the ActivePython binary packages free to
the community.</p>

	
	<p><a href="http://www.python.org/download/">Official Python Download Page</a> <br/><br/>
	Download the latest version of Python from this page.</p>

	
	<p><a href="http://www.python.org/doc/current/ref/ref.html">Python Reference Manual</a> <br/><br/>
	Release 2.1.1, July 20, 2001.
</p>

	
	<p><a href="http://www.python.org/doc/current/lib/lib.html">Python Library Reference</a> <br/><br/>
	Official site at Python.org.
</p>

	
	<p><a href="http://www.python.org/doc/current/">Python 2.1.1 Documentation</a> <br/><br/>
	Download or browse online at Python.org.
</p>

	
	<p><a href="http://www.python.org/topics/web/">Web Programming Topic Guide</a> <br/><br/>
This Topic Guide covers Web-related programming with Python. This
includes a wide spectrum of tasks, ranging from simple CGI programming,
generating and parsing HTML and XML, writing HTTP clients and servers</p>

	
	<p><a href="http://www.python.org/topics/database/">Database Topic Guide</a> <br/><br/>
This Topic Guide covers accessing relational databases from Python. The
related issue of adding persistence to Python objects is also
discussed. Links to relevant Python modules, documentation, and
projects are provided.</p>

	
	<p><a href="http://www.brunningonline.net/simon/python/PQR.html">Python Quick Reference</a> <br/><br/>
	Downloadable Python reference.</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/17582.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Wed, 23 Jan 2008 00:21:11 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[Python Forums]]></title>
<description><![CDATA[<h1>Python Forums</h1>
	<p><a href="http://www.python.org/sigs/">Python SIGS</a> <br/><br/>
	Archives of current and past listserv discussions on a LOT of interesting topics.</p>
<p>&nbsp;</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/17581.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Wed, 23 Jan 2008 00:20:29 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[Python FAQs]]></title>
<description><![CDATA[<p>&nbsp;</p>
<h1>Python FAQs</h1>
	<p><a href="http://www.python.org/doc/faq/">Python FAQ</a> <br/><br/>
	
</p>

	
	<p><a href="http://www.python.org/doc/FAQ.html">The whole Python FAQ</a> <br/><br/>
	N/A</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/17580.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Wed, 23 Jan 2008 00:19:22 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[Python Books]]></title>
<description><![CDATA[<p>&nbsp;</p>
<h1>Python Books</h1>
	<p><a href="http://www.brpreiss.com/books/opus7/">Data Structures and Algorithms with Object-Oriented Design Patterns in Python</a> <br/><br/>
This book illustrates object-oriented design and it promotes the use of
common, object-oriented design patterns. The algorithms and data
structures in the book are presented in the Python programming
language. Virtually all the data structures are presented in the
context of a single class hierarchy. This commitment to a single design
allows the programs presented in the later chapters to build upon the
programs presented in the earlier chapter</p>

	
	<p><a href="http://www.byteofpython.info/">A Byte of Python</a> <br/><br/>
A Byte of Python - 'A Byte of Python' is a free beginner's book on
Python as well as a free Python tutorial for experienced programmers
who want to learn Python.</p>

	
	<p><a href="http://gnosis.cx/TPiP/">Text Processing in Python</a> <br/><br/>
According to the author's website he is making an online copy of his
book available to the python community with his publisher's permission.
The files for the book are in text (.txt) format.</p>

	
	<p><a href="http://www.ibiblio.org/obp/thinkCSpy/">How to Think Like a Computer Scientist</a> <br/><br/>
	Learning with Python</p>

	
	<p><a href="http://diveintopython.org/">Dive Into Python</a> <br/><br/>
Dive Into Python is a free Python book for experienced programmers. You
can read the book online, or download it in a variety of formats. This
book is still being written. (3 chapters)</p>

	
	<p><a href="http://www.mindview.net/Books/TIPython">Thinking in Python</a> <br/><br/>
	Downloadable Python book.</p>

	
	<p><a href="http://www.ibiblio.org/obp/thinkCSpy/">How to Think Like a Computer Scientist</a> <br/><br/>
	Learning with Python in this free online Python book.</p>

	
	<p><a href="http://hetland.org/writing/practical-python/">Practical Python Sample Chapter</a> <br/><br/>
	One sample chapter and the source code for the book can be downloaded.</p>

	
	<p><a href="http://www.pythonware.com/library/the-python-imaging-library.htm">The Python Imaging Library Handbook</a> <br/><br/>
This document describes the Python Imaging Library, version 1.1,
including some PIL Plus extensions. Can be read online or downloaded in
pdf form.</p>

	
	<p><a href="http://www.oreilly.com/catalog/lpython/chapter/">Learning Python Sample Chapters</a> <br/><br/>
	2 sample chapters.</p>

	
	<p><a href="http://www.oreilly.com/catalog/python2/chapter/ch15.html">Programming Python Sample Chapter</a> <br/><br/>
	One chapter on Advanced Internet Topics from a Python book.</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/17579.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Wed, 23 Jan 2008 00:16:22 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[Python Articles]]></title>
<description><![CDATA[<p>&nbsp;</p>
<h1>Python Articles</h1>
	<p><a href="http://py-howto.sourceforge.net/">Python HOWTO Documents</a> <br/><br/>
Python HOWTOs are documents that cover a single, specific topic, and
attempt to cover it fairly completely. Modelled on the Linux
Documentation Project's HOWTO collection.
</p>

	
	<p><a href="http://www.python.org/doc/Summary.html">What is Python?</a> <br/><br/>
	Very short article that defines Python.</p>

	
	<p><a href="http://www.python.org/doc/essays/blurb.html">What is Python? Executive Summary</a> <br/><br/>
	Another short description of Python.</p>

	
	<p><a href="http://www.python.org/doc/lj21.html">An Introduction to Python</a> <br/><br/>
	Short tutorial or long article on getting started with Python.</p>

	
	<p><a href="http://www.networkcomputing.com/unixworld/tutorial/005/005.html">The What, Why, Who, and Where of Python</a> <br/><br/>
	Python article that is a short tutorial.
</p>

	
	<p><a href="http://www.python.org/doc/essays/comparisons.html">Comparing Python to Other Languages</a> <br/><br/>
	Short Python article.</p>

	
	<p><a href="http://www.python.org/doc/Introduction.html">An Introduction to Python</a> <br/><br/>
	One-page overview of Python.</p>

	
	<p><a href="http://www.metva.com.au/av_paper_python.html">Yet Another Object Oriented Interpretive Scripting Language</a> <br/><br/>
	An overview of what Python offers.</p>

	
	<p><a href="http://www.xml.com/pub/a/1999/12/xml99/python.html">XML.com XML Processing with Python</a> <br/><br/>
	An article on XML and Python.
</p>

	
	<p><a href="http://www.python.org/doc/essays/omg-darpa-mcc-position.html">Glue It All Together With Python</a> <br/><br/>
	Python can fulfill an important integration role in the design of large applications with a long life expectancy</p>

	
	<p><a href="http://www.amk.ca/python/howto/sockets/sockets.html">Socket Programming HOWTO</a> <br/><br/>
	Article on socket programming in python.</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/17578.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Wed, 23 Jan 2008 00:14:38 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[Prolog Tutorials]]></title>
<description><![CDATA[<p>&nbsp;</p>
<h1>Prolog Tutorials</h1>
	<p><a href="http://www.visual-prolog.com/vip6/tutorial/">Visual Prolog Online Tutorials</a> <br/><br/>
	A series of tutorial articles that will help you to get the most out of Prolog language and Visual Prolog. </p>

	
	<p><a href="http://kti.ms.mff.cuni.cz/~bartak/prolog/">ON-LINE GUIDE TO PROLOG PROGRAMMING</a> <br/><br/>
	This is a second edition of former Interactive Prolog Guide that brings new design and better organization of chapters</p>

	
	<p><a href="http://www.csupomona.edu/~jrfisher/www/prolog_tutorial/contents.html">Prolog Tutorial</a> <br/><br/>
	This tutorial is intended to be used to help learn the essential, basic concepts of Prolog.</p>

	
	<p><a href="http://cs.wwc.edu/~cs_dept/KU/PR/Prolog.html">Prolog Tutorial</a> <br/><br/>
	Introduction to Prolog</p>

	
	<p><a href="http://www.cs.auckland.ac.nz/~j-hamer/07.363/prolog-for-se.html#tocelements">Prolog for Software Engineering</a> <br/><br/>
	A tutorial by Peter B. Reintjes for the 1994 International Conference on the Practical Applications of Prolog</p>

	
	<p><a href="http://www.cs.may.ie/~jpower/Courses/PROLOG/">Prolog Tutorials</a> <br/><br/>
	10 short tutorials or one big tutorial depending on how you look at it.</p>

	
	<p><a href="http://www.cs.bham.ac.uk/~pjh/prolog_course/se207.html">Prolog and Logic Programming</a> <br/><br/>
	Several modules on Prolog programming.</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/17577.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Wed, 23 Jan 2008 00:12:08 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[Prolog Source Code]]></title>
<description><![CDATA[<p>&nbsp;</p>
<h1>Prolog Source Code</h1>
	<p><a href="http://www-2.cs.cmu.edu/afs/cs/project/ai-repository/ai/lang/prolog/code/0.html">CMU Artificial Intelligence Repository</a> <br/><br/>
	Prolog code for benchmarking, research, education, and fun.</p>

	
	<p><a href="http://www.cs.ubc.ca/spider/poole/ci/ci_code.html">Online Code for a Prolog Book</a> <br/><br/>
This file contains code from Poole, Mackworth and Goebel, Computational
Intelligence: A Logical Approach. All code is copyright Poole,
Mackworth and Goebel, and Oxford University Press, 1997.</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/17576.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Wed, 23 Jan 2008 00:11:11 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[Prolog Forums]]></title>
<description><![CDATA[<p>&nbsp;</p>
<h1>Prolog Forums</h1>
	<p><a href="http://forums.belution.com/en/prolog/">Prolog Fourm</a> <br/><br/>
	Belution.com Prolog forum.</p>

	
	<p><a href="http://www.tek-tips.com/gthreadminder.cfm/lev2/4/lev3/32/pid/345">Prolog Forum</a> <br/><br/>
	Tek-Tips Prolog forum.</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/17575.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Wed, 23 Jan 2008 00:09:17 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[Prolog FAQs]]></title>
<description><![CDATA[<p>&nbsp;</p>
<h1>Prolog FAQs</h1>
	<p><a href="http://groups.google.com/groups?group=comp.lang.prolog">comp.lang.prolog Frequently Asked Questions</a> <br/><br/>
	Google archive.</p>

	
	<p><a href="http://flits102-126.flits.rug.nl/~dirk-jan/prolog/faq/html/">Frequently Asked Questions - comp.lang.prolog</a> <br/><br/>
	This article contains the answers to some Frequently Asked Questions often seen in news://comp.lang.prolog/.</p>

	
	<p><a href="http://mail.gnu.org/archive/html/users-prolog/2002-06/threads.html">GNU Prolog FAQ</a> <br/><br/>
	N/A</p>

	
	<p><a href="http://www.visual-prolog.com/vip/vipinfo/faq.htm">Visual Prolog Frequently Asked Questions</a> <br/><br/>
	Visual Prolog faq.</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/17574.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Wed, 23 Jan 2008 00:08:31 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[Prolog Compilers]]></title>
<description><![CDATA[<p>&nbsp;</p>
<h1>Prolog Compilers</h1>
	<p><a href="http://www.visual-prolog.com/">Visual Prolog 7.0</a> <br/><br/>
	A free Personal Edition is available of Visual Prolog is now available for non-commercial usage only.</p>

	
	<p><a href="http://www.dcs.ed.ac.uk/home/jjc/psharp/psharp-1.1.3/dlpsharp.html">Downloading P#</a> <br/><br/>
P# is a Prolog implementation which translates Prolog to C# source
code. This allows interoperation between Prolog and C#, and in
particular allows you to combine Prolog back-ends with C# front-ends.
P# is based on Prolog Cafe, a tool which translates Prolog to Java.</p>

	
	<p><a href="https://www.cs.tcd.ie/open-prolog/">Open Prolog</a> <br/><br/>
Open Prolog is an Apple Macintosh implementation of Prolog. Open Prolog
runs on Apple Macintosh machines running Mac OS 7.5.5 and later, and
runs in the Classic environment of Mac OS X.</p>

	
	<p><a href="http://clip.dia.fi.upm.es/Software/Ciao/">ciao: The Ciao Prolog System</a> <br/><br/>
Ciao is a public domain, next generation multi-paradigm programming
environment with a unique set of features. See the website for more
detail as well as downloadable tutorials and documentation.</p>

	
	<p><a href="http://www.binnetcorp.com/kprolog/Main.html">Kernel PrologL</a> <br/><br/>
	Lightweight Prolog-in-Java Interpreter that supports a simplified CUT-less and operatorless subset of ISO Prolog.
</p>

	
	<p><a href="http://pauillac.inria.fr/~diaz/gnu-prolog/">The GNU Prolog web site</a> <br/><br/>
	GNU Prolog accepts Prolog+constraint programs and produces native binaries (like gcc does from a C source)
</p>

	
	<p><a href="http://www.swi-prolog.org/">SWI Prolog</a> <br/><br/>
	SWI Prolog is a Prolog compiler, targeting primarily at research and education.
</p>

	
	<p><a href="http://www.lpa.co.uk/ind_dow.htm">LPA PROLOG Professional</a> <br/><br/>
From this page, you can download a fully-working copy of LPA PROLOG
Professional, LPA's first ever Prolog compiler, provided it is used
only for personal purposes or study.</p>

	
	<p><a href="http://www.cad.mse.kyutech.ac.jp/people/zhou/bprolog.html">B-Prolog</a> <br/><br/>
B-Prolog is a system for running Prolog and CLP(FD) programs. Like most
other systems, it includes an interpreter and provides an interactive
interface through which the user can consult, list, compile, load,
debug and run programs.</p>

	
	<p><a href="http://www.dobrev.com/download.html">Strawberry Prolog 2.3</a> <br/><br/>
There is a limited freeware version, a shareware version and a
commercial version of this prolog compiler on this download page.</p>

	
	<p><a href="http://www.cs.kuleuven.ac.be/~bmd/PrologInJava/">jProlog home page</a> <br/><br/>
	Prolog to Java compiler.</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/17573.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Wed, 23 Jan 2008 00:07:44 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[Prolog Books]]></title>
<description><![CDATA[<h1>Prolog Books</h1>
	<p><a href="http://www.coli.uni-saarland.de/~kris/learn-prolog-now/">Learn Prolog Now!</a> <br/><br/>
This is the first draft of a new course on Prolog. It is based on the
experience of teaching Prolog at the Department of Computational
Linguistics, University of the Saarland, over the past four years.</p>

	
	<p><a href="http://www.amzi.com/ExpertSystemsInProlog/">Building Expert Systems in Prolog</a> <br/><br/>
	Online Prolog book.</p>

	
	<p><a href="http://www.amzi.com/AdventureInProlog/advfrtop.htm">Adventure in Prolog</a> <br/><br/>
	Online Prolog book.</p>

	
	<p><a href="http://computing.unn.ac.uk/staff/cgpb4/prologbook/">Prolog Programming A First Course</a> <br/><br/>
This site has course notes &quot;intended for undergraduate students who
have some programming experience and may even have written a few
programs in Prolog.&quot; The notes can be downloaded in book form as a
postscript file or read online and include samples and exercises.</p>

	
	<p><a href="http://www.ida.liu.se/~ulfni/lpp/">Logic, Programming and Prolog (2ed</a> <br/><br/>
	Free Prolog book in pdf form. You will have to enter your name and an e-mail address to download the book.</p>

	
	<p><a href="http://www.cs.nps.navy.mil/people/faculty/rowe/book/book.html">Artificial Intelligence through Prolog by Neil C. Rowe</a> <br/><br/>
	Free online Prolog book in html form.</p>

	
	<p><a href="http://www.j-paine.org/prolog/mathnotes/files/pms/node1.html">Introduction to Prolog for Mathematicians</a> <br/><br/>
	N/A</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/17572.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Wed, 23 Jan 2008 00:06:35 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[Prolog Articles]]></title>
<description><![CDATA[<p>&nbsp;</p>
<h1>Prolog Articles</h1>
	<p><a href="http://www.visual-prolog.com/vip6/tutorial/">Visual Prolog Online Tutorials</a> <br/><br/>
	A series of tutorial articles that will help you to get the most out of Prolog language and Visual Prolog. </p>

	
	<p><a href="http://www.amzi.com/articles/prolog_under_the_hood.htm">Prolog Under the Hood</a> <br/><br/>
	This article examines the inner workings of Prolog, with an eye on widening the language's appeal.</p>

	
	<p><a href="http://www.visual-prolog.com/vip/articles/steve_lympany/use_of_prolog_in_the_analysis_of.htm">The Use of Prolog in the Analysis of Safety Critical Software</a> <br/><br/>
This paper outlines some methods that have been used to analyse the
safety critical software developed for a rail transport system.</p>

	
	<p><a href="http://www.visual-prolog.com/vip/articles/phil_seyer/magic_brain.htm">Developing a Software Coach with Prolog</a> <br/><br/>
	Interesting Prolog article.</p>

	
	<p><a href="http://www.amzi.com/articles/prolog_custom_krl.htm">An Architecture for Embedded Intelligent Components</a> <br/><br/>
	Prolog article.</p>

	
	<p><a href="http://www.amzi.com/articles/prolog_fun.htm">Exploring Prolog</a> <br/><br/>
Introduces Prolog by presenting various techniques and applications,
including an adventure game, object- oriented programming, animal
identification and tax form calculation.</p>

	
	<p><a href="http://www.amzi.com/articles/rule_engines.htm">Building Custom Rule Engines</a> <br/><br/>
	An introduction to the techniques used in building custom rule engines in Prolog.</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/17571.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Wed, 23 Jan 2008 00:04:02 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[PHP Tutorials]]></title>
<description><![CDATA[<p>&nbsp;</p>
<h1>PHP Tutorials</h1>
	<p><a href="http://www.hudzilla.org/phpbook/">Practical PHP Programming</a> <br/><br/>
This is an unpublished book on PHP. This book assumes no PHP
programming skill at all - you will be taught from scratch in that
respect. It appears to be quite comprehensive and can be navigated
online in tutorial fashion, so it serves as an online php book or php
tutorial.</p>

	
	<p><a href="http://www.tizag.com/phpT/">Tizag.com's PHP Tutorial</a> <br/><br/>
The goal of this tutorial is to teach you the basics of PHP so that you
can customize PHP scripts that you download, so that they better fit
your needs; begin to understand the working model of PHP, so you may
begin to design your own PHP projects; and give you a solid base in
PHP, so as to make you more valuable in the eyes of future employers.</p>

	
	<p><a href="http://www.htmlite.com/PHPintro.php">PHP Tutorial</a> <br/><br/>
This site has a php tutorial that has short descriptions of the basics
as well as working with files, sending email with php, and working with
files and directories.</p>

	
	<p><a href="http://www.developerfusion.com/show/3703/2/">An Introduction to PHP</a> <br/><br/>
A short PHP tutorial that introduces the basics of the language
including variable, operators, server variables, http headers, setting
cookies, includes and working with form data.</p>

	
	<p><a href="http://www.php.net/tut.php">Introductory Tutorial</a> <br/><br/>
	Introduction to the basics at PHP.net. A short simple tutorial that only deals with dynamic webpage creation with PHP.
</p>

	
	<p><a href="http://www.w3schools.com/php/">W3Schools PHP Tutorial</a> <br/><br/>
Another fine tutorial from the folks at W3Schools including an
introduction to PHP, installations, syntax, operators, conditionals,
looping, functions, forms, cookies, inlcudes, date formats, and odbc
database connections.</p>

	
	<p><a href="http://www.beginnersphp.co.uk/tutorials.php">Beginners PHP</a> <br/><br/>
On this site you will find a variety of resources for php including
tutorials, sample code, downloads, sample chapters from books and links
to other php sites.
</p>

	
	<p><a href="http://www.phpfreaks.com/tutorials.php">phpfreaks.com</a> <br/><br/>
phpfreaks.com has two sections of tutorials: their own and user
submitted. Their own php tutorials tend to address more advanced php
topics like using php sockets, creating php/mysql membership systems,
using php sessions and a host of other php topics including some basic
ones like using php variables and arrays in php. The user section has
links to offsite tutorials covering many topics.</p>

	
	<p><a href="http://www.zend.com/zend/tut/">Zend.com PHP Tutorials</a> <br/><br/>
	A large list of PHP tutorials divided into beginner and advanced categories and covering many PHP topics.</p>

	
	<p><a href="http://phpbuilder.com/columns/rod19990601.php3">Classes and PHP</a> <br/><br/>
	Learn to develop resusable objects.</p>

	
	<p><a href="http://www.awtrey.com/support/dbeweb/php.php3">PHP Guestbook</a> <br/><br/>
	An example PHP guestbook is examined in this PHP tutorial.
</p>

	
	<p><a href="http://www.phpbuilder.com/columns/kartic20000807.php3">Sending MIME email in PHP</a> <br/><br/>
Tired of sending those drab textual notifications and newsletters to
your friend and clients? Ever wanted to send attachments and/or HTML
embedded email.
</p>

	
	<p><a href="http://www.zend.com/zend/trick/html-email.php">Send HTML Email</a> <br/><br/>
	How to send an HTML email message from a PHP script.
</p>

	
	<p><a href="http://codewalkers.com/tutorials.php?show=10">Creating a Mail Form with PHP and Flash</a> <br/><br/>
	Create a contact form within Flash and link it to PHP.
</p>

	
	<p><a href="http://phpbuilder.com/columns/florian19991014.php3">Binary Data + MySQL + PHP</a> <br/><br/>
	If you want to store binary data like images and html files directly in your MySQL database, this column is for you!</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/15470.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Mon, 29 Oct 2007 14:21:49 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[PHP Official Sites]]></title>
<description><![CDATA[<p>&nbsp;</p>
<h1>PHP Official Sites</h1>
	<p><a href="http://www.php-compiler.net/">Phalanger - PHP Language Compiler for .NET Framework</a> <br/><br/>
The aim of the Phalanger project is to create a module enabling
execution of PHP scripts on the Microsoft .NET platform. This module is
cooperating with the ASP.NET technology enabling it to generate
web-pages written in PHP the same way ASP.NET pages are.</p>

	
	<p><a href="http://www.hardened-php.net/">Hardened-PHP</a> <br/><br/>
Hardened-PHP adds security hardening features to PHP to protect your
servers on the one hand against a number of well known problems in
hastily written PHP scripts and on the other hand against potential
unknown vulnerabilities within the engine itself.</p>

	
	<p><a href="http://www.php.net/docs.php">PHP Documentation</a> <br/><br/>
The PHP manual is available online in a selection of languages. You can
choose between the printer friendly and graphically designed versions.
</p>

	
	<p><a href="http://www.php.net/manual/">PHP Manual</a> <br/><br/>
	Indispensible PHP resource.</p>

	
	<p><a href="http://www.php.net/downloads.php">Latest version of PHP</a> <br/><br/>
	Download the source code or the Windows binaries for the latest version of PHP.
</p>

	
	<p><a href="http://dev.mysql.com/downloads/">MySQL</a> <br/><br/>
	You may want to download the free MySQL database software package.
</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/15469.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Mon, 29 Oct 2007 14:21:24 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[PHP IDE]]></title>
<description><![CDATA[<h1>PHP IDE</h1>
	<p><a href="http://www.phpeclipse.de/tiki-view_articles.php">PHPeclipse</a> <br/><br/>
PHP, SQL, HTML - parser, debugger, code formatter, outline view,
templates. Built on top of the powerful Eclipse development platform
(www.eclipse.org).</p>

	
	<p><a href="http://sourceforge.net/projects/openstudio">Maguma Open Studio</a> <br/><br/>
A PHP IDE that includes features for class browsing, ftp support,
snippets, debugging and project management. The Open Source version of
Maguma Studio.</p>

	
	<p><a href="http://www.mpsoftware.dk/phpdesigner.php">PHP Designer 2005</a> <br/><br/>
The development environment in PHP Designer 2005 combines many powerful
features such as customizable syntax schemes for PHP, HTML, XHTML, CSS,
Perl, C#, JavaScript, VB, Java and SQL (Ingres, Interbase, MSSQL,
MySQL, Oracle, Sybase and Standard SQL), a class/include browser, test
and debug your scripts with the PHP interpreter, integration of the PHP
manual, parameter hint, auto indent of brackets, automatic close
brackets, access to common code/script libraries all combined in this
one unique program.</p>

	
	<p><a href="http://tswebeditor.net.tc/">tsWebEditor</a> <br/><br/>
tsWebEditor is a powerful php editor and html editor which you can also
use as a simple text editor. It displays the source code colored
(syntax highlight), parameter hint for functions, code completion (php,
javascript, asp, html), code browser, php syntax and error check, help,
css assistant, html tag editor, html syntax checker, etc.</p>

	
	<p><a href="http://kphpdev.sourceforge.net/">KPHPDevelop</a> <br/><br/>
	KPHPDevelop is a PHP IDE for KDE. See the website for more detailes.</p>

	
	<p><a href="http://sourceforge.net/projects/devphp">Dev-PHP IDE</a> <br/><br/>
Dev-PHP is a full-featured Windows Integrated Development Environment
for PHP. It has many cool features, like Function browsing and full
integration with the PHP parser and the PHP-GTK library.</p>

	
	<p><a href="http://www.phpide.de/">PHP Coder</a> <br/><br/>
	PHP Coder is an IDE (Integrated Development Environment) especially developped for PHP programmers.</p>

	
	<p><a href="http://www.templatetamer.org/index.php">TemplateTamer</a> <br/><br/>
TemplateTamer is a tool for creating and maintaining a template based
dynamic PHP web applications, with clearly and completely separated
code from the html design. Free edition can be used as long as there is
a link to the TemplateTamer web on every page</p>

	
	<p><a href="http://www.softandco.com/a/4263/arisesoft-winsyntax.html">Arisesoft Winsyntax</a> <br/><br/>
Arisesoft Winsyntax is a free PHP-code editor with a fast syntax
highlighting engine and the context PHP-help for professional scripting
for Windows.</p>
<p>&nbsp;</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/15468.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Mon, 29 Oct 2007 14:20:54 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[PHP Source Code]]></title>
<description><![CDATA[<p>&nbsp;</p>
<h1>PHP Source Code</h1>
	<p><a href="http://www.phpground.com/">PHP Scripts Archive</a>   <br/><br/>
	This site has a mix of free and commerical php scripts broken down into the usual categories.</p>

	
	<p><a href="http://www.zend.com/codex.php">Zend Code Gallery</a> <br/><br/>
	The Code Gallery features snippets of PHP code that can be integrated into your PHP application.</p>

	
	<p><a href="http://gscripts.net/">gscripts.net</a> <br/><br/>
A directory of free PHP scripts such as forums, photo galleries, CMS ,
e-commerce solutions and many more. Each script has demo.</p>

	
	<p><a href="http://www.finalwebsites.com/snippets.php">PHP Snippets</a> <br/><br/>
This site has some snippets, functions and PHP classes. The code here
is designed to show you common functionality in PHP and MySQL packed in
easy to use code blocks, functions or classes.</p>

	
	<p><a href="http://www.phpfreaks.com/quickcode.php">PHP Freaks Code Library</a> <br/><br/>
	374 PHP Code Examples arranged into categories.</p>

	
	<p><a href="http://www.phpclasses.org/">PHPClasses.org</a> <br/><br/>
PHP Classes Repository is a service created in 1999 as a means of
distributing freely available programming classes of objects written in
the Web scripting language named PHP. The goal of this service is to
build a base of programming components ready to be used in Web
applications written in PHP.</p>

	
	<p><a href="http://www.hotscripts.com/PHP/Scripts_and_Programs/index.html">Hot Scripts PHP Section</a> <br/><br/>
There are a wide variety of php scripts here. Some are free and some
are commercial, so you will have to hunt around to find the free ones,
but there are plenty of free php scripts in many different categories
here.</p>

	
	<p><a href="http://www.free-php.net/">free-php.net</a> <br/><br/>
	At free-php.net you will find FREE PHP SCRIPTS and php resources.</p>

	
	<p><a href="http://codewalkers.com/code.php">codewalkers.com</a> <br/><br/>
	196 total PHP scripts.</p>

	
	<p><a href="http://www.1phpstreet.com/">PHP Categories</a> <br/><br/>
	Scroll down to the bottom for an extensive, categorized listing of PHP source code.</p>

	
	<p><a href="http://www.programmershelp.co.uk/phpsource.php">Programmers Help code section</a> <br/><br/>
	PHP source code section, here you fill find a mass of code which is categorised to make it easier to find.</p>

	
	<p><a href="http://px.sklar.com/">PX : the PHP code exchange</a> <br/><br/>
There are many php scripts in this archive and as far as I can tell
they are all free. There is also a neat feature that allows you to
search for code that has been added or modified within a specified
period of time.</p>

	
	<p><a href="http://www.1aspstreet.com/vb/scripts/BrowseAllCategories.asp?lngWid=8">Code and Article/Tutorial Categories</a> <br/><br/>
	Click the ok button at the bottom of the page and get a bonanza of free php source code.</p>

	
	<p><a href="http://archive.devx.com/sourcebank/directorybrowse.asp?currentPage=&amp;numPerPage=15&amp;dir_id=478&amp;showResType=12&amp;adType=web">Sourcebank</a> <br/><br/>
	Browsable source code directories including  the PHP source code directories on this page.</p>

	
	<p><a href="http://www.ipdg3.com/sourcecoderesults.php?option=sc_category&amp;goto_category=PHP_">PHP Source Code Area</a> <br/><br/>
	18 Categories with 42 files to choose from.</p>

	
	<p><a href="http://www.devscripts.com/topicview.php?tId=1">DevScripts</a> <br/><br/>
	PHP Scripts, Code Snippets and Code Samples</p>

	
	<p><a href="http://www.codebeach.com/index.asp?categoryID=13&amp;TabID=1">PHP Source Code</a> <br/><br/>
	Lots of PHP Source Code.</p>

	
	<p><a href="http://www.php-scripts.com/php_diary/php_scripts.html">PHP Example Scripts</a> <br/><br/>
	PHP sample scripts.</p>

	
	<p><a href="http://www.shearersoftware.com/software/web-tools/clock/clock-source-php.html">Clock PHP Source Code</a> <br/><br/>
	Client-side clock, based on computed time differential between browser and server.</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/15467.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Mon, 29 Oct 2007 14:20:24 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[PHP Message Board Scripts]]></title>
<description><![CDATA[<p>&nbsp;</p>
<h1>PHP Message Board Scripts</h1>
	<p><a href="http://www.simplemachines.org/">Simple Machines</a> <br/><br/>
	This is a free forum software package based on PHP and MySQL.</p>

	
	<p><a href="http://www.phpbb.com/">phpBB</a> <br/><br/>
phpBB is a high powered, fully scalable, and highly customisable
open-source bulletin board package that supports unlimited boards and
posts, instant messaging, multiple languages, searching, private and
public forums, and templates. Requires PHP and MySQL, MS-SQL,
PostgreSQL or Access/ODBC database server.</p>

	
	<p><a href="http://www.phorum.org/">Phorum</a> <br/><br/>
Phorum is an open source web based message board written in PHP. The
databases the current release supports MySQL and PostgreSQL.</p>

	
	<p><a href="http://www.mercuryboard.com/">MercuryBoard</a> <br/><br/>
	MercuryBoard is a new bulletin board script written in Object-Oriented PHP4, and utilizes a MySQL database.</p>

	
	<p><a href="http://zorum.phpoutsourcing.com/">Zorum</a> <br/><br/>
Zorum is a message board software, which may be used with equal success
on both intra- and internet site. Supports smilies, polls, searching,
listing messages by user, message preview, moving topics, php code
support in header and footer template and many more features. Requires
PHP4 and MySQL.</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/15466.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Mon, 29 Oct 2007 14:19:45 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[PHP Guestbooks]]></title>
<description><![CDATA[<h1>PHP Guestbooks</h1>
	<p><a href="http://www.chipmunk-scripts.com/scripts/guestbook.php">Chipmunk Guestbook</a> <br/><br/>
Chipmunk Guestbook is an easy to use yet powerful guestbook with a
customizable layout, ability to delete entries by browse and search.
The new version allso supports BBcode except the quote and code command
in BBCode. You can also ban certain Ip's from posting.MySQL required.
Version 1.4 features a brand new admin panel. Admins can now edit
entries
</p>

	
	<p><a href="http://php.inc.ru/main.php?view=scripts">Cool guestbook, Ver. 2.0 (Freeware)</a> <br/><br/>
This is a Cool guestbook script. All you need to do is create a MYSQL
database table and set the variables below to conform to your settings
and that's it. Includes features: smilies, anti-spamming, bad language
filter, email notifications. </p>

	
	<p><a href="http://www.promosi-web.com/script/guestbook/">Ardguest - Free PHP Guestbook Script</a> <br/><br/>
Ardguest is a simple guestbook script that uses a flatfile to store
messages, so you don't need any database like MySQL or PostgreSQL. It's
suitable for anyone who need a guestbook that can be setup quickly.
Features : multi-pages display, ability to delete unwanted entries,
checking for required field warning messages for missing fields, mail
notification when someone signed the guest book, multiple line in
comment support, and more. Support for both UNIX/Linux and Windows
system.</p>

	
	<p><a href="http://bigsam.gezzed.net/">BIG SAM - PHP Guestbook</a> <br/><br/>
Built-In Guestbook and Stand-Along Module that requires php but does
not need a database, allows visitors to leave their name, e-mail and
comments on your web site. Features web-based administration of the
guestbook.</p>

	
	<p><a href="http://www.bastian-friedrich.de/comp/guestbook/">php3guest 1.7.1</a> <br/><br/>
	A multi-language php guest book that require mysql and is released under the gpl license.</p>

	
	<p><a href="http://www.havia.net/guestbook/">Simple PHP Guestbook</a> <br/><br/>
This is a very simple guestbook done in PHP, named as Simple PHP
Guestbook. It does not use SQL database but a text file to store
entries and is distributed under GPL license</p>

	
	<p><a href="http://devel.narnarnar.com/">NBook - A guestbook script</a> <br/><br/>
NBook is a simple to use, simple to install guestbook script with
web-based configuration. Fields are Name, Email, Homepage, Location,
and Comment. Date and Time are added after posting and the users IP is
hidden in a comment.</p>

	
	<p><a href="http://www.mykazaam.com/downloads/guestbook/index.php">Kazaam PHP GuestBook</a> <br/><br/>
	A guestbook script utilizing SQL DB.</p>
<p>&nbsp;</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/15465.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Mon, 29 Oct 2007 14:19:04 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[PHP FAQs]]></title>
<description><![CDATA[<p>&nbsp;</p>
<h1>PHP FAQs</h1>
	<p><a href="http://www.php.net/FAQ.php">PHP FAQ</a> <br/><br/>
	N/A</p>

	
	<p><a href="http://www.php.net/manual/en/faq.php">PHP.org FAQ</a> <br/><br/>
	PHP FAQ available in many languages and covering many topics.</p>

	
	<p><a href="http://www.alt-php-faq.org/">PHPFAQ</a> <br/><br/>
	MySQL PHP Questions and Answers</p>

	
	<p><a href="http://www.faqts.com/knowledge_base/index.phtml/fid/51/">PHP Knowledge Base</a> <br/><br/>
	Extensive PHP faq.</p>

	
	<p><a href="http://www.php-faq.com/">The unoffical php FAQ</a> <br/><br/>
	N/A</p>

	
	<p><a href="http://stalker.msk.su/Prog/php/FAQ/">Frequently Asked Questions about PHP</a> <br/><br/>
	This is a list of Frequently Asked Questions about PHP and their answers.</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/15464.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Mon, 29 Oct 2007 14:18:39 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[PHP Forums]]></title>
<description><![CDATA[<h1>PHP Forums</h1>
	<p><a href="http://www.phpfreaks.com/forums/">PHP Freaks Forums</a> <br/><br/>
	N/A</p>

	
	<p><a href="http://www.php-forum.com/p/index.php">PHP Forum at the aptly titled PHP-Forum.com</a> <br/><br/>
	Web Forum site dedicated to PHP and its uses.</p>

	
	<p><a href="http://codewalkers.com/forum/index.php">CodeWalkers PHP Forums</a> <br/><br/>
	Extensive PHP forums.</p>

	
	<p><a href="http://www.phpbuilder.com/board/">PHP Builder Community Forums</a> <br/><br/>
	Register for free to post questions.</p>

	
	<p><a href="http://www.phpsociety.com/">phpsociety.com</a> <br/><br/>
	PHP discussion forums.</p>

	
	<p><a href="http://www.tek-tips.com/gthreadminder.cfm/lev2/4/lev3/31/pid/434">Tek-Tips PHP Forum</a> <br/><br/>
	PHP forum.</p>

	
	<p><a href="http://forums.devshed.com/forumdisplay.php?forumid=5">DevShed Forums</a> <br/><br/>
	PHP forum.</p>

	
	<p><a href="http://php.dinsol.com/">php.dinsol.com</a> <br/><br/>
	Free PHP scripts, softwares, articles, tutorials and host with support forum and jobs/resumes.</p>
<p>&nbsp;</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/15463.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Mon, 29 Oct 2007 14:17:43 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[PHP CMS Systems]]></title>
<description><![CDATA[<h1>PHP CMS Systems</h1>
	<p><a href="http://sourceforge.net/projects/exponent/">Exponent Content Management System</a> <br/><br/>
Exponent is a fully-featured, modern CMS written in PHP, that enables
non-technical people to manage and update their websites with minimal
effort. Exponent is also an attractive development platform for
traditional and non-traditional web applications.</p>

	
	<p><a href="http://www.back-end.org/">Back-End.org</a> <br/><br/>
	A GPL CMS based on PHP/MySQL.</p>

	
	<p><a href="http://sourceforge.net/projects/puzzlecms/">Puzzle Apps</a> <br/><br/>
Content Management System developed in PHP, using XSL as templating
engine. Use of SQL database (MySql, SQLite, PostgreSQL, soon MSSQL)
with ADODB or PEAR::DB as DBAL. *NIX like permission system. You can
run many websites in one database.</p>

	
	<p><a href="http://www.phpwcms.de/index.php">phpwcms</a> <br/><br/>
phpwcms is an Open Source web content management system. It is
optimized for fast and easy setup and works on any standard webserver
platform that supports PHP/MySQL and was tested successfully on Windows
2000/XP, MacOSX and LINUX</p>

	
	<p><a href="http://www.cmsimple.dk/">CMSimple</a> <br/><br/>
CMSimple is a simple content management system for smart maintainance
of small commercial or private sites. CMSimple is written in PHP. It
apparently uses a flat file for storage rather than a database and is
not recommented for sites with text contents above 2 MB.</p>

	
	<p><a href="http://typo3.com/">TYPO3</a> <br/><br/>
	A free,  features rich, Content Management System built with PHP/MySQL and running under many Unixes and Windows.</p>

	
	<p><a href="http://www.usebb.net/index.php">UseBB</a> <br/><br/>
UseBB is an easy-to-set up and easy-to-use Open Source PHP/MySQL
bulletin board system with several user and administration
possibilities, especially designed for small to medium sized web sites
which do not need the overdose of features found in other forum
packages.</p>

	
	<p><a href="http://www.xaraya.com/">Xaraya</a> <br/><br/>
Xaraya is an Open Source extensible content management system. The
system allows on-the-fly extensions to the content and user areas which
allow greater control and versatility. Coupled with a XSLT style
template engine with complete templating of output.</p>

	
	<p><a href="http://www.phpnuke.org/">PHP-Nuke</a> <br/><br/>
PHP-Nuke is a news automated system specially designed to be used in
Intranets and Internet. The Administrator has total control of his web
site, registered users, and he will have in the hand a powerful
assembly of tools to maintain an active interactive web site using
databases. Requires php and an sql database server.</p>

	
	<p><a href="http://sourceforge.net/projects/tikiwiki/">Tiki CMS</a> <br/><br/>
Tiki is a powerful CMS/Groupware. Features: article, forum, newsletter,
blog, file/image gallery, wiki, drawing, tracker, directory,
poll/survey &amp; quiz, FAQ, chat, banner, webmail, calendar, category,
ACL, etc in Single Sign-on or LDAP.(PHP/MySQL/Smarty)</p>

	
	<p><a href="http://www.postnuke.com/">PostNuke</a> <br/><br/>
PostNuke is a community, content, collaborative management system. Has
been translated into many languages including a recent arabic
translation.</p>

	
	<p><a href="http://www.geeklog.net/">Geeklog</a> <br/><br/>
Geeklog is a blog, otherwise known as a Weblog. It allows you to create
your own virtual community area, complete with user administration,
story posting, messaging, comments, polls, calendar, weblinks, and
more. It can run on many different operating systems, and uses PHP4 and
MySQL. </p>

	
	<p><a href="http://www.mamboserver.com/">Mambo</a> <br/><br/>
Mambo Open Source claims to be the finest open source Web Content
Management System available today. According to their website there is
no need for HTML, XML or DHTML skills, just enter your content, add a
picture and then through the easy to use administrator web-interface
click and publish.</p>

	
	<p><a href="http://www.chaoscontrol.org/">php Simple News</a> <br/><br/>
php Simple News is PHP/MySQL based news management system for your web
site that's simple to use and easy to setup. Add, edit and delete posts
through a GUI administration suite. Customizable output. Supports
multiple news posters. </p>

	
	<p><a href="http://props.sourceforge.net/">PROPS</a> <br/><br/>
PROPS is an open, extensible Internet publishing system designed
specifically for periodicals such as newspapers and magazines who want
to publish online, either exclusively or as an extension of their print
publication. PROPS is written entirely in PHP4 using a MySQL database
backend, and is free software released under the GNU General Public
License (GPL).</p>

	
	<p><a href="http://phpwebsite.appstate.edu/">phpWebSite</a> <br/><br/>
phpWebSite provides a complete web site content management system.
Web-based administration allows for easy maintenance of interactive,
community-driven web sites. Client output from phpWebSite is valid
XHTML 1.0 and meets the W3C's Web Accessibility Initiative requirements.</p>

	
	<p><a href="http://www.visualshapers.com/">ezContents</a> <br/><br/>
ezContents is an Open-Source website content management system based on
PHP and MySQL. Features include maintaining menus and sub-menus, adding
authors that write contents, permissions, workflow, and layout
possibilities for the entire look of the site by simple use of settings.</p>

	
	<p><a href="http://www.xoops.org/modules/news/">XOOPS</a> <br/><br/>
XOOPS is a dynamic OO (Object Oriented) based open source portal script
written in PHP. XOOPS is the ideal tool for developing small to large
dynamic community websites, intra company portals, corporate portals,
weblogs and much more.</p>

	
	<p><a href="http://prattcms.sourceforge.net/">PrattCMS</a> <br/><br/>
PrattCMS is a powerful and easy to implement Content-Management-System.
With a WYSIWYG HTML editor that runs inline on both Mozilla, and
Internet Explorer non-technical users can change content of the website
(note: there is a text editor as part of the WYSIWYG editor for those
users with HTML knowledge). PrattCMS is really a cobbling together of
many different open-source technologies, including the Smarty
Templating Engine, the PEAR database scripts, and PHP.</p>

	
	<p><a href="http://www.vortexportal.net/">Vortex Portal</a> <br/><br/>
	Vortex Portal is a template-based content management solution for gaming websites.</p>

	
	<p><a href="http://www.ez.no/">eZ publish</a> <br/><br/>
	&quot;eZ publish is a powerful open source framework for content management, sharing and collaboration.&quot;</p>

	
	<p><a href="http://sitellite.org/">Sitellite</a> <br/><br/>
Sitellite is an advanced Open Source (GPL) web based Content Management
System (CMS) and PHP framework which also utilizes Apache and MySQL
technology to operate. There are open source and commercial versons.</p>

	
	<p><a href="http://www.flexcms.com/flex/pages/Our%20Products.html">FlexCMS</a> <br/><br/>
FlexCMS is an out of the box user-friendly CMS. Easily build dynamic
websites/portals, maintain web content, navigation and even limit
access to what members/guests see/do from anywhere in the world with
just a web browser. Free version contains advertising.</p>
<p>&nbsp;</p>]]></description>
<link><![CDATA[http://www.blogtext.org/lalbod/article/15462.html]]></link>
<author><![CDATA[freeblog@blogtext.org]]></author>
<pubDate><![CDATA[Mon, 29 Oct 2007 14:17:15 -0600]]></pubDate>
</item>
<item>
<title><![CDATA[PHP Blog Scripts]]></title>
<description><![CDATA[<h1>PHP Blog Scripts</h1>
	<p><a href="http://www.b2evolution.net/">b2evolution</a> <br/><br/>
b2evolution is a classy news/weblog tool (aka logware), allowing you to
run newsfeeds and weblogs. b2evo runs on the very common PHP/mySQL
platform.</p>

	
	<p><a href="http://blogcms.com/">BLOG:CMS</a> <br/><br/>
BLOG:CMS includes state-of-the-art weblog, forum, wiki engine, news
aggregator (atom / rss), and photo gallery. It ships with
application/xhtml+xml MIME type by default, for top performance on
modern browsers. It will also automatically supply older standard,
text/html, to browsers which cannot handle this, like MSIE.</p>

	
	<p><a href="http://www.s9y.org/">Serendipity - a PHP Weblog/Blog software</a> <br/><br/>
Serendipity is a weblog/blog system, implemented with PHP. It is
standards compliant, feature rich and open source (BSD License).</p>

	
	<p><a href="http://wordpress.org/">WordPress</a> <br/><br/>
WordPress was born out of a desire for an elegant, well-architectured
personal publishing system built on PHP and MySQL and licensed under
the GPL. WordPress' highly advanced user system allows up to 10 levels
of users and many other features.</p>

	
	<p><a href="http://www.myphpblog.org/">MyPHPblog</a> <br/><br/>
MyPHPblog is a weblog application for those wanting a free and easy way
to create their own blogs. MyPHPblog allows for the collaboration of
many users into a single blog and creation of multiple blogs all from a
single interface.</p>

	
	<p><a href="http://cafelog.com/">b2</a> <br/><br/>
b2 is a news/weblog tool based on php and mysql, you can install b2 in
an already existing database, and you can put several b2's in one
database. Pages are generated dynamically from the MySQL database.</p>

	
	<p><a href="http://www.nucleuscms.org/">Nucleus</a> <br/><br/>
With Nucleus, you can set up one or more weblogs. If you want to, you
can even show the contents of multiple weblogs on the same page. You
can set up a team of authors for each blog, with a separate login and
different rights for each member. </p>

	
	<p><a href="http://www.geeklog.net/">Geeklog</a> <br/><br/>
Geeklog is a blog, otherwise known as a Weblog. It allows you to create
your own virtual community area, complete with user administration,
story posting, messaging, comments, polls, calendar, weblinks, and
more. It can run on many different operating systems, and uses PHP4 and
MySQL. </p>

	
	<p><a href="http://www.bblog.com/">bBlog</a> <br/><br/>
bBlog is a blogging system written in PHP and released under the GPL.
bBlog uses smarty for templates, plugins, and as much as possable other
parts of Smarty.</p>

	
	<p><a href="http://my-weblog.iwebland.com/">My weblog</a> <br/><br/>
My weblog script is a simple weblog/journal script were you can post
your thoughts ,rants or news of your life etc. It comes with a admin
area where you can post, edit post and comments. Appears to be based on
mysql. </p>

	