codders-feedzirra 0.2.0.rc2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (76) hide show
  1. data/.gitignore +12 -0
  2. data/.rspec +1 -0
  3. data/.travis.yml +9 -0
  4. data/Gemfile +10 -0
  5. data/Guardfile +6 -0
  6. data/HISTORY.md +25 -0
  7. data/README.md +179 -0
  8. data/Rakefile +6 -0
  9. data/feedzirra.gemspec +28 -0
  10. data/lib/feedzirra.rb +17 -0
  11. data/lib/feedzirra/core_ext.rb +3 -0
  12. data/lib/feedzirra/core_ext/date.rb +19 -0
  13. data/lib/feedzirra/core_ext/string.rb +9 -0
  14. data/lib/feedzirra/core_ext/time.rb +29 -0
  15. data/lib/feedzirra/feed.rb +382 -0
  16. data/lib/feedzirra/feed_entry_utilities.rb +65 -0
  17. data/lib/feedzirra/feed_utilities.rb +72 -0
  18. data/lib/feedzirra/parser.rb +20 -0
  19. data/lib/feedzirra/parser/atom.rb +29 -0
  20. data/lib/feedzirra/parser/atom_entry.rb +30 -0
  21. data/lib/feedzirra/parser/atom_feed_burner.rb +21 -0
  22. data/lib/feedzirra/parser/atom_feed_burner_entry.rb +31 -0
  23. data/lib/feedzirra/parser/google_docs_atom.rb +28 -0
  24. data/lib/feedzirra/parser/google_docs_atom_entry.rb +29 -0
  25. data/lib/feedzirra/parser/itunes_rss.rb +50 -0
  26. data/lib/feedzirra/parser/itunes_rss_item.rb +32 -0
  27. data/lib/feedzirra/parser/itunes_rss_owner.rb +12 -0
  28. data/lib/feedzirra/parser/rss.rb +22 -0
  29. data/lib/feedzirra/parser/rss_entry.rb +34 -0
  30. data/lib/feedzirra/parser/rss_feed_burner.rb +22 -0
  31. data/lib/feedzirra/parser/rss_feed_burner_entry.rb +40 -0
  32. data/lib/feedzirra/version.rb +3 -0
  33. data/spec/benchmarks/feed_benchmarks.rb +98 -0
  34. data/spec/benchmarks/feedzirra_benchmarks.rb +40 -0
  35. data/spec/benchmarks/fetching_benchmarks.rb +28 -0
  36. data/spec/benchmarks/parsing_benchmark.rb +30 -0
  37. data/spec/benchmarks/updating_benchmarks.rb +33 -0
  38. data/spec/feedzirra/feed_entry_utilities_spec.rb +52 -0
  39. data/spec/feedzirra/feed_spec.rb +599 -0
  40. data/spec/feedzirra/feed_utilities_spec.rb +150 -0
  41. data/spec/feedzirra/parser/atom_entry_spec.rb +86 -0
  42. data/spec/feedzirra/parser/atom_feed_burner_entry_spec.rb +47 -0
  43. data/spec/feedzirra/parser/atom_feed_burner_spec.rb +47 -0
  44. data/spec/feedzirra/parser/atom_spec.rb +51 -0
  45. data/spec/feedzirra/parser/google_docs_atom_entry_spec.rb +22 -0
  46. data/spec/feedzirra/parser/google_docs_atom_spec.rb +31 -0
  47. data/spec/feedzirra/parser/itunes_rss_item_spec.rb +48 -0
  48. data/spec/feedzirra/parser/itunes_rss_owner_spec.rb +18 -0
  49. data/spec/feedzirra/parser/itunes_rss_spec.rb +54 -0
  50. data/spec/feedzirra/parser/rss_entry_spec.rb +85 -0
  51. data/spec/feedzirra/parser/rss_feed_burner_entry_spec.rb +85 -0
  52. data/spec/feedzirra/parser/rss_feed_burner_spec.rb +52 -0
  53. data/spec/feedzirra/parser/rss_spec.rb +49 -0
  54. data/spec/sample_feeds/AmazonWebServicesBlog.xml +796 -0
  55. data/spec/sample_feeds/AmazonWebServicesBlogFirstEntryContent.xml +63 -0
  56. data/spec/sample_feeds/FeedBurnerUrlNoAlternate.xml +27 -0
  57. data/spec/sample_feeds/GoogleDocsList.xml +187 -0
  58. data/spec/sample_feeds/HREFConsideredHarmful.xml +313 -0
  59. data/spec/sample_feeds/HREFConsideredHarmfulFirstEntry.xml +22 -0
  60. data/spec/sample_feeds/PaulDixExplainsNothing.xml +174 -0
  61. data/spec/sample_feeds/PaulDixExplainsNothingAlternate.xml +174 -0
  62. data/spec/sample_feeds/PaulDixExplainsNothingFirstEntryContent.xml +19 -0
  63. data/spec/sample_feeds/PaulDixExplainsNothingWFW.xml +174 -0
  64. data/spec/sample_feeds/TechCrunch.xml +1514 -0
  65. data/spec/sample_feeds/TechCrunchFirstEntry.xml +9 -0
  66. data/spec/sample_feeds/TechCrunchFirstEntryDescription.xml +3 -0
  67. data/spec/sample_feeds/TenderLovemaking.xml +515 -0
  68. data/spec/sample_feeds/TenderLovemakingFirstEntry.xml +66 -0
  69. data/spec/sample_feeds/TrotterCashionHome.xml +610 -0
  70. data/spec/sample_feeds/atom_with_link_tag_for_url_unmarked.xml +30 -0
  71. data/spec/sample_feeds/itunes.xml +60 -0
  72. data/spec/sample_feeds/run_against_sample.rb +20 -0
  73. data/spec/sample_feeds/top5kfeeds.dat +2170 -0
  74. data/spec/sample_feeds/trouble_feeds.txt +16 -0
  75. data/spec/spec_helper.rb +75 -0
  76. metadata +203 -0
@@ -0,0 +1,18 @@
1
+ require File.join(File.dirname(__FILE__), %w[.. .. spec_helper])
2
+
3
+ describe Feedzirra::Parser::ITunesRSSOwner do
4
+ before(:each) do
5
+ # I don't really like doing it this way because these unit test should only rely on RSSEntry,
6
+ # but this is actually how it should work. You would never just pass entry xml straight to the ITunesRssOwner
7
+ @owner = Feedzirra::Parser::ITunesRSS.parse(sample_itunes_feed).itunes_owners.first
8
+ end
9
+
10
+ it "should parse the name" do
11
+ @owner.name.should == "John Doe"
12
+ end
13
+
14
+ it "should parse the email" do
15
+ @owner.email.should == "john.doe@example.com"
16
+ end
17
+
18
+ end
@@ -0,0 +1,54 @@
1
+ require File.join(File.dirname(__FILE__), %w[.. .. spec_helper])
2
+
3
+ describe Feedzirra::Parser::ITunesRSS do
4
+ describe "#will_parse?" do
5
+ it "should return true for an itunes RSS feed" do
6
+ Feedzirra::Parser::ITunesRSS.should be_able_to_parse(sample_itunes_feed)
7
+ end
8
+
9
+ it "should return fase for an atom feed" do
10
+ Feedzirra::Parser::ITunesRSS.should_not be_able_to_parse(sample_atom_feed)
11
+ end
12
+
13
+ it "should return false for an rss feedburner feed" do
14
+ Feedzirra::Parser::ITunesRSS.should_not be_able_to_parse(sample_rss_feed_burner_feed)
15
+ end
16
+ end
17
+
18
+ describe "parsing" do
19
+ before(:each) do
20
+ @feed = Feedzirra::Parser::ITunesRSS.parse(sample_itunes_feed)
21
+ end
22
+
23
+ it "should parse the subtitle" do
24
+ @feed.itunes_subtitle.should == "A show about everything"
25
+ end
26
+
27
+ it "should parse the author" do
28
+ @feed.itunes_author.should == "John Doe"
29
+ end
30
+
31
+ it "should parse an owner" do
32
+ @feed.itunes_owners.size.should == 1
33
+ end
34
+
35
+ it "should parse an image" do
36
+ @feed.itunes_image.should == "http://example.com/podcasts/everything/AllAboutEverything.jpg"
37
+ end
38
+
39
+ it "should parse categories" do
40
+ @feed.itunes_categories.size == 3
41
+ @feed.itunes_categories[0] == "Technology"
42
+ @feed.itunes_categories[1] == "Gadgets"
43
+ @feed.itunes_categories[2] == "TV & Film"
44
+ end
45
+
46
+ it "should parse the summary" do
47
+ @feed.itunes_summary.should == "All About Everything is a show about everything. Each week we dive into any subject known to man and talk about it as much as we can. Look for our Podcast in the iTunes Music Store"
48
+ end
49
+
50
+ it "should parse entries" do
51
+ @feed.entries.size.should == 3
52
+ end
53
+ end
54
+ end
@@ -0,0 +1,85 @@
1
+ # coding: utf-8
2
+ require File.join(File.dirname(__FILE__), %w[.. .. spec_helper])
3
+
4
+ describe Feedzirra::Parser::RSSEntry do
5
+ before(:each) do
6
+ # I don't really like doing it this way because these unit test should only rely on RSSEntry,
7
+ # but this is actually how it should work. You would never just pass entry xml straight to the AtomEnry
8
+ @entry = Feedzirra::Parser::RSS.parse(sample_rss_feed).entries.first
9
+ end
10
+
11
+ after(:each) do
12
+ # We change the title in one or more specs to test []=
13
+ if @entry.title != "Nokogiri’s Slop Feature"
14
+ @entry.title = Feedzirra::Parser::RSS.parse(sample_rss_feed).entries.first.title
15
+ end
16
+ end
17
+
18
+ it "should parse the title" do
19
+ @entry.title.should == "Nokogiri’s Slop Feature"
20
+ end
21
+
22
+ it "should parse the url" do
23
+ @entry.url.should == "http://tenderlovemaking.com/2008/12/04/nokogiris-slop-feature/"
24
+ end
25
+
26
+ it "should parse the author" do
27
+ @entry.author.should == "Aaron Patterson"
28
+ end
29
+
30
+ it "should parse the content" do
31
+ @entry.content.should == sample_rss_entry_content
32
+ end
33
+
34
+ it "should provide a summary" do
35
+ @entry.summary.should == "Oops! When I released nokogiri version 1.0.7, I totally forgot to talk about Nokogiri::Slop() feature that was added. Why is it called \"slop\"? It lets you sloppily explore documents. Basically, it decorates your document with method_missing() that allows you to search your document via method calls.\nGiven this document:\n\ndoc = Nokogiri::Slop(<<-eohtml)\n<html>\n  <body>\n  [...]"
36
+ end
37
+
38
+ it "should parse the published date" do
39
+ @entry.published.should == Time.parse_safely("Thu Dec 04 17:17:49 UTC 2008")
40
+ end
41
+
42
+ it "should parse the categories" do
43
+ @entry.categories.should == ['computadora', 'nokogiri', 'rails']
44
+ end
45
+
46
+ it "should parse the guid as id" do
47
+ @entry.id.should == "http://tenderlovemaking.com/?p=198"
48
+ end
49
+
50
+ it "should support each" do
51
+ @entry.respond_to? :each
52
+ end
53
+
54
+ it "should be able to list out all fields with each" do
55
+ all_fields = []
56
+ @entry.each do |field, value|
57
+ all_fields << field
58
+ end
59
+ all_fields.sort == ['author', 'categories', 'content', 'id', 'published', 'summary', 'title', 'url']
60
+ end
61
+
62
+ it "should be able to list out all values with each" do
63
+ title_value = ''
64
+ @entry.each do |field, value|
65
+ title_value = value if field == 'title'
66
+ end
67
+ title_value.should == "Nokogiri’s Slop Feature"
68
+ end
69
+
70
+ it "should support checking if a field exists in the entry" do
71
+ @entry.include?('title') && @entry.include?('author')
72
+ end
73
+
74
+ it "should allow access to fields with hash syntax" do
75
+ @entry['title'] == @entry.title
76
+ @entry['title'].should == "Nokogiri’s Slop Feature"
77
+ @entry['author'] == @entry.author
78
+ @entry['author'].should == "Aaron Patterson"
79
+ end
80
+
81
+ it "should allow setting field values with hash syntax" do
82
+ @entry['title'] = "Foobar"
83
+ @entry.title.should == "Foobar"
84
+ end
85
+ end
@@ -0,0 +1,85 @@
1
+ # coding: utf-8
2
+ require File.join(File.dirname(__FILE__), %w[.. .. spec_helper])
3
+
4
+ describe Feedzirra::Parser::RSSFeedBurnerEntry do
5
+ before(:each) do
6
+ # I don't really like doing it this way because these unit test should only rely on RSSEntry,
7
+ # but this is actually how it should work. You would never just pass entry xml straight to the AtomEnry
8
+ @entry = Feedzirra::Parser::RSSFeedBurner.parse(sample_rss_feed_burner_feed).entries.first
9
+ end
10
+
11
+ after(:each) do
12
+ # We change the title in one or more specs to test []=
13
+ if @entry.title != "Angie’s List Sets Price Range IPO At $11 To $13 Per Share; Valued At Over $600M"
14
+ @entry.title = Feedzirra::Parser::RSS.parse(sample_rss_feed_burner_feed).entries.first.title
15
+ end
16
+ end
17
+
18
+ it "should parse the title" do
19
+ @entry.title.should == "Angie’s List Sets Price Range IPO At $11 To $13 Per Share; Valued At Over $600M"
20
+ end
21
+
22
+ it "should parse the original url" do
23
+ @entry.url.should == "http://techcrunch.com/2011/11/02/angies-list-prices-ipo-at-11-to-13-per-share-valued-at-over-600m/"
24
+ end
25
+
26
+ it "should parse the author" do
27
+ @entry.author.should == "Leena Rao"
28
+ end
29
+
30
+ it "should parse the content" do
31
+ @entry.content.should == sample_rss_feed_burner_entry_content
32
+ end
33
+
34
+ it "should provide a summary" do
35
+ @entry.summary.should == sample_rss_feed_burner_entry_description
36
+ end
37
+
38
+ it "should parse the published date" do
39
+ @entry.published.should == Time.parse_safely("Wed Nov 02 17:25:27 UTC 2011")
40
+ end
41
+
42
+ it "should parse the categories" do
43
+ @entry.categories.should == ["TC", "angie\\'s list"]
44
+ end
45
+
46
+ it "should parse the guid as id" do
47
+ @entry.id.should == "http://techcrunch.com/?p=446154"
48
+ end
49
+
50
+ it "should support each" do
51
+ @entry.respond_to? :each
52
+ end
53
+
54
+ it "should be able to list out all fields with each" do
55
+ all_fields = []
56
+ @entry.each do |field, value|
57
+ all_fields << field
58
+ end
59
+ all_fields.sort == ['author', 'categories', 'content', 'id', 'published', 'summary', 'title', 'url']
60
+ end
61
+
62
+ it "should be able to list out all values with each" do
63
+ title_value = ''
64
+ @entry.each do |field, value|
65
+ title_value = value if field == 'title'
66
+ end
67
+ title_value.should == "Angie’s List Sets Price Range IPO At $11 To $13 Per Share; Valued At Over $600M"
68
+ end
69
+
70
+ it "should support checking if a field exists in the entry" do
71
+ @entry.include?('title') && @entry.include?('author')
72
+ end
73
+
74
+ it "should allow access to fields with hash syntax" do
75
+ @entry['title'] == @entry.title
76
+ @entry['title'].should == "Angie’s List Sets Price Range IPO At $11 To $13 Per Share; Valued At Over $600M"
77
+ @entry['author'] == @entry.author
78
+ @entry['author'].should == "Leena Rao"
79
+ end
80
+
81
+ it "should allow setting field values with hash syntax" do
82
+ @entry['title'] = "Foobar"
83
+ @entry.title.should == "Foobar"
84
+ end
85
+ end
@@ -0,0 +1,52 @@
1
+ require File.join(File.dirname(__FILE__), %w[.. .. spec_helper])
2
+
3
+ describe Feedzirra::Parser::RSSFeedBurner do
4
+ describe "#will_parse?" do
5
+ it "should return true for a feedburner rss feed" do
6
+ Feedzirra::Parser::RSSFeedBurner.should be_able_to_parse(sample_rss_feed_burner_feed)
7
+ end
8
+
9
+ it "should return false for a regular RSS feed" do
10
+ Feedzirra::Parser::RSSFeedBurner.should_not be_able_to_parse(sample_rss_feed)
11
+ end
12
+
13
+ it "should return false for a feedburner atom feed" do
14
+ Feedzirra::Parser::RSSFeedBurner.should_not be_able_to_parse(sample_feedburner_atom_feed)
15
+ end
16
+
17
+ it "should return false for an rdf feed" do
18
+ Feedzirra::Parser::RSSFeedBurner.should_not be_able_to_parse(sample_rdf_feed)
19
+ end
20
+
21
+ it "should return false for a regular atom feed" do
22
+ Feedzirra::Parser::RSSFeedBurner.should_not be_able_to_parse(sample_atom_feed)
23
+ end
24
+ end
25
+
26
+ describe "parsing" do
27
+ before(:each) do
28
+ @feed = Feedzirra::Parser::RSSFeedBurner.parse(sample_rss_feed_burner_feed)
29
+ end
30
+
31
+ it "should parse the title" do
32
+ @feed.title.should == "TechCrunch"
33
+ end
34
+
35
+ it "should parse the description" do
36
+ @feed.description.should == "TechCrunch is a group-edited blog that profiles the companies, products and events defining and transforming the new web."
37
+ end
38
+
39
+ it "should parse the url" do
40
+ @feed.url.should == "http://techcrunch.com"
41
+ end
42
+
43
+ it "should provide an accessor for the feed_url" do
44
+ @feed.respond_to?(:feed_url).should == true
45
+ @feed.respond_to?(:feed_url=).should == true
46
+ end
47
+
48
+ it "should parse entries" do
49
+ @feed.entries.size.should == 20
50
+ end
51
+ end
52
+ end
@@ -0,0 +1,49 @@
1
+ require File.join(File.dirname(__FILE__), %w[.. .. spec_helper])
2
+
3
+ describe Feedzirra::Parser::RSS do
4
+ describe "#will_parse?" do
5
+ it "should return true for an RSS feed" do
6
+ Feedzirra::Parser::RSS.should be_able_to_parse(sample_rss_feed)
7
+ end
8
+
9
+ # this is no longer true. combined rdf and rss into one
10
+ # it "should return false for an rdf feed" do
11
+ # Feedzirra::RSS.should_not be_able_to_parse(sample_rdf_feed)
12
+ # end
13
+
14
+ it "should return false for an atom feed" do
15
+ Feedzirra::Parser::RSS.should_not be_able_to_parse(sample_atom_feed)
16
+ end
17
+
18
+ it "should return false for an rss feedburner feed" do
19
+ Feedzirra::Parser::RSS.should_not be_able_to_parse(sample_rss_feed_burner_feed)
20
+ end
21
+ end
22
+
23
+ describe "parsing" do
24
+ before(:each) do
25
+ @feed = Feedzirra::Parser::RSS.parse(sample_rss_feed)
26
+ end
27
+
28
+ it "should parse the title" do
29
+ @feed.title.should == "Tender Lovemaking"
30
+ end
31
+
32
+ it "should parse the description" do
33
+ @feed.description.should == "The act of making love, tenderly."
34
+ end
35
+
36
+ it "should parse the url" do
37
+ @feed.url.should == "http://tenderlovemaking.com"
38
+ end
39
+
40
+ it "should provide an accessor for the feed_url" do
41
+ @feed.respond_to?(:feed_url).should == true
42
+ @feed.respond_to?(:feed_url=).should == true
43
+ end
44
+
45
+ it "should parse entries" do
46
+ @feed.entries.size.should == 10
47
+ end
48
+ end
49
+ end
@@ -0,0 +1,796 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:thr="http://purl.org/syndication/thread/1.0">
3
+ <title>Amazon Web Services Blog</title>
4
+ <link rel="self" type="application/atom+xml" href="http://aws.typepad.com/aws/atom.xml" />
5
+ <link rel="alternate" type="text/html" href="http://aws.typepad.com/aws/" />
6
+ <link rel="service.post" type="application/atom+xml" href="http://www.typepad.com/t/atom/weblog/blog_id=73998" title="Amazon Web Services Blog" />
7
+ <id>tag:typepad.com,2003:weblog-73998</id>
8
+ <updated>2009-01-16T18:21:00Z</updated>
9
+ <subtitle>Amazon Web Services, Products, Tools, and Developer Information...</subtitle>
10
+ <generator uri="http://www.typepad.com/">TypePad</generator>
11
+ <entry>
12
+ <title>AWS Job: Architect &amp; Designer Position in Turkey</title>
13
+ <link rel="alternate" type="text/html" href="http://aws.typepad.com/aws/2009/01/aws-job-architect-designer-position-in-turkey.html" />
14
+ <link rel="service.edit" type="application/atom+xml" href="http://www.typepad.com/t/atom/weblog/blog_id=73998/entry_id=61484736" title="AWS Job: Architect &amp; Designer Position in Turkey" />
15
+ <link rel="replies" type="text/html" href="http://aws.typepad.com/aws/2009/01/aws-job-architect-designer-position-in-turkey.html" thr:count="0"/>
16
+ <id>tag:typepad.com,2003:post-61484736</id>
17
+ <published>2009-01-16T10:21:00-08:00</published>
18
+ <updated>2009-01-16T18:21:00Z</updated>
19
+ <summary>Late last year an entrepreneur from Turkey visited me at Amazon HQ in Seattle. We talked about his plans to use AWS as part of his new social video portal startup. I won&#39;t spill any beans before he&#39;s ready to...</summary>
20
+ <author>
21
+ <name>AWS Editor</name>
22
+ </author>
23
+ <category scheme="http://www.sixapart.com/ns/types#category" term="Turkey" />
24
+ <category scheme="http://www.sixapart.com/ns/types#category" term="Seattle" />
25
+
26
+
27
+ <content type="html" xml:lang="en-US" xml:base="http://aws.typepad.com/aws/">
28
+ &lt;div xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;&lt;p&gt;
29
+ Late last year an entrepreneur from Turkey visited me at Amazon HQ in Seattle.
30
+
31
+ We talked about his plans to use AWS as part of his new social video
32
+ portal startup. I won&#39;t spill any beans before he&#39;s ready to talk
33
+ about it himself, but I will say that he has a really good concept,
34
+ strong backers, and infectious enthusiasm for the online world.&lt;/p&gt;
35
+ &lt;/p&gt;
36
+
37
+ &lt;p&gt;
38
+ He&#39;s now ready to hire a software architect and designer in order to
39
+ bring his vision to life. I&#39;ve posted the job below; you can
40
+ send your resume to &lt;a href=&quot;mailto:apply@web.tv&quot;&gt;apply@web.tv&lt;/a&gt;
41
+ if you are interested, qualified, and located in the right part
42
+ of the world.
43
+ &lt;/p&gt;
44
+
45
+ &lt;div style=&quot;padding:10px;margin-left:20px;margin-right:20px;margin-bottom:10px;border:1px dotted black;background-color:#e0e0e0;&quot;&gt;
46
+
47
+ &lt;div style=&quot;text-align:center;font-size:120%;font-weight:bold;&quot;&gt;Software Architect &amp; Designer&lt;/div&gt;
48
+
49
+ &lt;p&gt;
50
+ We are a reputable Internet technology, software services and e-commerce company based
51
+ in
52
+ &lt;a href=&quot;http://en.wikipedia.org/wiki/Istanbul&quot;&gt;Istanbul&lt;/a&gt; and
53
+ &lt;a href=&quot;http://en.wikipedia.org/wiki/Bursa&quot;&gt;Bursa&lt;/a&gt;,
54
+ &lt;a href=&quot;http://en.wikipedia.org/wiki/Turkey&quot;&gt;Turkey&lt;/a&gt;.
55
+ We are looking for a talented Software Architect who will
56
+ be working in Istanbul for a certain period of time, for our new global scale
57
+ &quot;social video portal&quot; project. Below are the qualifications required and job
58
+ description for the position to be held.
59
+ &lt;p&gt;
60
+
61
+ &lt;style&gt;
62
+ .li20090116 {padding-bottom:6px;}
63
+ &lt;/style&gt;
64
+
65
+ &lt;p&gt;Qualifications:&lt;/p&gt;
66
+
67
+ &lt;ul&gt;
68
+ &lt;li class=&quot;li20090116&quot; &gt;Extensive knowledge of web technologies.&lt;/li&gt;
69
+ &lt;li class=&quot;li20090116&quot;&gt;Experienced in web based application design and development.&lt;/li&gt;
70
+ &lt;li class=&quot;li20090116&quot;&gt;Solid bacground in object oriented design and development.&lt;/li&gt;
71
+ &lt;li class=&quot;li20090116&quot;&gt;Preferrably experienced in live broadcasting over the internet, video streaming, video sharing and social networking web site development and design.&lt;/li&gt;
72
+ &lt;li class=&quot;li20090116&quot;&gt;Knowledge and experience of design and development of multi-tier, distributed, massively multi-user systems.&lt;/li&gt;
73
+ &lt;li class=&quot;li20090116&quot;&gt;Experienced in Cloud Computing applications (preferably with AWS).&lt;/li&gt;
74
+ &lt;li class=&quot;li20090116&quot;&gt;Very good command of PHP or Python.&lt;/li&gt;
75
+ &lt;li class=&quot;li20090116&quot;&gt;Experinced in relational database design.&lt;/li&gt;
76
+ &lt;li class=&quot;li20090116&quot;&gt;Familarity with Erlang, and knowledge or experience of Java, C/C++, Ajax, Adobe Flex, mySQL is a plus.&lt;/li&gt;
77
+ &lt;li class=&quot;li20090116&quot;&gt;Self motivated, enthusiastic, team player.&lt;/li&gt;
78
+ &lt;/ul&gt;
79
+
80
+ &lt;p&gt;Job Description:&lt;/p&gt;
81
+ &lt;ul&gt;
82
+ &lt;li class=&quot;li20090116&quot;&gt;Will be mainly responsible for designing the overall system for a multi-tier, massively multi-user live video multi-casting, videosharing web site which will also have features of a social network.&lt;/li&gt;
83
+ &lt;li class=&quot;li20090116&quot;&gt;Will be involved in Design and Development phases of software development cycle. Will contribute to the Analysis phase.&lt;/li&gt;
84
+ &lt;li class=&quot;li20090116&quot;&gt;Will lead the Software Development Team for the period of the contract and report to the Project Coordinator.&lt;/li&gt;
85
+ &lt;/ul&gt;
86
+ &lt;/div&gt;
87
+
88
+ &lt;p&gt;-- Jeff;&lt;/p&gt;
89
+ &lt;/div&gt;
90
+ </content>
91
+
92
+
93
+ </entry>
94
+ <entry>
95
+ <title>Mainframes in the Cloud?</title>
96
+ <link rel="alternate" type="text/html" href="http://aws.typepad.com/aws/2009/01/mainframes-in-the-cloud.html" />
97
+ <link rel="service.edit" type="application/atom+xml" href="http://www.typepad.com/t/atom/weblog/blog_id=73998/entry_id=61406896" title="Mainframes in the Cloud?" />
98
+ <link rel="replies" type="text/html" href="http://aws.typepad.com/aws/2009/01/mainframes-in-the-cloud.html" thr:count="0"/>
99
+ <id>tag:typepad.com,2003:post-61406896</id>
100
+ <published>2009-01-15T07:11:16-08:00</published>
101
+ <updated>2009-01-15T15:17:20Z</updated>
102
+ <summary>Almost! Micro Focus just deployed a managed mainframe emulation environment that runs on top of Amazon EC2. The beauty of this environment is that you can execute CICS or IMS code in the cloud, essentially unmodified. Micro Focus’ innovation has...</summary>
103
+ <author>
104
+ <name>AWS Editor</name>
105
+ </author>
106
+
107
+
108
+ <content type="html" xml:lang="en-US" xml:base="http://aws.typepad.com/aws/">
109
+ &lt;div xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;&lt;p&gt;&lt;img src=&quot;http://www.microfocus.com/000/logomicrofocus_tcm21-8292.jpg&quot; height=&quot;36&quot; width=&quot;142&quot; hspace=&quot;5&quot; vspace=&quot;5&quot; align=&quot;right&quot;&gt;Almost! &lt;a href=&quot;http://www.microfocus.com&quot;&gt;Micro Focus&lt;/a&gt; just deployed a managed mainframe emulation environment that runs on top of &lt;a href=&quot;http://aws.amazon.com/ec2/&quot;&gt;Amazon EC2&lt;/a&gt;. The beauty of this environment is that you can execute &lt;a href=&quot;http://en.wikipedia.org/wiki/CICS&quot;&gt;CICS&lt;/a&gt; or &lt;a href=&quot;http://www-01.ibm.com/software/data/ims/&quot;&gt;IMS&lt;/a&gt; code in the cloud, essentially unmodified. Micro Focus’ innovation has three significant benefits: (a) your existing code investment is protected, (b) costs are much, much lower than an in-house mainframe, and (c) the application execution environment is managed, complete with the same sort of service level agreements that are expected in the mainframe world.&lt;/p&gt;
110
+
111
+ &lt;p&gt;&lt;a href=&quot;http://www.microfocus.com/AboutMicroFocus/at-a-glance/Management/haynie.asp&quot;&gt;Mark Haynie&lt;/a&gt;, the Micro Focus CTO of Application Modernization, says that in his opinion “Cloud computing is about services, not languages”. Since Micro Focus Enterprise Cloud Services allows COBOL CICS and IMS applications run in the cloud as easily as they run in on-premises datacenter, the consumer of those services will not know or care what language they were written in. &lt;/p&gt;
112
+
113
+ &lt;p&gt;Darryl Taft at &lt;a href=&quot;http://www.eweek.com&quot;&gt;eWeek&lt;/a&gt; also wrote an article about this, which you can read &lt;a href=&quot;http://www.eweek.com/c/a/Cloud-Computing/Micro-Focus-takes-COBOL-to-the-Cloud-with-Amazon-EC2/&quot;&gt;here&lt;/a&gt;.&lt;/p&gt;
114
+
115
+ &lt;p&gt;The announcement is about more than bringing mainframe applications to the Amazon Cloud. In my opinion, it is also another example of an entire ISV ecosystem that is cloud-enabled. Because Micro Focus’ own development community is supported by Enterprise Cloud Services, there is a new business opportunity for many developers that blends tradition with innovation. It’s easy to forget that mainframes are at the core of many enterprises; and for that reason I believe that interest will be significant.
116
+ You can learn more at &lt;a href=&quot;http://cloudservices.microfocus.com/&quot;&gt;cloudservices.microfocus.com&lt;/a&gt;.&lt;/p&gt;
117
+ &lt;/div&gt;
118
+ </content>
119
+
120
+
121
+ </entry>
122
+ <entry>
123
+ <title>SimpleDB Developer&#39;s Brown Bag</title>
124
+ <link rel="alternate" type="text/html" href="http://aws.typepad.com/aws/2009/01/simpledb-developers-forum.html" />
125
+ <link rel="service.edit" type="application/atom+xml" href="http://www.typepad.com/t/atom/weblog/blog_id=73998/entry_id=60613886" title="SimpleDB Developer's Brown Bag" />
126
+ <link rel="replies" type="text/html" href="http://aws.typepad.com/aws/2009/01/simpledb-developers-forum.html" thr:count="2" thr:when="2009-01-20T19:16:18Z"/>
127
+ <id>tag:typepad.com,2003:post-60613886</id>
128
+ <published>2009-01-12T11:24:00-08:00</published>
129
+ <updated>2009-01-20T21:56:36Z</updated>
130
+ <summary>You are invited to join the Amazon SimpleDB team on Tuesday, January 20, 2009 at 9am PST for the first session of our new Developers’ Brown Bag. During these once monthly webinar sessions, developers will hear from the technical experts...</summary>
131
+ <author>
132
+ <name>AWS Editor</name>
133
+ </author>
134
+ <category scheme="http://www.sixapart.com/ns/types#category" term="Amazon SDB" />
135
+
136
+
137
+ <content type="html" xml:lang="en-US" xml:base="http://aws.typepad.com/aws/">
138
+ &lt;div xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;&lt;p&gt;&lt;a href=&quot;http://aws.amazon.com/sdb&quot;&gt;&lt;img src=&quot;http://aws.typepad.com/files/simpledb_logo.png&quot; style=&quot;padding-left:10px;padding-bottom:10px;float:right;&quot;&gt;&lt;/a&gt;You are invited to join the &lt;a href=&quot;http://aws.amazon.com/sdb&quot;&gt;Amazon SimpleDB&lt;/a&gt; team on Tuesday, January 20, 2009 at 9am PST for the first session of our new Developers’ Brown Bag. During these once monthly webinar sessions, developers will hear from the technical experts behind SimpleDB, and have the opportunity to engage in live Q&amp;amp;A.&lt;/p&gt;
139
+
140
+ &lt;p&gt;Interested developers may register by emailing &lt;a href=&quot;mailto:simpledb-developer-brownbag@amazon.com&quot;&gt;simpledb-developer-brownbag@amazon.com&lt;/a&gt;. Please include name &amp;amp; AWS Account ID. Here&#39;s where to find your AWS Account ID (that&#39;s not my real ID so don&#39;t try anything funny):&lt;/p&gt;
141
+
142
+ &lt;div style=&quot;text-align:center;&quot; &gt;
143
+ &lt;img src=&quot;http://aws.typepad.com/files/aws_account_number.png&quot; /&gt;
144
+ &lt;/div&gt;
145
+
146
+ &lt;p&gt;In addition, developers are encouraged to pre-submit any questions they may have, to allow for a more thorough response during the live webinar. For those struggling with the development of a new application, sample code and a description of the intended application may also be submitted for review and discussion.&lt;/p&gt;
147
+
148
+ &lt;p&gt;The team is looking forward to speaking with developers on the 20th.&lt;/p&gt;
149
+
150
+ &lt;p&gt;-- Jeff;&lt;/p&gt;
151
+
152
+ &lt;/div&gt;
153
+ </content>
154
+
155
+
156
+ </entry>
157
+ <entry>
158
+ <title>CloudFront Management Tool Roundup</title>
159
+ <link rel="alternate" type="text/html" href="http://aws.typepad.com/aws/2009/01/cloudfront-management-tools.html" />
160
+ <link rel="service.edit" type="application/atom+xml" href="http://www.typepad.com/t/atom/weblog/blog_id=73998/entry_id=61130594" title="CloudFront Management Tool Roundup" />
161
+ <link rel="replies" type="text/html" href="http://aws.typepad.com/aws/2009/01/cloudfront-management-tools.html" thr:count="2" thr:when="2009-01-12T19:00:07Z"/>
162
+ <id>tag:typepad.com,2003:post-61130594</id>
163
+ <published>2009-01-09T17:51:58-08:00</published>
164
+ <updated>2009-01-12T19:00:07Z</updated>
165
+ <summary>Amazon CloudFront was designed to make it really easy to distribute content to users at high speed with low latency. Here are some new tools which provide a nice end-user interface to CloudFront. The newest Freeware release of the CloudBerry...</summary>
166
+ <author>
167
+ <name>AWS Editor</name>
168
+ </author>
169
+
170
+
171
+ <content type="html" xml:lang="en-US" xml:base="http://aws.typepad.com/aws/">
172
+ &lt;div xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;&lt;style&gt;
173
+
174
+ .itemdiv20090109
175
+ {
176
+ border-bottom: 4px solid orange;
177
+ padding: 5px;
178
+ margin: 5px;
179
+ margin-bottom: 10px;
180
+ }
181
+
182
+ .imgwrap20090109
183
+ {
184
+ text-align: center;
185
+ margin-bottom: 5px;
186
+ }
187
+
188
+ .img20090109
189
+ {
190
+ border: 0px;
191
+ float: right;
192
+ margin-left: 5px;
193
+ }
194
+
195
+ .img20090109b
196
+ {
197
+ border: 1px solid black;
198
+ float: right;
199
+ margin-left: 5px;
200
+ }
201
+ &lt;/style&gt;
202
+
203
+ &lt;p&gt;
204
+ Amazon
205
+ &lt;a href=&quot;http://aws.amazon.com/cloudfront/&quot;&gt;CloudFront&lt;/a&gt;
206
+ was designed to make it really easy to distribute content to users at high speed
207
+ with low latency. Here are some new tools which provide a nice end-user interface
208
+ to CloudFront.
209
+ &lt;/p&gt;
210
+
211
+ &lt;div class=&quot;itemdiv20090109&quot;&gt;
212
+ &lt;div class=&quot;imgwrap20090109&quot;&gt;
213
+ &lt;a href=&quot;http://www.cloudberrylab.com/&quot;&gt;
214
+ &lt;img src=&quot;http://aws.typepad.com/files/cloudberry_explorer_box.jpg&quot; class=&quot;img20090109&quot; /&gt;
215
+ &lt;/a&gt;
216
+ &lt;/div&gt;
217
+ &lt;p&gt;
218
+ The newest Freeware release of the
219
+ &lt;a href=&quot;http://www.cloudberrylab.com/&quot;&gt;CloudBerry Explorer&lt;/a&gt;
220
+ now includes CloudFront support. You can create and manage distributions,
221
+ assign CNAMES, and even
222
+ &lt;a href=&quot;http://www.cloudberrylab.com/?id=14&quot;&gt;automate&lt;/a&gt; the entire process using the
223
+ &lt;a href=&quot;http://www.microsoft.com/windowsserver2003/technologies/management/powershell/default.mspx&quot;&gt;Windows PowerShell.&lt;/a&gt; CloudBerry Explorer also includes some powerful support for
224
+ batched changes to &lt;a href=&quot;http://aws.amazon.com/s3&quot;&gt;S3&lt;/a&gt; object Access Control Lists.
225
+ There are a couple of helpful videos &lt;a href=&quot;http://www.cloudberrylab.com/default.aspx?id=18&quot; &gt;here&lt;/a&gt;.
226
+ &lt;/p&gt;
227
+ &lt;div style=&quot;clear:both;&quot;&gt;&amp;nbsp;&lt;/div&gt;
228
+ &lt;/div&gt;
229
+
230
+ &lt;div class=&quot;itemdiv20090109&quot;&gt;
231
+ &lt;div class=&quot;imgwrap20090109&quot;&gt;
232
+ &lt;a href=&quot;http://www.streamincloud.com/&quot;&gt;
233
+ &lt;img src=&quot;http://aws.typepad.com/files/streamincloud.png&quot; class=&quot;img20090109&quot; /&gt;
234
+ &lt;/a&gt;
235
+ &lt;/div&gt;
236
+ &lt;p&gt;
237
+ &lt;a href=&quot;http://www.streamincloud.com/&quot;&gt;StreamInCloud&lt;/a&gt; is a free
238
+ &lt;a href=&quot;http://en.wikipedia.org/wiki/FLV&quot;&gt;FLV&lt;/a&gt; (Flash Video) encoder.
239
+ You simply create an S3 bucket and give StreamInCloud permission to read and
240
+ write it. It then monitors the bucket for new videos, encodes them into
241
+ the FLV format, and places the encoded version in the bucket. Of course, if
242
+ the bucket is part of a CloudFront distribution, the encoded content
243
+ is then available worldwide at high speed with low latency.
244
+ &lt;/p&gt;
245
+
246
+ &lt;p&gt;
247
+ StreamInCloud encodes the videos at 512kbps and leaves the size as-is.
248
+ This service is free; an advanced version with additional features and options will
249
+ be available later at an additional charge.
250
+ &lt;/p&gt;
251
+ &lt;div style=&quot;clear:both;&quot;&gt;&amp;nbsp;&lt;/div&gt;
252
+ &lt;/div&gt;
253
+
254
+ &lt;div class=&quot;itemdiv20090109&quot;&gt;
255
+ &lt;div class=&quot;imgwrap20090109&quot;&gt;
256
+ &lt;a href=&quot;http://cyberduck.ch/&quot;&gt;
257
+ &lt;img src=&quot;http://aws.typepad.com/files/cyberduck.jpg&quot; class=&quot;img20090109&quot; /&gt;
258
+ &lt;/a&gt;
259
+ &lt;/div&gt;
260
+ &lt;p&gt;
261
+ &lt;a href=&quot;http://www.cyberduck.ch&quot;&gt;Cyberduck&lt;/a&gt; is a Mac OS X client for
262
+ &lt;a href=&quot;http://aws.amazon.com/s3&quot;&gt;Amazon S3&lt;/a&gt; and
263
+ &lt;a href=&quot;http://aws.amazon.com/cloudfront&quot;&gt;CloudFront&lt;/a&gt;, with added support for
264
+ FTP, SFTP, WebDav, and other online storage facilities. The product has a very long
265
+ &lt;a href=&quot;http://cyberduck.ch/&quot;&gt;feature list&lt;/a&gt;, is
266
+ &lt;a href=&quot;http://svn.cyberduck.ch/trunk/AppleScript%20Samples/&quot;&gt;&quot;scriptable via AppleScript&lt;/a&gt;,
267
+ and, like CloudBerry Explorer, is Freeware.&lt;/p&gt;
268
+
269
+ &lt;p&gt;
270
+ Full &lt;a href=&quot;http://cyberduck.ch/source/&quot;&gt;source code&lt;/a&gt; is available as well.
271
+ &lt;/p&gt;
272
+ &lt;div style=&quot;clear:both;&quot;&gt;&amp;nbsp;&lt;/div&gt;
273
+ &lt;/div&gt;
274
+
275
+ &lt;div class=&quot;itemdiv20090109&quot;&gt;
276
+ &lt;div class=&quot;imgwrap20090109&quot;&gt;
277
+ &lt;a href=&quot;http://www.ylastic.com/&quot;&gt;
278
+ &lt;img src=&quot;http://aws.typepad.com/files/ylastic_homepage.png&quot; class=&quot;img20090109b&quot;/&gt;
279
+ &lt;/a&gt;
280
+ &lt;/div&gt;
281
+ &lt;p&gt;
282
+ As I noted earlier this week, &lt;a href=&quot;http://www.ylastic.com/&quot;&gt;Ylastic&lt;/a&gt;
283
+ allows you to manage your CloudFront distributions
284
+ from your iPhone.
285
+
286
+ There&#39;s now &lt;a href=&quot;http://blog.ylastic.com/?p=77&quot;&gt;support&lt;/a&gt; for the Google Android Phone as well.
287
+
288
+ Watch the &lt;a href=&quot;http://ylastic.com/screencasts.html&quot;&gt;screencasts&lt;/a&gt; to learn more.
289
+ &lt;/p&gt;
290
+ &lt;div style=&quot;clear:both;&quot;&gt;&amp;nbsp;&lt;/div&gt;
291
+ &lt;/div&gt;
292
+
293
+ &lt;div class=&quot;itemdiv20090109&quot;&gt;
294
+ &lt;div class=&quot;imgwrap20090109&quot;&gt;
295
+ &lt;a href=&quot;http://www.codeplex.com/MgrAmazonCloudfront&quot;&gt;
296
+ &lt;img src=&quot;http://aws.typepad.com/files/cloudfront_manager.png&quot; class=&quot;img20090109b&quot; /&gt;
297
+ &lt;/a&gt;
298
+ &lt;/div&gt;
299
+ &lt;p&gt;
300
+ &lt;a href=&quot;http://www.affirmaconsulting.com/&quot;&gt;Affirma Consulting&lt;/a&gt; has developed the
301
+ &lt;a href=&quot;http://www.codeplex.com/MgrAmazonCloudfront&quot;&gt;Manager For Amazon CloudFront&lt;/a&gt;
302
+ in
303
+ &lt;a href=&quot;http://msdn.microsoft.com/en-us/vcsharp/aa336809.aspx&quot;&gt;C#&lt;/a&gt;. The project is
304
+ hosted on CodePlex and &lt;a href=&quot;http://www.codeplex.com/MgrAmazonCloudfront/SourceControl/ListDownloadableCommits.aspx&quot;&gt;full source code&lt;/a&gt;
305
+ is available. It supports direct streaming of data into S3 and uses multiple threads to manage
306
+ simultaneous uploads, downloads, and live statistics.
307
+ &lt;/p&gt;
308
+ &lt;div style=&quot;clear:both;&quot;&gt;&amp;nbsp;&lt;/div&gt;
309
+ &lt;/div&gt;
310
+
311
+ &lt;div class=&quot;itemdiv20090109&quot;&gt;
312
+ &lt;div class=&quot;imgwrap20090109&quot;&gt;
313
+ &lt;a href=&quot;&quot;&gt;
314
+ &lt;img src=&quot;http://aws.typepad.com/files/cloudbuddy.png&quot; class=&quot;img20090109&quot; /&gt;
315
+ &lt;/a&gt;
316
+ &lt;/div&gt;
317
+ &lt;p&gt;
318
+ On the surface,
319
+ &lt;a href=&quot;http://www.mycloudbuddy.com/&quot;&gt;CloudBuddy&lt;/a&gt;
320
+ looks like a free S3 bucket explorer tool with full support for CloudFront.
321
+ However, there&#39;s quite a bit more beneath the surface. It is actually a
322
+ platform with a highly refined
323
+ &lt;a href=&quot;http://www.mycloudbuddy.com/technology.html&quot;&gt;architecture&lt;/a&gt;.
324
+ All CloudBuddy operations are exposed as
325
+ &lt;a href=&quot;http://www.mycloudbuddy.com/sdk.html&quot;&gt;APIs&lt;/a&gt;. &lt;/p&gt;
326
+
327
+ &lt;p&gt;
328
+ The distribution includes a
329
+ &lt;a href=&quot;http://www.amazon.com/s/ref=nb_ss_gw?url=search-alias%3Daps&amp;field-keywords=microsoft+office&amp;x=0&amp;y=0&quot;&gt;Microsoft Office&lt;/a&gt;
330
+ plug-in to help you to manage your documents,
331
+ workbooks, emails, presentations, and projects in the cloud.
332
+ &lt;a href=&quot;http://code.google.com/p/cloudbuddy/&quot;&gt;Source code&lt;/a&gt;
333
+ is available.
334
+ &lt;/p&gt;
335
+ &lt;div style=&quot;clear:both;&quot;&gt;&amp;nbsp;&lt;/div&gt;
336
+ &lt;/div&gt;
337
+
338
+ &lt;div class=&quot;itemdiv20090109&quot;&gt;
339
+ &lt;div class=&quot;imgwrap20090109&quot;&gt;
340
+ &lt;a href=&quot;http://www.bucketexplorer.com/&quot;&gt;
341
+ &lt;img src=&quot;http://aws_blog.s3.amazonaws.com/images/bucketexplorer.png&quot; class=&quot;img20090109b&quot; /&gt;
342
+ &lt;/a&gt;
343
+ &lt;/div&gt;
344
+ &lt;p&gt;
345
+ &lt;a href=&quot;http://www.bucketexplorer.com/&quot;&gt;Bucket Explorer&lt;/a&gt; also has a number of unique and very handy features including the ability
346
+ to copy objects from one S3 account to another along with
347
+ &lt;a href=&quot;http://www.bucketexplorer.com/documentation/amazon-s3--bucket-commander.html&quot;&gt;timed backups to S3.&lt;/a&gt; It is available
348
+ for Windows, Mac, and Linux.
349
+ &lt;/p&gt;
350
+ &lt;div style=&quot;clear:both;&quot;&gt;&amp;nbsp;&lt;/div&gt;
351
+ &lt;/div&gt;
352
+
353
+ &lt;p&gt;Enjoy, and &lt;a href=&quot;mailto:awseditor@amazon.com&quot;&gt;let us know&lt;/a&gt; how you have put CloudFront to use.&lt;/p&gt;
354
+
355
+ &lt;p&gt;-- Jeff;&lt;/p&gt;
356
+
357
+ &lt;/div&gt;
358
+ </content>
359
+
360
+
361
+ </entry>
362
+ <entry>
363
+ <title>Manage Amazon EC2 With New Web-Based AWS Management Console</title>
364
+ <link rel="alternate" type="text/html" href="http://aws.typepad.com/aws/2009/01/manage-amazon-ec2-with-new-webbased-console.html" />
365
+ <link rel="service.edit" type="application/atom+xml" href="http://www.typepad.com/t/atom/weblog/blog_id=73998/entry_id=60059208" title="Manage Amazon EC2 With New Web-Based AWS Management Console" />
366
+ <link rel="replies" type="text/html" href="http://aws.typepad.com/aws/2009/01/manage-amazon-ec2-with-new-webbased-console.html" thr:count="14" thr:when="2009-01-13T13:16:18Z"/>
367
+ <id>tag:typepad.com,2003:post-60059208</id>
368
+ <published>2009-01-08T19:04:40-08:00</published>
369
+ <updated>2009-01-13T13:16:18Z</updated>
370
+ <summary>Today we’re announcing the availability of the Web-based AWS Management Console, which in this first release provides management of your Amazon EC2 environment via a point-and-click interface. A number of management tools already exist: for example a popular Firefox extension...</summary>
371
+ <author>
372
+ <name>AWS Editor</name>
373
+ </author>
374
+ <category scheme="http://www.sixapart.com/ns/types#category" term="Amazon EC2" />
375
+ <category scheme="http://www.sixapart.com/ns/types#category" term="Announcements" />
376
+ <category scheme="http://www.sixapart.com/ns/types#category" term="Developer Tools" />
377
+
378
+
379
+ <content type="html" xml:lang="en-US" xml:base="http://aws.typepad.com/aws/">
380
+ &lt;div xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;&lt;p&gt;Today we’re announcing the availability of the &lt;a href=&quot;https://console.aws.amazon.com/index&quot;&gt;Web-based AWS Management Console&lt;/a&gt;, which in this first release provides management of your &lt;a href=&quot;http://aws.amazon.com/ec2/&quot;&gt;Amazon EC2&lt;/a&gt; environment via a point-and-click interface. A number of management tools already exist: for example a popular Firefox extension known as &lt;a href=&quot;http://developer.amazonwebservices.com/connect/entry.jspa?externalID=609&amp;amp;categoryID=88&quot;&gt;Elasticfox&lt;/a&gt;; however as you read more of this post I believe you’ll agree that the new console is compelling--especially when it’s time to log in as a new AWS developer.&lt;/p&gt;
381
+ &lt;p&gt;&lt;a href=&quot;https://console.aws.amazon.com/&quot;&gt;&lt;img src=&quot;http://mculver-images.s3.amazonaws.com/Console_thumb.png&quot; vspace=&quot;5&quot; width=&quot;175&quot; align=&quot;right&quot; border=&quot;0&quot; height=&quot;131&quot; hspace=&quot;5&quot;&gt;&lt;/a&gt;For starters, it’s easier than ever to gain access to your Amazon EC2 environment. The console provides access via your Amazon username and password. No more certificates or public/secret keys to manage! If you’re like me, I never seem to have my own computer at hand when I need to check the status of the Amazon EC2 farm, or for that matter when I need to launch a new instance. It’s a lot easier to log in with a username and password than to use those same credentials to retrieve my keys, configure Firefox (if it’s even on the borrowed computer) and then log in. &lt;/p&gt;
382
+ &lt;p&gt;Then there’s the new point-and-click AJAX user interface for managing Amazon EC2 resources. No more page refreshes every time something updates; and a timer refreshes management console components, such as the status of running instances, every few seconds. &lt;/p&gt;
383
+ &lt;p&gt;The AWS community creates an amazing selection of innovative Amazon Machine Images, or AMIs. In fact, the count is now a staggering 1200 AMIs and growing! That’s quite a menu to choose from—especially if you are a first-time user. The new Launch Instance Wizard walks you through starting your first instance; offering a short list of Linux and Windows server choices. Choose one of these AMIs, and then the wizard even suggests which ports to open in the firewall. It’s smart enough to suggest that you open SSH (port 22) for Linux images, and RDP (port 3389) for Windows instances. The wizard even suggests settings that restrict Amazon EC2 access to “your computer only”. &lt;/p&gt;
384
+ &lt;p&gt;And as I hinted in the opening paragraph, this is just the first in a set of Console interfaces that will provide a UI layer on top of AWS infrastructure services. We’ll be adding additional Amazon Web Services in the future. &lt;/p&gt;
385
+ &lt;p&gt;The console feature list is extensive, and provides intuitive management of all these things: &lt;/p&gt;
386
+ &lt;ul type=&quot;”square”&quot;&gt;
387
+ &lt;li&gt;AMI Management: browse and search AMIs, launch instances from AMIs, deregister and register AMIs
388
+ &lt;/li&gt;
389
+ &lt;li&gt;Instance Management: launch, reboot, terminate, get console output, RDP/SSH help, etc.
390
+ &lt;/li&gt;
391
+ &lt;li&gt;Security Group Management: create and delete security groups, add and remove permissions, configure firewall settings, open and close ports
392
+ &lt;/li&gt;
393
+ &lt;li&gt;Elastic IP Management: create and release IP Addresses, associate IPs to instances
394
+ &lt;/li&gt;
395
+ &lt;li&gt;Elastic Block Store: create, delete, attach and detach volumes. Take snapshots and manage snapshots.
396
+ &lt;/li&gt;
397
+ &lt;li&gt;Key Pair management: create and delete public/private key pairs. &lt;/li&gt;
398
+ &lt;/ul&gt;
399
+ &lt;p&gt;If you’d like to take a six minute tour of the console, I created a &lt;a href=&quot;http://media.amazonwebservices.com/console/AwsConsole.html&quot;&gt;video&lt;/a&gt; (Flash format).&lt;/p&gt;
400
+ &lt;p&gt;Finally, do you have a feature suggestion, or some other type of feedback? Feedback links are at the bottom of each page, and we welcome your input. &lt;/p&gt;
401
+ &lt;p&gt;&lt;em&gt;&lt;i&gt;Mike&lt;/i&gt;&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;
402
+ </content>
403
+
404
+
405
+ </entry>
406
+ <entry>
407
+ <title>Cloud Computing and Biomedical Research Roundtable in San Diego</title>
408
+ <link rel="alternate" type="text/html" href="http://aws.typepad.com/aws/2009/01/cloud-computing-and-biomedical-research-roundtable-in-san-diego.html" />
409
+ <link rel="service.edit" type="application/atom+xml" href="http://www.typepad.com/t/atom/weblog/blog_id=73998/entry_id=61040234" title="Cloud Computing and Biomedical Research Roundtable in San Diego" />
410
+ <link rel="replies" type="text/html" href="http://aws.typepad.com/aws/2009/01/cloud-computing-and-biomedical-research-roundtable-in-san-diego.html" thr:count="0"/>
411
+ <id>tag:typepad.com,2003:post-61040234</id>
412
+ <published>2009-01-08T05:47:59-08:00</published>
413
+ <updated>2009-01-08T14:21:58Z</updated>
414
+ <summary>Cirrhus9 (mentioned yesterday) and Pfizer are co-sponsors of a roundtable discussion on the topic of cloud computing and biomedical research. Amazon CTO Werner Vogels will be in attendance at this unique event, where they&#39;ll discuss the emerging demands of biomedical...</summary>
415
+ <author>
416
+ <name>AWS Editor</name>
417
+ </author>
418
+ <category scheme="http://www.sixapart.com/ns/types#category" term="Conferences &amp; User Groups" />
419
+
420
+
421
+ <content type="html" xml:lang="en-US" xml:base="http://aws.typepad.com/aws/">
422
+ &lt;div xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;&lt;p&gt;&lt;a href=&quot;http://www.cirrhus9.com/index.php/component/dtregister/&quot;&lt;img src=&quot;http://aws.typepad.com/files/cirrhus_roundtable.gif&quot; style=&quot;float:right;margin-left:10px;margin-bottom:10px;border:1px solid black;&quot;&gt;&lt;/a&gt;
423
+
424
+ &lt;a href=&quot;http://www.cirrhus9.com&quot;&gt;Cirrhus9&lt;/a&gt; (mentioned yesterday) and &lt;a href=&quot;http://www.pfizer.com&quot;&gt;Pfizer&lt;/a&gt; are co-sponsors of a &lt;a href=&quot;http://www.cirrhus9.com/index.php/component/dtregister/&quot;&gt;roundtable discussion on the topic of cloud computing and biomedical research&lt;/a&gt;. Amazon CTO
425
+ &lt;a href=&quot;http://www.allthingsdistributed.com&quot;&gt;Werner Vogels&lt;/a&gt; will be in attendance at this unique event, where they&#39;ll discuss the emerging demands of biomedical research and how they can be met using cloud computing.&lt;/p&gt;
426
+
427
+ &lt;p&gt;The roundtable will be help at 2 PM on January 14th at the Pfizer building in San Diego.&lt;/p&gt;
428
+
429
+ &lt;p&gt;There are just 7 seats left so you&#39;d better go ahead and &lt;a href=&quot;http://www.cirrhus9.com/index.php/component/dtregister/&quot;&gt;register now&lt;/a&gt;.&lt;/p&gt;
430
+
431
+ &lt;p&gt;-- Jeff;&lt;/p&gt;
432
+ &lt;/div&gt;
433
+ </content>
434
+
435
+
436
+ </entry>
437
+ <entry>
438
+ <title>AWS Links - Wednesday, January 7, 2009</title>
439
+ <link rel="alternate" type="text/html" href="http://aws.typepad.com/aws/2009/01/aws-links-wednesday-january-7-2009.html" />
440
+ <link rel="service.edit" type="application/atom+xml" href="http://www.typepad.com/t/atom/weblog/blog_id=73998/entry_id=61005796" title="AWS Links - Wednesday, January 7, 2009" />
441
+ <link rel="replies" type="text/html" href="http://aws.typepad.com/aws/2009/01/aws-links-wednesday-january-7-2009.html" thr:count="1" thr:when="2009-01-07T23:32:54Z"/>
442
+ <id>tag:typepad.com,2003:post-61005796</id>
443
+ <published>2009-01-07T11:09:12-08:00</published>
444
+ <updated>2009-01-08T13:35:29Z</updated>
445
+ <summary>As usual, I&#39;ve got plenty to blog about. Here&#39;s a glimpse at some of the interesting things that have recently landed in my inbox. On Thursday, January 8th, Information Week and Amazon will present a Webcast titled How To Plug...</summary>
446
+ <author>
447
+ <name>AWS Editor</name>
448
+ </author>
449
+
450
+
451
+ <content type="html" xml:lang="en-US" xml:base="http://aws.typepad.com/aws/">
452
+ &lt;div xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;&lt;style&gt;
453
+ .itemdiv20090107
454
+ {
455
+ border-bottom: 4px solid orange;
456
+ padding: 5px;
457
+ margin: 5px;
458
+ margin-bottom: 10px;
459
+ }
460
+
461
+ .imgwrap20090107
462
+ {
463
+ text-align: center;
464
+ margin-bottom: 5px;
465
+ }
466
+
467
+ .img20090107
468
+ {
469
+ border: 0px;
470
+ float: right;
471
+ margin-left: 5px;
472
+ }
473
+
474
+ .img20090107b
475
+ {
476
+ border: 1px solid black;
477
+ float: right;
478
+ margin-left: 5px;
479
+ }
480
+
481
+ &lt;/style&gt;
482
+
483
+ &lt;p&gt;As usual, I&#39;ve got plenty to blog about. Here&#39;s a glimpse at some of
484
+ the interesting things that have recently landed in my inbox.&lt;/p&gt;
485
+
486
+ &lt;div class=&quot;itemdiv20090107&quot;&gt;
487
+ &lt;div class=&quot;imgwrap20090107&quot;&gt;
488
+ &lt;a href=&quot;http://www.informationweek.com/cloud-computing/blog/archives/2009/01/how_eli_lilly_t.html&quot;&gt;
489
+ &lt;img src=&quot;http://aws.typepad.com/files/webcast_lilly.gif&quot; class=&quot;img20090107b&quot; /&gt;
490
+ &lt;/a&gt;
491
+ &lt;/div&gt;
492
+ &lt;p&gt;
493
+ On Thursday, January 8th, Information Week and Amazon
494
+ will present a Webcast titled
495
+ &lt;a href=&quot;https://www.techwebonlineevents.com/ars/eventregistration.do?mode=eventreg&amp;F=1001313&amp;K=4ON&quot;&gt;How To Plug Into The Cloud&lt;/a&gt;.
496
+ Attendees
497
+ will learn how &lt;a href=&quot;http://www.lilly.com/&quot;&gt;Eli Lilly&lt;/a&gt;
498
+ has used Amazon&#39;s
499
+ &lt;a href=&quot;http://aws.amazon.com/ec2&quot;&gt;EC2&lt;/a&gt; servers and
500
+ &lt;a href=&quot;http://aws.amazon.com/s3&quot;&gt;S3&lt;/a&gt; storage
501
+ to support its pharmaceuticals research. Presenters will
502
+ include Dave Powers from Eli Lilly and Adam Selipsky from
503
+ Amazon Web Services. Attendance is free but you do need
504
+ to &lt;a href=&quot;https://www.techwebonlineevents.com/ars/eventregistration.do?mode=eventreg&amp;F=1001313&amp;K=4ON&quot;&gt;preregister&lt;/a&gt;.
505
+ &lt;/p&gt;
506
+ &lt;div style=&quot;clear:both;&quot;&gt;&amp;nbsp;&lt;/div&gt;
507
+ &lt;/div&gt;
508
+
509
+ &lt;div class=&quot;itemdiv20090107&quot;&gt;
510
+ &lt;div class=&quot;imgwrap20090107&quot;&gt;
511
+ &lt;a href=&quot;http://www.rpath.com/corp/techtuesday&quot;&gt;
512
+ &lt;img src=&quot;http://aws.typepad.com/files/rpath_rbuilder.gif&quot; class=&quot;img20090107b&quot; /&gt;
513
+ &lt;/a&gt;
514
+ &lt;/div&gt;
515
+ &lt;p&gt;
516
+ The folks at &lt;a href=&quot;http://www.rpath.com&quot;&gt;rPath&lt;/a&gt; will be conducting a series of tech events on
517
+ alternate &lt;a href=&quot;http://www.rpath.com/corp/techtuesday&quot;&gt;Tuesdays&lt;/a&gt; starting on January 13th. Attendees
518
+ at the first event will learn how to build a virtual appliance using
519
+ &lt;a href=&quot;http://www.rpath.org/&quot;&gt;rBuilder Online&lt;/a&gt;
520
+ and launch it on &lt;a href=&quot;http://aws.amazon.com/ec2&quot;&gt;Amazon EC2&lt;/a&gt;. Once again, attendance
521
+ is free but &lt;a href=&quot;http://www.rpath.com/corp/techtuesday&quot;&gt;preregistation&lt;/a&gt; is a must!
522
+ &lt;/p&gt;
523
+ &lt;div style=&quot;clear:both;&quot;&gt;&amp;nbsp;&lt;/div&gt;
524
+ &lt;/div&gt;
525
+
526
+ &lt;div class=&quot;itemdiv20090107&quot;&gt;
527
+ &lt;div class=&quot;imgwrap20090107&quot;&gt;
528
+ &lt;a href=&quot;http://contentworkspace.com/solutions/amazon_s3.asp&quot;&gt;
529
+ &lt;img src=&quot;http://aws.typepad.com/files/contentworkspace.gif&quot; class=&quot;img20090107b&quot; /&gt;
530
+ &lt;/a&gt;
531
+ &lt;/div&gt;
532
+ &lt;p&gt;
533
+ &lt;a href=&quot;http://contentworkspace.com/&quot;&gt;Content Workspace&lt;/a&gt; has built a document scanning
534
+ and indexing service around
535
+ &lt;a href=&quot;http://aws.amazon.com/s3&quot;&gt;Amazon S3&lt;/a&gt; and the
536
+ &lt;a href=&quot;http://www.mturk.com&quot;&gt;Amazon Mechanical Turk&lt;/a&gt;.
537
+ Access to the Mechanical Turk workforce gives them the ability to
538
+ offer document and form classification, document indexing, data entry,
539
+ translation, detection of duplicates, and
540
+ &lt;a href=&quot;http://contentworkspace.com/solutions/mturk.asp&quot;&gt;more&lt;/a&gt;.
541
+ &lt;/p&gt;
542
+ &lt;div style=&quot;clear:both;&quot;&gt;&amp;nbsp;&lt;/div&gt;
543
+ &lt;/div&gt;
544
+
545
+ &lt;div class=&quot;itemdiv20090107&quot;&gt;
546
+ &lt;div class=&quot;imgwrap20090107&quot;&gt;
547
+ &lt;a href=&quot;http://www.cloudfoundry.com/&quot;&gt;
548
+ &lt;img src=&quot;http://aws.typepad.com/files/cloudfoundry.gif&quot; class=&quot;img20090107b&quot; /&gt;
549
+ &lt;/a&gt;
550
+ &lt;/div&gt;
551
+ &lt;p&gt;
552
+ I met
553
+ &lt;a href=&quot;http://www.cloudfoundry.com/aboutus.html&quot;&gt;Chris Richardson&lt;/a&gt; a year or two
554
+ ago at a conference in Philadelphia. Since then
555
+ we&#39;ve stayed in touch and have bumped in to each other at conferences on the east
556
+ and west coast. His &lt;a href=&quot;http://code.google.com/p/cloudtools/&quot;&gt;Cloud Tools&lt;/a&gt;
557
+ project makes it easy to deploy, test, and manage Java EE applications on
558
+ &lt;a href=&quot;http://aws.amazon.com/ec2&quot;&gt;EC2&lt;/a&gt;. Now, Chris has created the
559
+ &lt;a href=&quot;http://www.cloudfoundry.com/&quot;&gt;Cloud Foundry&lt;/a&gt; in order to make this
560
+ process even easier. You can simply drop your application&#39;s &quot;.war&quot; files
561
+ into a container managed by Cloud Factory and running on EC2. You can choose
562
+ between a number of runtime topologies and can manage your entire cluster
563
+ with one button. Learn more by watching the
564
+ &lt;a href=&quot;http://14mxqsr8atw1gws4dm82.123108screencast.s3.amazonaws.com/screencast.html&quot;&gt;Cloud Foundry screencast&lt;/a&gt;.
565
+ &lt;/p&gt;
566
+ &lt;div style=&quot;clear:both;&quot;&gt;&amp;nbsp;&lt;/div&gt;
567
+ &lt;/div&gt;
568
+
569
+ &lt;div class=&quot;itemdiv20090107&quot;&gt;
570
+ &lt;div class=&quot;imgwrap20090107&quot;&gt;
571
+ &lt;a href=&quot;http://www.cirrhus9.com/&quot;&gt;
572
+ &lt;img src=&quot;http://aws.typepad.com/files/cirrhus.gif&quot; class=&quot;img20090107b&quot; /&gt;
573
+ &lt;/a&gt;
574
+ &lt;/div&gt;
575
+ &lt;p&gt;
576
+ Mike from &lt;a href=&quot;http://www.cirrhus9.com&quot;&gt;Cirrhus9&lt;/a&gt; wrote to tell about
577
+ his company and their cloud computing service offerings. They focus on the
578
+ Life Sciences industry, with 3 of the 4 founders coming from the pharmaceuticals
579
+ business. They got together as a &quot;Cloud Integrator&quot; to help IT managers navigate
580
+ and leverage cloud computing. Their
581
+ &lt;a href=&quot;http://www.cirrhus9.com/index.php/services.html&quot;&gt;offerings&lt;/a&gt;
582
+ include an evaluation methodology
583
+ to evaluate the feasibility of moving individual applications to the cloud. They
584
+ also understand the FDA Qualification and Validation process and can work
585
+ with companies that would like to move health care applications into the
586
+ cloud.
587
+ &lt;/p&gt;
588
+ &lt;p&gt;
589
+ They&#39;ve also created
590
+ &lt;a href=&quot;http://www.cirrhus9.com/index.php/opennx.html&quot;&gt;CloudBuntu&lt;/a&gt;, a
591
+ lightweight managed desktop running on EC2 and accessible through a
592
+ web browser.&lt;/a&gt;
593
+
594
+ &lt;/p&gt;
595
+ &lt;div style=&quot;clear:both;&quot;&gt;&amp;nbsp;&lt;/div&gt;
596
+ &lt;/div&gt;
597
+
598
+ &lt;div class=&quot;itemdiv20090107&quot;&gt;
599
+ &lt;div class=&quot;imgwrap20090107&quot;&gt;
600
+ &lt;a href=&quot;http://blog.ylastic.com/?p=72&quot;&gt;
601
+ &lt;img src=&quot;http://aws.typepad.com/files/ylastic_iphone.gif&quot; class=&quot;img20090107&quot; /&gt;
602
+ &lt;/a&gt;
603
+ &lt;/div&gt;
604
+ &lt;p&gt;
605
+ By way of the &lt;a href=&quot;http://blog.ylastic.com/?p=72&quot;&gt;Ylastic blog&lt;/a&gt; comes
606
+ news that their very
607
+ &lt;a href=&quot;http://ylastic.com/features.html&quot;&gt;full-featured AWS management application&lt;/a&gt;
608
+ can now be run on an Apple
609
+ &lt;a href=&quot;http://www.apple.com/iphone/&quot;&gt;iPhone&lt;/a&gt;. Using Ylastic you can
610
+ architect, manage, and monitor your AWS cloud computing environment.
611
+ Watch this application in action on the
612
+ &lt;a href=&quot;http://ylastic.com/screencasts.html&quot;&gt;Ylastic screencast&lt;/a&gt;.
613
+ &lt;/p&gt;
614
+ &lt;div style=&quot;clear:both;&quot;&gt;&amp;nbsp;&lt;/div&gt;
615
+ &lt;/div&gt;
616
+
617
+ &lt;div class=&quot;itemdiv20090107&quot;&gt;
618
+ &lt;div class=&quot;imgwrap20090107&quot;&gt;
619
+ &lt;a href=&quot;http://www.econsteve.com/?p=124&quot;&gt;
620
+ &lt;img src=&quot;http://aws.typepad.com/files/econ_steve_ruby_xml.gif&quot; class=&quot;img20090107b&quot; /&gt;
621
+ &lt;/a&gt;
622
+ &lt;/div&gt;
623
+ &lt;p&gt;
624
+ I now have proof that cloud computing can be hereditary! My son
625
+ &lt;a href=&quot;http://www.econsteve.com/&quot;&gt;Stephen&lt;/a&gt; is studying Applied Math and Economics at the University of Washington. He&#39;s
626
+ also working on a really interesting research project in the Economics department. The
627
+ project makes use of the Mechanical Turk in a very unique way. The paper is still
628
+ being written and I&#39;ll be sure to link to it when it finally arrives. Over the holiday
629
+ break Stephen needed to parse some large XML files. The parsing was taking forever
630
+ on his laptop, so he launched an Extra Large &lt;a href=&quot;http://aws.amazon.com/ec2&quot;&gt;EC2&lt;/a&gt;
631
+ instance and did his work there instead. In
632
+ &lt;a href=&quot;http://www.econsteve.com/?p=124&quot;&gt;his post&lt;/a&gt;, he explains what he did and
633
+ also provides a photo-illustrated tour of how he set up EC2 and
634
+ &lt;a href=&quot;http://aws.amazon.com/ebs&quot;&gt;EBS&lt;/a&gt;.
635
+
636
+ &lt;/p&gt;
637
+ &lt;div style=&quot;clear:both;&quot;&gt;&amp;nbsp;&lt;/div&gt;
638
+ &lt;/div&gt;
639
+
640
+ &lt;div class=&quot;itemdiv20090107&quot;&gt;
641
+ &lt;div class=&quot;imgwrap20090107&quot;&gt;
642
+ &lt;a href=&quot;http://arxiv.org/abs/0901.0029&quot;&gt;
643
+ &lt;img src=&quot;http://aws.typepad.com/files/uw_scientific_computing.gif&quot; class=&quot;img20090107&quot; /&gt;
644
+ &lt;/a&gt;
645
+ &lt;/div&gt;
646
+ &lt;p&gt;
647
+ Finally (I am out of time, not material) Researchers in the
648
+ &lt;a href=&quot;http://www.phys.washington.edu/&quot;&gt;Physics Department at the University
649
+ of Washington&lt;/a&gt; has prepared a
650
+ report on the topic of
651
+ &lt;a href=&quot;http://arxiv.org/abs/0901.0029&quot;&gt;Scientific Computing in
652
+ the Cloud&lt;/a&gt;.
653
+ They have investigated the feasibility performing scientific
654
+ computing in the cloud (using EC2) as an alternative to
655
+ traditional computational tools. They note that
656
+
657
+ &quot;For research groups, cloud computing provides convenient access
658
+ to reliable, high performance clusters and storage, without the
659
+ need to purchase and maintain sophisticated hardware. For
660
+ developers, virtualization allows scientific codes to be optimized
661
+ and pre-installed on machine images, facilitating control over the
662
+ computational environment.&quot;
663
+
664
+ &lt;/p&gt;
665
+ &lt;div style=&quot;clear:both;&quot;&gt;&amp;nbsp;&lt;/div&gt;
666
+ &lt;/div&gt;
667
+
668
+ &lt;p&gt;And that&#39;s it for today. Send me information about what you are doing with
669
+ AWS and I&#39;ll do my best to fit you in.&lt;/p&gt;
670
+
671
+ &lt;p&gt;--Jeff;&lt;/p&gt;
672
+ &lt;/div&gt;
673
+ </content>
674
+
675
+
676
+ </entry>
677
+ <entry>
678
+ <title>Bits For Sale - The New Amazon S3 Requester Pays Model</title>
679
+ <link rel="alternate" type="text/html" href="http://aws.typepad.com/aws/2009/01/bits-for-sale-amazon-s3-requester-payment-model.html" />
680
+ <link rel="service.edit" type="application/atom+xml" href="http://www.typepad.com/t/atom/weblog/blog_id=73998/entry_id=60729402" title="Bits For Sale - The New Amazon S3 Requester Pays Model" />
681
+ <link rel="replies" type="text/html" href="http://aws.typepad.com/aws/2009/01/bits-for-sale-amazon-s3-requester-payment-model.html" thr:count="5" thr:when="2009-01-06T00:48:31Z"/>
682
+ <id>tag:typepad.com,2003:post-60729402</id>
683
+ <published>2009-01-02T14:34:15-08:00</published>
684
+ <updated>2009-01-06T00:58:00Z</updated>
685
+ <summary>We rolled out a powerful new feature for Amazon S3 in the final hours of 2008. This new feature, dubbed Requester Pays, works at the level of an S3 bucket. If the bucket&#39;s owner flags it as Requester Pays, then...</summary>
686
+ <author>
687
+ <name>AWS Editor</name>
688
+ </author>
689
+
690
+
691
+ <content type="html" xml:lang="en-US" xml:base="http://aws.typepad.com/aws/">
692
+ &lt;div xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;&lt;p&gt;We rolled out a powerful new feature for &lt;a href=&quot;http://aws.amazon.com/s3&quot;&gt;Amazon S3&lt;/a&gt; in the final hours of 2008.&lt;/p&gt;
693
+
694
+ &lt;p&gt;This new feature, dubbed Requester Pays, works at the level of an S3 bucket. If the bucket&#39;s owner flags it as Requester Pays, then all data transfer and request costs are paid by the party accessing the data.&lt;/p&gt;
695
+
696
+ &lt;p&gt;The Requester Pays model can be used in two ways.&lt;/p&gt;
697
+
698
+ &lt;p&gt;
699
+ &lt;a href=&quot;http://docs.amazonwebservices.com/AmazonS3/latest/index.html?RequesterPaysBuckets.html&quot;&gt;
700
+ &lt;img src=&quot;http://aws.typepad.com/files/s3_dev_guide_2009_01_02.png&quot; style=&quot;float: right; margin-left: 10px; margin-bottom: 10px;&quot;&gt;&lt;/a&gt;First, by simply marking a bucket as Requester Pays, data owners can provide access to large data sets without incurring charges for data transfer or requests. For example, they could make available a 1 GB dataset at a cost of just 15 cents per month (18 cents if stored in the European instance of S3). Requesters use signed and specially flagged requests to identify themselves to AWS, paying for S3 GET requests and data transfer at the usual rates — 17 cents per GB for data transfer (even less at high volumes) and 1 cent for every 10,000 GET requests. The newest version of the
701
+ &lt;a href=&quot;http://docs.amazonwebservices.com/AmazonS3/latest/index.html?RequesterPaysBuckets.html&quot;&gt;S3 Developer Guide&lt;/a&gt; contains the information needed to make use of S3 in this way.&lt;/p&gt;
702
+
703
+ &lt;div style=&quot;clear:both;&quot;&gt;&amp;nbsp;&lt;/div&gt;
704
+
705
+ &lt;p&gt;&lt;a href=&quot;http://docs.amazonwebservices.com/AmazonDevPay/latest/DevPayDeveloperGuide/index.html?S3RequesterPays.html&quot;&gt;&lt;img src=&quot;http://aws.typepad.com/files/devpay_reqpay_flow.png&quot; style=&quot;float: right; margin-left: 10px; margin-bottom: 10px;&quot;&gt;&lt;/a&gt;Second, the Requester Pays feature can be used in conjunction with &lt;a href=&quot;http://aws.amazon.com/devpay/&quot;&gt;Amazon DevPay&lt;/a&gt;. Content owners charge a markup for access to the data. The price can include a monthly fee, a markup on the data transfer costs, and a markup on the cost of each GET. The newest version of the
706
+ &lt;a href=&quot;http://docs.amazonwebservices.com/AmazonDevPay/latest/DevPayDeveloperGuide/index.html?S3RequesterPays.html&quot;&gt;DevPay Developer Guide&lt;/a&gt; has all of the information needed to set this up, including some helpful diagrams. Organizations with large amounts of valuable data can now use DevPay to expose and monetize the data, with payment by the month or by access (or some combination). For example, I could create a database of all dog kennels in the United States, and make it available for $20 per month, with no charge for access. My AWS account would not be charged for the data transfer and request charges, only for the data storage.&lt;/p&gt;
707
+
708
+ &lt;p&gt;I firmly believe that business model innovation is as important as technical innovation. This new feature gives you the ability to create the new, innovative, and very efficient business models that you will need to have in order to succeed in 2009!&lt;/p&gt;
709
+
710
+ -- Jeff;&lt;/div&gt;
711
+ </content>
712
+
713
+
714
+ </entry>
715
+ <entry>
716
+ <title>Please Vote: AWS and AWS-Powered Applications Are Crunchies Finalists</title>
717
+ <link rel="alternate" type="text/html" href="http://aws.typepad.com/aws/2008/12/please-vote-aws-and-aws-applications-are-finalists-for-crunchies.html" />
718
+ <link rel="service.edit" type="application/atom+xml" href="http://www.typepad.com/t/atom/weblog/blog_id=73998/entry_id=60563682" title="Please Vote: AWS and AWS-Powered Applications Are Crunchies Finalists" />
719
+ <link rel="replies" type="text/html" href="http://aws.typepad.com/aws/2008/12/please-vote-aws-and-aws-applications-are-finalists-for-crunchies.html" thr:count="1" thr:when="2009-01-11T18:00:14Z"/>
720
+ <id>tag:typepad.com,2003:post-60563682</id>
721
+ <published>2008-12-29T12:14:58-08:00</published>
722
+ <updated>2009-01-11T18:00:14Z</updated>
723
+ <summary>AWS is a finalist in two categories of the Crunchies awards, Best Enterprise and Best Overall. In addition to that, AWS-powered applications from Animoto and SlideRocket are candidates for Best Design; eBuddy and Fotonauts are up for Best International; DropBox...</summary>
724
+ <author>
725
+ <name>AWS Editor</name>
726
+ </author>
727
+
728
+
729
+ <content type="html" xml:lang="en-US" xml:base="http://aws.typepad.com/aws/">
730
+ &lt;div xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;&lt;p&gt;AWS is a finalist in two categories of the &lt;a href=&quot;http://crunchies2008.techcrunch.com/&quot;&gt;Crunchies&lt;/a&gt; awards, Best Enterprise and Best Overall.&lt;/p&gt;
731
+
732
+ &lt;p&gt;In addition to that, AWS-powered applications from &lt;a href=&quot;http://www.animoto.com/&quot;&gt;Animoto&lt;/a&gt; and &lt;a href=&quot;http://www.sliderocket.com&quot;&gt;SlideRocket&lt;/a&gt; are candidates for Best Design; &lt;a href=&quot;http://www.ebuddy.com/&quot;&gt;eBuddy&lt;/a&gt; and &lt;a href=&quot;http://www.fotonauts.com/&quot;&gt;Fotonauts&lt;/a&gt; are up for Best International; &lt;a href=&quot;http://www.getdropbox.com/&quot;&gt;DropBox&lt;/a&gt; for Best New Startup of 2008; and &lt;a href=&quot;http://www.twitter.com&quot;&gt;Twitter&lt;/a&gt; (competing with AWS) for Best Overall. &lt;a href=&quot;http://www.goodguide.com/&quot;&gt;GoodGuide&lt;/a&gt; is a finalist in the Most Likely To Make The World A Better Place category, as is &lt;a href=&quot;http://akoha.com&quot;&gt;Akoha&lt;/a&gt;. &lt;a href=&quot;http://www.meebo.com&quot;&gt;Meebo&lt;/a&gt; is a candidate for Best Application.&lt;/p&gt;
733
+
734
+ &lt;p&gt;If you could take the time to &lt;a href=&quot;&quot;&gt;vote&lt;/a&gt; that would be great! Here are some direct links to make it really easy:&lt;/p&gt;
735
+
736
+ &lt;p style=&quot;text-align:center;padding-bottom:10px;&quot;&gt;Best Enterprise - AWS&lt;br/&gt;&lt;a href=&quot;http://crunchies2008.techcrunch.com/votes/?nominee_id=23&amp;category_id=5&quot; &gt;&lt;img src=&quot;http://crunchies2008.techcrunch.com/wp-content/themes/crunchies/images/vote_badges/5.png&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
737
+
738
+ &lt;p style=&quot;text-align:center;padding-bottom:10px;&quot;&gt;Best Overall - AWS&lt;br/&gt;&lt;a href=&quot;http://crunchies2008.techcrunch.com/votes/?nominee_id=76&amp;category_id=15&quot;&gt;&lt;img src=&quot;http://crunchies2008.techcrunch.com/wp-content/themes/crunchies/images/vote_badges/15.png&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
739
+
740
+ &lt;p style=&quot;text-align:center;padding-bottom:10px;&quot;&gt;Best Overall - Twitter&lt;br/&gt;&lt;a href=&quot;http://crunchies2008.techcrunch.com/votes/?nominee_id=80&amp;category_id=15&quot;&gt;&lt;img src=&quot;http://crunchies2008.techcrunch.com/wp-content/themes/crunchies/images/vote_badges/15.png&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
741
+
742
+ &lt;p style=&quot;text-align:center;padding-bottom:10px;&quot;&gt;Best Design - Animoto&lt;br/&gt;&lt;a href=&quot;http://crunchies2008.techcrunch.com/votes/?nominee_id=17&amp;category_id=4&quot;&gt;&lt;img src=&quot;http://crunchies2008.techcrunch.com/wp-content/themes/crunchies/images/vote_badges/4.png&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
743
+
744
+ &lt;p style=&quot;text-align:center;padding-bottom:10px;&quot;&gt;Best Design - SlideRocket&lt;br/&gt;&lt;a href=&quot;http://crunchies2008.techcrunch.com/votes/?nominee_id=22&amp;category_id=4&quot;&gt;&lt;img src=&quot;http://crunchies2008.techcrunch.com/wp-content/themes/crunchies/images/vote_badges/4.png&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
745
+
746
+ &lt;p style=&quot;text-align:center;padding-bottom:10px;&quot;&gt;Best International - eBuddy&lt;br/&gt;&lt;a href=&quot;http://crunchies2008.techcrunch.com/votes/?nominee_id=34&amp;category_id=7&quot;&gt;&lt;img src=&quot;http://crunchies2008.techcrunch.com/wp-content/themes/crunchies/images/vote_badges/7.png&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
747
+
748
+ &lt;p style=&quot;text-align:center;padding-bottom:10px;&quot;&gt;Best International - Fotonauts&lt;br/&gt;&lt;a href=&quot;http://crunchies2008.techcrunch.com/votes/?nominee_id=35&amp;category_id=7&quot;&gt;&lt;img src=&quot;http://crunchies2008.techcrunch.com/wp-content/themes/crunchies/images/vote_badges/7.png&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
749
+
750
+ &lt;p style=&quot;text-align:center;padding-bottom:10px;&quot;&gt;Best New Startup of 2008 - DropBox&lt;br/&gt;&lt;a href=&quot;http://crunchies2008.techcrunch.com/votes/?nominee_id=70&amp;category_id=14&quot;&gt;&lt;img src=&quot;http://crunchies2008.techcrunch.com/wp-content/themes/crunchies/images/vote_badges/14.png&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
751
+
752
+ &lt;p style=&quot;text-align:center;padding-bottom:10px;&quot;&gt;Most Likely To Make The World A Better Place - GoodGuide&lt;br/&gt;&lt;a href=&quot;http://crunchies2008.techcrunch.com/votes/?nominee_id=58&amp;category_id=11&quot;&gt;&lt;img src=&quot;http://crunchies2008.techcrunch.com/wp-content/themes/crunchies/images/vote_badges/11.png&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
753
+
754
+ &lt;p style=&quot;text-align:center;padding-bottom:10px;&quot;&gt;Most Likely To Make The World A Better Place - Akoha&lt;br/&gt;&lt;a href=&quot;http://crunchies2008.techcrunch.com/votes/?nominee_id=55&amp;category_id=11&quot;&gt;&lt;img src=&quot;http://crunchies2008.techcrunch.com/wp-content/themes/crunchies/images/vote_badges/11.png&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
755
+
756
+ &lt;p style=&quot;text-align:center;padding-bottom:10px;&quot;&gt;Best Application - Meebo&lt;br/&gt;
757
+ &lt;a href=&quot;http://crunchies2008.techcrunch.com/votes/?nominee_id=47&amp;category_id=9&quot;&gt;&lt;img src=&quot;http://crunchies2008.techcrunch.com/wp-content/themes/crunchies/images/vote_badges/9.png&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
758
+
759
+ &lt;p&gt;-- Jeff;&lt;/p&gt;
760
+
761
+ &lt;p&gt;PS - If I missed any AWS-powered applications, drop me a &lt;a href=&quot;mailto:awseditor@amazon.com&quot;&gt;note&lt;/a&gt; and I&#39;ll update this post!&lt;/p&gt;
762
+ &lt;/div&gt;
763
+ </content>
764
+
765
+
766
+ </entry>
767
+ <entry>
768
+ <title>Solve for Efficiency With Amazon Mechanical Turk</title>
769
+ <link rel="alternate" type="text/html" href="http://aws.typepad.com/aws/2008/12/solve-for-efficiency-with-amazon-mechanical-turk.html" />
770
+ <link rel="service.edit" type="application/atom+xml" href="http://www.typepad.com/t/atom/weblog/blog_id=73998/entry_id=60566782" title="Solve for Efficiency With Amazon Mechanical Turk" />
771
+ <link rel="replies" type="text/html" href="http://aws.typepad.com/aws/2008/12/solve-for-efficiency-with-amazon-mechanical-turk.html" thr:count="1" thr:when="2008-12-30T13:44:28Z"/>
772
+ <id>tag:typepad.com,2003:post-60566782</id>
773
+ <published>2008-12-29T12:10:35-08:00</published>
774
+ <updated>2008-12-30T13:44:28Z</updated>
775
+ <summary>This is a quick post about another great use of Amazon Mechanical Turk. Over on Friend Feed Jean-Claude Bradley posted a blog post called “Mechanical Turk Does Solubility on Google Spreadsheet”, which talks about using Mechanical Turk to process solubility...</summary>
776
+ <author>
777
+ <name>AWS Editor</name>
778
+ </author>
779
+ <category scheme="http://www.sixapart.com/ns/types#category" term="Mechanical Turk" />
780
+
781
+
782
+ <content type="html" xml:lang="en-US" xml:base="http://aws.typepad.com/aws/">
783
+ &lt;div xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;&lt;p&gt;&lt;img src=&quot;http://2.bp.blogspot.com/_R3jz5f_NkRo/SVjTj_6EpCI/AAAAAAAAAjQ/6Itd78gddLA/s400/nitrobenzmethanol.jpg&quot; vspace=&quot;5&quot; width=&quot;400&quot; align=&quot;right&quot; height=&quot;311&quot; hspace=&quot;5&quot;&gt;This is a quick post about another great use of &lt;a href=&quot;http://aws.amazon.com/mturk/&quot;&gt;Amazon Mechanical Turk&lt;/a&gt;. Over on &lt;a href=&quot;http://friendfeed.com/e/2b5d0f22-b68e-7bf5-19f1-acbb9d4479d0/Mechanical-Turk-Does-Solubility-on-Google/&quot;&gt;Friend Feed&lt;/a&gt; Jean-Claude Bradley posted a blog post called “&lt;a href=&quot;http://usefulchem.blogspot.com/2008/12/mechanical-turk-does-solubility-on.html&quot;&gt;Mechanical Turk Does Solubility on Google Spreadsheet&lt;/a&gt;”, which talks about using Mechanical Turk to process solubility data for the &lt;a href=&quot;http://onschallenge.wikispaces.com/&quot;&gt;Open Notebook Science Challenge&lt;/a&gt;.&lt;/p&gt;
784
+ &lt;p&gt;What I believe is revolutionary here is that rather than rely on government funding to help process results, scientists are able to use Crowdsourcing to process results in real time—and at a very fine unit of granularity. When you combine those characteristics with the Open Notebook Science Challenge, the result is unprecedented transparency.&lt;/p&gt;
785
+ &lt;p&gt;The blog post referenced above inspired another, titled “&lt;a href=&quot;http://researchremix.wordpress.com/2008/12/29/generalizability-coefficient-for-mechanical-turk-annotations/&quot;&gt; Generalizability coefficient for Mechanical Turk annotations&lt;/a&gt;”, that describes using Amazon Mechanical Turk and Crowdsourcing to generate annotations of a thesis. Wow, eliminating (or more likely reducing) one of the biggest pains associated with a thesis. Doctoral candidates everywhere should take note.&lt;/p&gt;
786
+ &lt;p&gt;It’s about more than Grad Student pain relief though: by Crowdsourcing mechanical tasks such as annotation, students are free to focus on data collection and analysis. That makes the entire process more efficient. &lt;/p&gt;
787
+ &lt;p&gt;These innovative uses of Amazon Mechanical Turk combined with the new &lt;a href=&quot;http://aws.amazon.com/publicdatasets/&quot;&gt;Public Data Sets&lt;/a&gt;, are an exciting time in both Cloud Computing and in science.&lt;/p&gt;
788
+ &lt;p&gt;&lt;em&gt;Mike&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;
789
+ </content>
790
+
791
+
792
+ </entry>
793
+
794
+ </feed>
795
+ <!-- ph=1 -->
796
+ <!-- nhm:from_kauri -->