<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://gcat.davidson.edu/GcatWiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Macowell</id>
		<title>GcatWiki - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://gcat.davidson.edu/GcatWiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Macowell"/>
		<link rel="alternate" type="text/html" href="https://gcat.davidson.edu/GcatWiki/index.php?title=Special:Contributions/Macowell"/>
		<updated>2026-04-21T13:26:52Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.28.2</generator>

	<entry>
		<id>https://gcat.davidson.edu/GcatWiki/index.php?title=Ruby_on_Rails&amp;diff=1305</id>
		<title>Ruby on Rails</title>
		<link rel="alternate" type="text/html" href="https://gcat.davidson.edu/GcatWiki/index.php?title=Ruby_on_Rails&amp;diff=1305"/>
				<updated>2005-11-07T21:34:07Z</updated>
		
		<summary type="html">&lt;p&gt;Macowell: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is meant to generate interest in Ruby on Rails and Ajax by providing brief &amp;quot;teaser&amp;quot; descriptions and links to more information.&lt;br /&gt;
&lt;br /&gt;
==Ruby on Rails==&lt;br /&gt;
*&amp;quot;Ruby on Rails is a web application framework written in Ruby, a dynamically typed programming language similar to Python, Smalltalk, and Perl.&amp;quot; [http://www.onlamp.com/pub/a/onlamp/2005/10/13/what_is_rails.html O'Reilly article]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
*&amp;quot;Rails is the most well thought-out web development framework I've ever used. And that's in a decade of doing web applications for a living. I've built my own frameworks, helped develop the Servlet API, and have created more than a few web servers from scratch. Nobody has done it like this before. That's not to say they got it all right. It's by no means &amp;quot;perfect&amp;quot;. I've got more than a few nits and picks about how things are put together. But &amp;quot;perfect&amp;quot; isn't the point. The point is that it gets you up and going fast and has plenty of depth to keep you going. And Rails does that very well.&amp;quot; [http://www.onlamp.com/pub/a/onlamp/2005/10/13/what_is_rails.html O'Reilly article]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
*Ruby on Rails, often called RoR or just Rails, is an open source web application framework written in Ruby that closely follows the Model-View-Controller (MVC) architecture. It strives for simplicity and allowing real-world applications to be developed in less code than other frameworks and with a minimum of configuration. [http://en.wikipedia.org/wiki/Ruby_on_Rails Wikipedia article]:&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
*Rails' guiding principles include &amp;quot;Don't Repeat Yourself&amp;quot; and &amp;quot;Convention Over Configuration&amp;quot;. &amp;quot;Don't Repeat Yourself&amp;quot; means that definitions should only have to be made once. Since Rails is a &amp;quot;full-stack&amp;quot; framework, the components are integrated so that bridges between them need not be set up manually. For example, in Active Record, class definition needs not specify the column names; Ruby already can find them from database itself, so defining them in both the program and the RDBMS would be redundant. &amp;quot;Convention Over Configuration&amp;quot; means that the programmer only needs to specifically configure what is unconventional. For example, if there is a &amp;lt;code&amp;gt;Post&amp;lt;/code&amp;gt; class in model, the corresponding table in database is &amp;lt;code&amp;gt;posts&amp;lt;/code&amp;gt;, but if the table is unconventional (e.g. &amp;lt;code&amp;gt;blogposts&amp;lt;/code&amp;gt;), it must be specified manually (&amp;lt;code&amp;gt;set_table_name &amp;quot;blogposts&amp;quot;&amp;lt;/code&amp;gt;). [http://en.wikipedia.org/wiki/Ruby_on_Rails Wikipedia article]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
'''links'''&amp;lt;br&amp;gt;&lt;br /&gt;
O'Reilly article about Ruby on Rails[http://www.onlamp.com/pub/a/onlamp/2005/10/13/what_is_rails.html].&amp;lt;br&amp;gt;&lt;br /&gt;
Wikipedia article on Ruby on Rails[http://en.wikipedia.org/wiki/Ruby_on_Rails].  It mentions Ajax.&lt;br /&gt;
&lt;br /&gt;
==Ajax==&lt;br /&gt;
Ajax (Asynchronous JavaScript and XML) describes XMLHttpRequest, which apparently has been around since 1998, but didn't really pop up on anyone's radar until several high-profile Google apps utilized it to great success.  It is how gmail anticipates your contacts, and how you can keep panning and panning the landscape in google maps.&lt;br /&gt;
&lt;br /&gt;
Here's a great introduction and practical example from the [http://www.onlamp.com/pub/a/onlamp/2005/06/09/rails_ajax.html O'Reilly article] - '''if you click any link on this page, click the link to the ajax web app!'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
'''Traditional Web App vs. an Ajax App'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;Let me distill the essence of an Ajax web application by examining a use case: inserting a new item into a list.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;A typical user interface displays the current list on a web page&lt;br /&gt;
followed by an input field in which the user can type the text of a new item.&lt;br /&gt;
When the user clicks on a Create New Item button, the app actually creates and&lt;br /&gt;
inserts the new item into the list.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;At this point, a traditional web application sends the value of the&lt;br /&gt;
input field to the server.  The server then acts upon the data (usually by&lt;br /&gt;
updating a database) and responds by sending back a new web page that&lt;br /&gt;
displays an updated list that now contains the new item. This uses a lot of&lt;br /&gt;
bandwidth, because most of the new page is exactly the same as the old one. The&lt;br /&gt;
performance of this web app degrades as the list gets longer.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;In contrast, an Ajax web application sends the input field to the&lt;br /&gt;
server in the background and updates the affected portion of the current web&lt;br /&gt;
page in place. This dramatically increases the responsiveness of the user&lt;br /&gt;
interface and makes it feel much more like a desktop application.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;You can see this for yourself. Below are links to two different weblogs,&lt;br /&gt;
one that uses Ajax to post comments and another that does not. Try posting some&lt;br /&gt;
comments to each one:&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[http://jroller.com/comments/curthibbs?anchor=ajax_on_rails Traditional Web App]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
[http://blog.curthibbs.us/articles/2005/01/01/ajax-on-rails Ajax Web App]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''links'''&amp;lt;br&amp;gt;&lt;br /&gt;
O'Reilly article about Ajax[http://www.onlamp.com/pub/a/onlamp/2005/06/09/rails_ajax.html].&amp;lt;br&amp;gt;&lt;br /&gt;
Wikipedia article on Ajax[http://en.wikipedia.org/wiki/Ajax_%28programming%29].&amp;lt;br&amp;gt;&lt;br /&gt;
What Every Webmaster and Web Developer MUST Know About Ruby on Rails and AJAX[http://blogs.eng5.com/~mlightner/?p=19].&lt;/div&gt;</summary>
		<author><name>Macowell</name></author>	</entry>

	<entry>
		<id>https://gcat.davidson.edu/GcatWiki/index.php?title=Ruby_on_Rails&amp;diff=1304</id>
		<title>Ruby on Rails</title>
		<link rel="alternate" type="text/html" href="https://gcat.davidson.edu/GcatWiki/index.php?title=Ruby_on_Rails&amp;diff=1304"/>
				<updated>2005-11-07T21:31:31Z</updated>
		
		<summary type="html">&lt;p&gt;Macowell: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is meant to generate interest in Ruby on Rails and Ajax by providing brief &amp;quot;teaser&amp;quot; descriptions and links to more information.&lt;br /&gt;
&lt;br /&gt;
==Ruby on Rails==&lt;br /&gt;
*&amp;quot;Ruby on Rails is a web application framework written in Ruby, a dynamically typed programming language similar to Python, Smalltalk, and Perl.&amp;quot; [http://www.onlamp.com/pub/a/onlamp/2005/10/13/what_is_rails.html O'Reilly article]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
*&amp;quot;Rails is the most well thought-out web development framework I've ever used. And that's in a decade of doing web applications for a living. I've built my own frameworks, helped develop the Servlet API, and have created more than a few web servers from scratch. Nobody has done it like this before. That's not to say they got it all right. It's by no means &amp;quot;perfect&amp;quot;. I've got more than a few nits and picks about how things are put together. But &amp;quot;perfect&amp;quot; isn't the point. The point is that it gets you up and going fast and has plenty of depth to keep you going. And Rails does that very well.&amp;quot; [http://www.onlamp.com/pub/a/onlamp/2005/10/13/what_is_rails.html O'Reilly article]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
*Ruby on Rails, often called RoR or just Rails, is an open source web application framework written in Ruby that closely follows the Model-View-Controller (MVC) architecture. It strives for simplicity and allowing real-world applications to be developed in less code than other frameworks and with a minimum of configuration. [http://en.wikipedia.org/wiki/Ruby_on_Rails Wikipedia article]:&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
*Rails' guiding principles include &amp;quot;Don't Repeat Yourself&amp;quot; and &amp;quot;Convention Over Configuration&amp;quot;. &amp;quot;Don't Repeat Yourself&amp;quot; means that definitions should only have to be made once. Since Rails is a &amp;quot;full-stack&amp;quot; framework, the components are integrated so that bridges between them need not be set up manually. For example, in Active Record, class definition needs not specify the column names; Ruby already can find them from database itself, so defining them in both the program and the RDBMS would be redundant. &amp;quot;Convention Over Configuration&amp;quot; means that the programmer only needs to specifically configure what is unconventional. For example, if there is a &amp;lt;code&amp;gt;Post&amp;lt;/code&amp;gt; class in model, the corresponding table in database is &amp;lt;code&amp;gt;posts&amp;lt;/code&amp;gt;, but if the table is unconventional (e.g. &amp;lt;code&amp;gt;blogposts&amp;lt;/code&amp;gt;), it must be specified manually (&amp;lt;code&amp;gt;set_table_name &amp;quot;blogposts&amp;quot;&amp;lt;/code&amp;gt;). [http://en.wikipedia.org/wiki/Ruby_on_Rails Wikipedia article]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
'''links'''&amp;lt;br&amp;gt;&lt;br /&gt;
O'Reilly article about Ruby on Rails[http://www.onlamp.com/pub/a/onlamp/2005/10/13/what_is_rails.html].&amp;lt;br&amp;gt;&lt;br /&gt;
Wikipedia article on Ruby on Rails[http://en.wikipedia.org/wiki/Ruby_on_Rails].  It mentions Ajax.&lt;br /&gt;
&lt;br /&gt;
==Ajax==&lt;br /&gt;
Ajax (Asynchronous JavaScript and XML) describes XMLHttpRequest, which apparently has been around since 1998, but didn't really pop up on anyone's radar until several high-profile Google apps utilized it to great success.  It is how gmail anticipates your contacts, and how you can keep panning and panning the landscape in google maps.&lt;br /&gt;
&lt;br /&gt;
Here's a great introduction and practical example from the O'Reilly article[http://www.onlamp.com/pub/a/onlamp/2005/06/09/rails_ajax.html] - '''if you click any link on this page, click the link to the ajax web app!'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
'''Traditional Web App vs. an Ajax App'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;Let me distill the essence of an Ajax web application by examining a use case: inserting a new item into a list.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;A typical user interface displays the current list on a web page&lt;br /&gt;
followed by an input field in which the user can type the text of a new item.&lt;br /&gt;
When the user clicks on a Create New Item button, the app actually creates and&lt;br /&gt;
inserts the new item into the list.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;At this point, a traditional web application sends the value of the&lt;br /&gt;
input field to the server.  The server then acts upon the data (usually by&lt;br /&gt;
updating a database) and responds by sending back a new web page that&lt;br /&gt;
displays an updated list that now contains the new item. This uses a lot of&lt;br /&gt;
bandwidth, because most of the new page is exactly the same as the old one. The&lt;br /&gt;
performance of this web app degrades as the list gets longer.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;In contrast, an Ajax web application sends the input field to the&lt;br /&gt;
server in the background and updates the affected portion of the current web&lt;br /&gt;
page in place. This dramatically increases the responsiveness of the user&lt;br /&gt;
interface and makes it feel much more like a desktop application.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;You can see this for yourself. Below are links to two different weblogs,&lt;br /&gt;
one that uses Ajax to post comments and another that does not. Try posting some&lt;br /&gt;
comments to each one:&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[http://jroller.com/comments/curthibbs?anchor=ajax_on_rails Traditional Web App]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
[http://blog.curthibbs.us/articles/2005/01/01/ajax-on-rails Ajax Web App]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''links'''&amp;lt;br&amp;gt;&lt;br /&gt;
O'Reilly article about Ajax[http://www.onlamp.com/pub/a/onlamp/2005/06/09/rails_ajax.html].&amp;lt;br&amp;gt;&lt;br /&gt;
Wikipedia article on Ajax[http://en.wikipedia.org/wiki/Ajax_%28programming%29].&amp;lt;br&amp;gt;&lt;br /&gt;
[http://blogs.eng5.com/~mlightner/?p=19 What Every Webmaster and Web Developer MUST Know About Ruby on Rails and AJAX]&lt;/div&gt;</summary>
		<author><name>Macowell</name></author>	</entry>

	<entry>
		<id>https://gcat.davidson.edu/GcatWiki/index.php?title=Main_Page&amp;diff=1303</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://gcat.davidson.edu/GcatWiki/index.php?title=Main_Page&amp;diff=1303"/>
				<updated>2005-11-07T20:37:23Z</updated>
		
		<summary type="html">&lt;p&gt;Macowell: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;font size=&amp;quot;4&amp;quot;&amp;gt;'''[[Results from GCAT undergraduates]]'''&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==This is our first attempt at GCAT Community Wiki.==&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Please see [http://meta.wikipedia.org/wiki/MediaWiki_i18n documentation on customizing the interface]&lt;br /&gt;
and the [http://meta.wikipedia.org/wiki/MediaWiki_User%27s_Guide User's Guide] for usage and configuration help.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Bill, you should check out [[Ruby on Rails]].  It might fit well with the biology department's commitment to technological excellence. -Mac&lt;/div&gt;</summary>
		<author><name>Macowell</name></author>	</entry>

	<entry>
		<id>https://gcat.davidson.edu/GcatWiki/index.php?title=Main_Page&amp;diff=1302</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://gcat.davidson.edu/GcatWiki/index.php?title=Main_Page&amp;diff=1302"/>
				<updated>2005-11-07T19:56:20Z</updated>
		
		<summary type="html">&lt;p&gt;Macowell: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;font size=&amp;quot;4&amp;quot;&amp;gt;'''[[Results from GCAT undergraduates]]'''&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==This is our first attempt at GCAT Community Wiki.==&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Please see [http://meta.wikipedia.org/wiki/MediaWiki_i18n documentation on customizing the interface]&lt;br /&gt;
and the [http://meta.wikipedia.org/wiki/MediaWiki_User%27s_Guide User's Guide] for usage and configuration help.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Bill, you should check this out: [http://www.rubyonrails.com/ Ruby On Rails] - Perhaps you could use it to make a form for users to request access.&lt;/div&gt;</summary>
		<author><name>Macowell</name></author>	</entry>

	</feed>