Difference between revisions of "EWT Class13"

esse quam videri
Jump to: navigation, search
 
(11 intermediate revisions by 2 users not shown)
Line 1: Line 1:
http://www.noupe.com/tutorial/51-best-of-jquery-tutorials-and-examples.html
+
==ASP.NET==
 +
C# 1999 ECMA standard from MS or Mono
 +
 
 +
*Version 3.5 http://www.asp.net/
 +
* http://www.asp.net/downloads/
 +
*tutorials http://www.asp.net/learn/videos/
 +
 
 +
Not specific to C# [http://www.hanselman.com/blog/WPFSampleInIronRubyTalkingViaCToWesabe.aspx the framework can use any .net language]
 +
 
 +
[http://dotnetpowered.com/languages.aspx more .net languages]
 +
 
 +
[http://en.wikipedia.org/wiki/ASP.NET_MVC_Framework ASP.NET MVC Framework]
 +
 
 +
Editor Visual studio
 +
 
 +
* [http://www.w3.org/XML/Schema Data Entities xsd]
 +
* LINQ
 +
** [http://msdn2.microsoft.com/en-us/netframework/aa904594.aspx The LINQ Project]
 +
** [http://en.wikipedia.org/wiki/Language_Integrated_Query LINQ on Wikipedia]
 +
 
 +
==Mono==
 +
Mono [http://www.mono-project.com/Main_Page 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
 +
 
 +
<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==
 
but only because you can [http://ejohn.org/blog/running-java-in-javascript/ run Java in JavaScript] now.
 
but only because you can [http://ejohn.org/blog/running-java-in-javascript/ run Java in JavaScript] now.
 +
 +
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.