Difference between revisions of "EWT Class13"

esse quam videri
Jump to: navigation, search
 
(9 intermediate revisions by 2 users not shown)
Line 1: Line 1:
http://www.noupe.com/tutorial/51-best-of-jquery-tutorials-and-examples.html
 
 
Gem package manager http://rubygems.org/read/chapter/1#page22
 
 
CRUD
 
*http://en.wikipedia.org/wiki/Create,_read,_update_and_delete
 
 
REST
 
*http://www.ibm.com/developerworks/java/library/j-cb08016/
 
*http://ryandaigle.com/articles/2006/06/30/whats-new-in-edge-rails-activeresource-is-here
 
*http://www.rubyinside.com/restful-rails-development-pdf-released-392.html
 
 
http://www.rubyonrails.org/down
 
 
Windows instant rails full aplication stack http://instantrails.rubyforge.org/wiki/wiki.pl
 
 
editor http://www.aptana.com/studio/download/
 
 
sqlite3 http://www.sqlite.org/download.html
 
 
 
http://poignantguide.net/ruby/
 
 
===Tutorials===
 
*http://www.onlamp.com/pub/a/onlamp/2006/12/14/revisiting-ruby-on-rails-revisited.html
 
*http://www.onlamp.com/pub/a/onlamp/2007/01/05/revisiting-ruby-on-rails-revisited-2.html
 
*[http://poignantguide.net/ruby/ Why's (poignant) Guide to Ruby]
 
*[http://tryruby.hobix.com/ In-browser online Ruby tutorial]
 
 
 
==ASP.NET==
 
==ASP.NET==
 
C# 1999 ECMA standard from MS or Mono
 
C# 1999 ECMA standard from MS or Mono
Line 53: Line 24:
 
Getting mono http://www.mono-project.com/Obtaining_Mono
 
Getting mono http://www.mono-project.com/Obtaining_Mono
  
==acronym soup==
+
==NEW Rails info==
* [http://en.wikipedia.org/wiki/Model-view-controller MVC]: Model View Controller
+
 
* [http://en.wikipedia.org/wiki/Object-relational_mapping ORM]: Object Relational Model (also known as scaffolding in Rails)
+
whats up with rake?
* XST: XML Style Transform
+
 
* [http://en.wikipedia.org/wiki/Language_Integrated_Query LINQ]: Language Integrated Query
+
rake tutorial http://www.railsenvy.com/2007/6/11/ruby-on-rails-rake-tutorial
* [http://en.wikipedia.org/wiki/YAML YAML]: YAML Ain't a Markup Language
+
 
* [http://en.wikipedia.org/wiki/Common_Gateway_Interface CGI]: Common Gateway Interface
+
http://www.akitaonrails.com/2007/12/12/rolling-with-rails-2-0-the-first-full-tutorial
 +
 
 +
<pre>
 +
rails Blog
 +
ruby script\generate scaffold Post title:string body:text
 +
    edit posts
 +
        validates_presence_of :title
 +
rake db:migrate
 +
script\server start
 +
ruby script\generate scaffold Comment post_id:integer body:text
 +
rake db:migrate
 +
    edit routes.rb
 +
        map.root :controller => 'posts'
 +
        map.resources :posts, :has_many => :comments
 +
</pre>
  
 
==AJ sabotages the wiki==
 
==AJ sabotages the wiki==
Line 65: Line 50:
  
 
In related news, you can do the same with [http://ejohn.org/blog/ruby-vm-in-javascript/ Ruby].
 
In related news, you can do the same with [http://ejohn.org/blog/ruby-vm-in-javascript/ Ruby].
 +
 +
[[Category:IAM Classes]][[Category:Emergent Web Technologies]]

Latest revision as of 19:06, 4 August 2008

ASP.NET

C# 1999 ECMA standard from MS or Mono

Not specific to C# the framework can use any .net language

more .net languages

ASP.NET MVC Framework

Editor Visual studio

Mono

Mono home page

Getting mono http://www.mono-project.com/Obtaining_Mono

NEW Rails info

whats up with rake?

rake tutorial http://www.railsenvy.com/2007/6/11/ruby-on-rails-rake-tutorial

http://www.akitaonrails.com/2007/12/12/rolling-with-rails-2-0-the-first-full-tutorial

rails Blog
ruby script\generate scaffold Post title:string body:text
    edit posts
        validates_presence_of :title
rake db:migrate
script\server start
ruby script\generate scaffold Comment post_id:integer body:text
rake db:migrate
    edit routes.rb
        map.root :controller => 'posts'
        map.resources :posts, :has_many => :comments

AJ sabotages the wiki

but only because you can run Java in JavaScript now.

In related news, you can do the same with Ruby.