feedparser 1.2.0 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (61) hide show
  1. checksums.yaml +4 -4
  2. data/Manifest.txt +2 -50
  3. data/README.md +71 -9
  4. data/Rakefile +1 -1
  5. data/lib/feedparser.rb +2 -0
  6. data/lib/feedparser/builder/microformats.rb +264 -0
  7. data/lib/feedparser/parser.rb +27 -0
  8. data/lib/feedparser/version.rb +2 -2
  9. data/test/helper.rb +3 -57
  10. data/test/test_microformats.rb +52 -0
  11. metadata +10 -56
  12. data/test/feeds/books/nostarch.rss +0 -125
  13. data/test/feeds/books/oreilly.feedburner.atom +0 -387
  14. data/test/feeds/books/pragprog.rss +0 -148
  15. data/test/feeds/byparker.json +0 -643
  16. data/test/feeds/daringfireball.atom +0 -1873
  17. data/test/feeds/daringfireball.json +0 -619
  18. data/test/feeds/googlegroups.atom +0 -37
  19. data/test/feeds/googlegroups2.atom +0 -27
  20. data/test/feeds/headius.atom +0 -123
  21. data/test/feeds/inessential.json +0 -182
  22. data/test/feeds/intertwingly.atom +0 -1197
  23. data/test/feeds/jsonfeed.json +0 -37
  24. data/test/feeds/lambdatheultimate.rss +0 -288
  25. data/test/feeds/learnenough.feedburner.atom +0 -747
  26. data/test/feeds/news/nytimes-blogs-bits.rss +0 -333
  27. data/test/feeds/news/nytimes-paul-krugman.rss +0 -60
  28. data/test/feeds/news/nytimes-tech.rss +0 -653
  29. data/test/feeds/news/nytimes-thomas-l-friedman.rss +0 -80
  30. data/test/feeds/news/nytimes.rss +0 -607
  31. data/test/feeds/news/washingtonpost-blogs-innovations.rss +0 -183
  32. data/test/feeds/news/washingtonpost-politics.rss +0 -35
  33. data/test/feeds/news/washingtonpost-world.rss +0 -29
  34. data/test/feeds/ongoing.atom +0 -1619
  35. data/test/feeds/osm/blog.openstreetmap.rss +0 -252
  36. data/test/feeds/osm/blogs.openstreetmap.rss +0 -585
  37. data/test/feeds/osm/mapbox.rss +0 -1883
  38. data/test/feeds/railstutorial.feedburner.atom +0 -656
  39. data/test/feeds/rubyflow.feedburner.rss +0 -120
  40. data/test/feeds/rubymine.feedburner.rss +0 -314
  41. data/test/feeds/rubyonrails.atom +0 -1241
  42. data/test/feeds/scripting.rss +0 -881
  43. data/test/feeds/sitepoint.rss +0 -218
  44. data/test/feeds/spec/atom/author.atom +0 -48
  45. data/test/feeds/spec/atom/authors.atom +0 -70
  46. data/test/feeds/spec/atom/categories.atom +0 -66
  47. data/test/feeds/spec/json/example.json +0 -36
  48. data/test/feeds/spec/json/microblog.json +0 -43
  49. data/test/feeds/spec/json/tags.json +0 -33
  50. data/test/feeds/spec/rss/author.rss +0 -41
  51. data/test/feeds/spec/rss/categories.rss +0 -64
  52. data/test/feeds/spec/rss/creator.rss +0 -38
  53. data/test/feeds/xkcd.atom +0 -48
  54. data/test/feeds/xkcd.rss +0 -55
  55. data/test/test_atom.rb +0 -27
  56. data/test/test_authors.rb +0 -26
  57. data/test/test_books.rb +0 -25
  58. data/test/test_feeds.rb +0 -29
  59. data/test/test_json.rb +0 -27
  60. data/test/test_rss.rb +0 -26
  61. data/test/test_tags.rb +0 -25
@@ -35,12 +35,39 @@ class Parser
35
35
  elsif head.start_with?( '{' ) ||
36
36
  head =~ jsonfeed_version_regex
37
37
  parse_json
38
+ ## note: reading/parsing microformat is for now optional
39
+ ## microformats gem requires nokogiri
40
+ ## nokogiri (uses libxml c-extensions) makes it hard to install (sometime)
41
+ ## thus, if you want to use it, please opt-in to keep the install "light"
42
+ #
43
+ # for now check for microformats v2 (e.g. h-entry, h-feed)
44
+ # check for v1 too - why? why not? (e.g. hentry, hatom ??)
45
+ elsif defined?( Microformats ) &&
46
+ (@text.include?( 'h-entry' ) ||
47
+ @text.include?( 'h-feed' )
48
+ )
49
+ parse_microformats
38
50
  else ## assume xml for now
39
51
  parse_xml
40
52
  end
41
53
  end # method parse
42
54
 
43
55
 
56
+ def parse_microformats
57
+ logger.debug "using microformats/#{Microformats::VERSION}"
58
+
59
+ logger.debug "Parsing feed in html (w/ microformats)..."
60
+
61
+ collection = Microformats.parse( @text )
62
+ collection_hash = collection.to_hash
63
+
64
+ feed = HyFeedBuilder.build( collection_hash )
65
+
66
+ logger.debug "== #{feed.format} / #{feed.title} =="
67
+ feed # return new (normalized) feed
68
+ end # method parse_microformats
69
+
70
+
44
71
  def parse_json
45
72
  logger.debug "using stdlib json/#{JSON::VERSION}"
46
73
 
@@ -2,8 +2,8 @@
2
2
 
3
3
  module FeedParser
4
4
 
5
- MAJOR = 1
6
- MINOR = 2
5
+ MAJOR = 2
6
+ MINOR = 0
7
7
  PATCH = 0
8
8
  VERSION = [MAJOR,MINOR,PATCH].join('.')
9
9
 
@@ -11,69 +11,15 @@ require 'fetcher'
11
11
 
12
12
 
13
13
  ## our own code
14
-
15
14
  require 'feedparser'
16
15
 
17
16
 
18
- LogUtils::Logger.root.level = :debug
19
-
20
-
21
- ## add custom assert
22
- module MiniTest
23
- class Test
24
-
25
- def assert_feed_tests_for( name )
26
- b = BlockReader.from_file( "#{FeedParser.root}/test/feeds/#{name}" ).read
27
-
28
- ## puts " [debug] block.size: #{b.size}"
29
-
30
- xml = b[0]
31
- tests = b[1]
32
-
33
- feed = FeedParser::Parser.parse( xml )
34
-
35
- tests.each_line do |line|
36
- if line =~ /^[ \t]*$/
37
- next ## skip blank lines
38
- end
39
-
40
- line = line.strip
41
-
42
-
43
- if line.start_with? '>>>'
44
- ## for debugging allow "custom" code e.g. >>> pp feed.items[0].summary etc.
45
- code = line[3..-1].strip
46
- else
47
- pos = line.index(':') ## assume first colon (:) is separator
48
- expr = line[0...pos].strip ## NOTE: do NOT include colon (thus, use tree dots ...)
49
- value = line[pos+1..-1].strip
50
-
51
- ## for ruby code use |> or >> or >>> or => or $ or | or RUN or ????
52
- ## otherwise assume "literal" string
53
-
54
- if value.start_with? '>>>'
55
- value = value[3..-1].strip
56
- code="assert_equal #{value}, #{expr}"
57
- elsif value.start_with? 'DateTime' ## todo/fix: remove; use >>> style
58
- code="assert_equal #{value}, #{expr}"
59
- else # assume value is a "plain" string
60
- ## note use %{ } so value can include quotes ('') etc.
61
- code="assert_equal %{#{value}}, #{expr}"
62
- end
63
- end
64
-
65
- puts "eval #{code}"
66
- eval( code )
67
- end # each line
68
- end
69
-
70
- end
71
- end # module MiniTest
72
17
 
18
+ LogUtils::Logger.root.level = :debug
73
19
 
74
20
 
75
21
  def fetch_and_parse_feed( url )
76
- xml = Fetcher.read( url )
22
+ text = Fetcher.read( url )
77
23
 
78
- FeedParser::Parser.parse( xml )
24
+ FeedParser::Parser.parse( text )
79
25
  end
@@ -0,0 +1,52 @@
1
+ ###
2
+ # to run use
3
+ # ruby -I ./lib -I ./test test/test_microformats.rb
4
+ # or better
5
+ # rake test
6
+
7
+
8
+ require 'helper'
9
+
10
+
11
+ ###
12
+ ## note: needs to require microformats gem (it's not required by default)
13
+
14
+ require 'microformats'
15
+
16
+
17
+
18
+ class TestMicroformats < MiniTest::Test
19
+
20
+ def test_hentry
21
+
22
+ text =<<HTML
23
+ <article class="h-entry">
24
+ <h1 class="p-name">Microformats are amazing</h1>
25
+ <p>Published by
26
+ <a class="p-author h-card" href="http://example.com">W. Developer</a>
27
+ on <time class="dt-published" datetime="2013-06-13 12:00:00">13<sup>th</sup> June 2013</time>
28
+
29
+ <p class="p-summary">In which I extoll the virtues of using microformats.</p>
30
+
31
+ <div class="e-content">
32
+ <p>Blah blah blah</p>
33
+ </div>
34
+ </article>
35
+ HTML
36
+
37
+ feed = FeedParser::Parser.parse( text )
38
+
39
+ assert_equal 'html', feed.format
40
+ assert_equal 1, feed.items.size
41
+ assert_equal 1, feed.items[0].authors.size
42
+ assert_equal '<p>Blah blah blah</p>', feed.items[0].content_html
43
+ assert_equal 'Blah blah blah', feed.items[0].content_text
44
+ assert_equal 'Microformats are amazing', feed.items[0].title
45
+ assert_equal 'In which I extoll the virtues of using microformats.', feed.items[0].summary
46
+ assert_equal DateTime.new( 2013, 6, 13, 12, 0, 0 ).utc, feed.items[0].published
47
+
48
+ assert_equal 'W. Developer', feed.items[0].authors[0].name
49
+ end
50
+
51
+
52
+ end # class TestMicroformats
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: feedparser
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gerald Bauer
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-06-03 00:00:00.000000000 Z
11
+ date: 2017-06-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: logutils
@@ -58,15 +58,16 @@ dependencies:
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: '3.16'
61
+ version: '3.15'
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: '3.16'
69
- description: feedparser - web feed parser and normalizer (RSS 2.0, Atom, JSON, etc.)
68
+ version: '3.15'
69
+ description: feedparser - web feed parser and normalizer (RSS 2.0, Atom, JSON Feed,
70
+ HTML h-entry, etc.)
70
71
  email: wwwmake@googlegroups.com
71
72
  executables: []
72
73
  extensions: []
@@ -83,6 +84,7 @@ files:
83
84
  - lib/feedparser/author.rb
84
85
  - lib/feedparser/builder/atom.rb
85
86
  - lib/feedparser/builder/json.rb
87
+ - lib/feedparser/builder/microformats.rb
86
88
  - lib/feedparser/builder/rss.rb
87
89
  - lib/feedparser/feed.rb
88
90
  - lib/feedparser/generator.rb
@@ -90,60 +92,11 @@ files:
90
92
  - lib/feedparser/parser.rb
91
93
  - lib/feedparser/tag.rb
92
94
  - lib/feedparser/version.rb
93
- - test/feeds/books/nostarch.rss
94
- - test/feeds/books/oreilly.feedburner.atom
95
- - test/feeds/books/pragprog.rss
96
- - test/feeds/byparker.json
97
- - test/feeds/daringfireball.atom
98
- - test/feeds/daringfireball.json
99
- - test/feeds/googlegroups.atom
100
- - test/feeds/googlegroups2.atom
101
- - test/feeds/headius.atom
102
- - test/feeds/inessential.json
103
- - test/feeds/intertwingly.atom
104
- - test/feeds/jsonfeed.json
105
- - test/feeds/lambdatheultimate.rss
106
- - test/feeds/learnenough.feedburner.atom
107
- - test/feeds/news/nytimes-blogs-bits.rss
108
- - test/feeds/news/nytimes-paul-krugman.rss
109
- - test/feeds/news/nytimes-tech.rss
110
- - test/feeds/news/nytimes-thomas-l-friedman.rss
111
- - test/feeds/news/nytimes.rss
112
- - test/feeds/news/washingtonpost-blogs-innovations.rss
113
- - test/feeds/news/washingtonpost-politics.rss
114
- - test/feeds/news/washingtonpost-world.rss
115
- - test/feeds/ongoing.atom
116
- - test/feeds/osm/blog.openstreetmap.rss
117
- - test/feeds/osm/blogs.openstreetmap.rss
118
- - test/feeds/osm/mapbox.rss
119
- - test/feeds/railstutorial.feedburner.atom
120
- - test/feeds/rubyflow.feedburner.rss
121
- - test/feeds/rubymine.feedburner.rss
122
- - test/feeds/rubyonrails.atom
123
- - test/feeds/scripting.rss
124
- - test/feeds/sitepoint.rss
125
- - test/feeds/spec/atom/author.atom
126
- - test/feeds/spec/atom/authors.atom
127
- - test/feeds/spec/atom/categories.atom
128
- - test/feeds/spec/json/example.json
129
- - test/feeds/spec/json/microblog.json
130
- - test/feeds/spec/json/tags.json
131
- - test/feeds/spec/rss/author.rss
132
- - test/feeds/spec/rss/categories.rss
133
- - test/feeds/spec/rss/creator.rss
134
- - test/feeds/xkcd.atom
135
- - test/feeds/xkcd.rss
136
95
  - test/helper.rb
137
- - test/test_atom.rb
138
96
  - test/test_atom_live.rb
139
- - test/test_authors.rb
140
- - test/test_books.rb
141
97
  - test/test_dates.rb
142
- - test/test_feeds.rb
143
- - test/test_json.rb
144
- - test/test_rss.rb
98
+ - test/test_microformats.rb
145
99
  - test/test_rss_live.rb
146
- - test/test_tags.rb
147
100
  homepage: https://github.com/feedparser/feedparser
148
101
  licenses:
149
102
  - Public Domain
@@ -169,5 +122,6 @@ rubyforge_project:
169
122
  rubygems_version: 2.6.7
170
123
  signing_key:
171
124
  specification_version: 4
172
- summary: feedparser - web feed parser and normalizer (RSS 2.0, Atom, JSON, etc.)
125
+ summary: feedparser - web feed parser and normalizer (RSS 2.0, Atom, JSON Feed, HTML
126
+ h-entry, etc.)
173
127
  test_files: []
@@ -1,125 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8" ?>
2
- <rss version="2.0" xml:base="https://www.nostarch.com/frontpage_comingsoon"
3
- xmlns:dc="http://purl.org/dc/elements/1.1/"
4
- xmlns:atom="http://www.w3.org/2005/Atom">
5
- <channel>
6
- <title>No Starch Press - Coming Soon</title>
7
- <link>https://www.nostarch.com/frontpage_comingsoon</link>
8
- <description>Keep an eye on what&#039;s coming out down the line.</description>
9
- <language>en</language>
10
- <atom:link href="https://www.nostarch.com/feeds/comingsoon.xml?startat=tcpip" rel="self" type="application/rss+xml" />
11
- <item>
12
- <title>PoC||GTFO</title>
13
- <link>https://www.nostarch.com/gtfo</link>
14
- <description>&lt;div class=&quot;field field-name-field-image-cache field-type-image field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;a href=&quot;/gtfo&quot;&gt;&lt;img class=&quot;img-responsive&quot; src=&quot;https://www.nostarch.com/sites/default/files/styles/uc_product/public/GTFO_cover.png?itok=DUUsVJxz&quot; width=&quot;168&quot; height=&quot;225&quot; alt=&quot;PoC||GTFO&quot; title=&quot;PoC||GTFO&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;field field-name-body field-type-text-with-summary field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;p&gt;&lt;a href=&quot;https://www.nostarch.com/gtfo&quot;&gt;PoC||GTFO&lt;/a&gt; is a compilation of the wildly popular hacker zine of the same name. Contributions range from humorous poems to deeply technical essays.&lt;/p&gt;
15
- &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
16
- <pubDate>Tue, 11 Apr 2017 23:50:54 +0000</pubDate>
17
- <dc:creator>Caitlin Griffin</dc:creator>
18
- <guid isPermaLink="false">423 at https://www.nostarch.com</guid>
19
- </item>
20
- <item>
21
- <title>Coding iPhone Apps for Kids</title>
22
- <link>https://www.nostarch.com/iphoneappsforkids</link>
23
- <description>&lt;div class=&quot;field field-name-field-image-cache field-type-image field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;a href=&quot;/iphoneappsforkids&quot;&gt;&lt;img class=&quot;img-responsive&quot; src=&quot;https://www.nostarch.com/sites/default/files/styles/uc_product/public/CodingiPhoneAppsforKids_cover.png?itok=zfRGgmaL&quot; width=&quot;170&quot; height=&quot;225&quot; alt=&quot;Coding iPhone Apps for Kids&quot; title=&quot;Coding iPhone Apps for Kids&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;field field-name-body field-type-text-with-summary field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;p&gt;&lt;a href=&quot;/iphoneappsforkids&quot;&gt;Coding iPhone Apps for Kids&lt;/a&gt; teaches you how to program the iOS apps and games you’ve always wanted to make! &lt;i&gt;PDF Available Now!&lt;/i&gt;&lt;/p&gt;
24
- &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
25
- <pubDate>Fri, 11 Mar 2016 19:07:21 +0000</pubDate>
26
- <dc:creator>Caitlin Griffin</dc:creator>
27
- <guid isPermaLink="false">371 at https://www.nostarch.com</guid>
28
- </item>
29
- <item>
30
- <title>Gray Hat C#</title>
31
- <link>https://www.nostarch.com/grayhatcsharp</link>
32
- <description>&lt;div class=&quot;field field-name-field-image-cache field-type-image field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;a href=&quot;/grayhatcsharp&quot;&gt;&lt;img class=&quot;img-responsive&quot; src=&quot;https://www.nostarch.com/sites/default/files/styles/uc_product/public/GrayHatC_cover.png?itok=oFuFmPd9&quot; width=&quot;170&quot; height=&quot;225&quot; alt=&quot;Gray Hat C#&quot; title=&quot;Gray Hat C#&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;field field-name-body field-type-text-with-summary field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;p&gt;&lt;a href=&quot;https://www.nostarch.com/GrayHatCSharp&quot;&gt;Gray Hat C#&lt;/a&gt; shows you how to use C#&#039;s powerful set of core libraries to create and automate security tools. &lt;i&gt;PDF Available Now!&lt;/i&gt;&lt;/p&gt;
33
- &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
34
- <pubDate>Wed, 27 Jul 2016 18:35:33 +0000</pubDate>
35
- <dc:creator>Caitlin Griffin</dc:creator>
36
- <guid isPermaLink="false">389 at https://www.nostarch.com</guid>
37
- </item>
38
- <item>
39
- <title>The Arduino Inventor&#039;s Guide</title>
40
- <link>https://www.nostarch.com/sparkfunarduino</link>
41
- <description>&lt;div class=&quot;field field-name-field-image-cache field-type-image field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;a href=&quot;/sparkfunarduino&quot;&gt;&lt;img class=&quot;img-responsive&quot; src=&quot;https://www.nostarch.com/sites/default/files/styles/uc_product/public/ArduinoInventor%27sGuide_cover_0.png?itok=eSSQoSei&quot; width=&quot;170&quot; height=&quot;225&quot; alt=&quot;The Arduino Inventor&amp;#039;s Guide&quot; title=&quot;The Arduino Inventor&amp;#039;s Guide&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;field field-name-body field-type-text-with-summary field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;p&gt;&lt;a href=&quot;/sparkfunarduino&quot;&gt;The Arduino Inventor&#039;s Guide&lt;/a&gt; is a hands-on introduction to exploring electronics with Arduino for total beginners. &lt;i&gt;Now Available in Early Access!&lt;/i&gt;&lt;/p&gt;
42
- &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
43
- <pubDate>Tue, 19 May 2015 23:41:36 +0000</pubDate>
44
- <dc:creator>Anonymous</dc:creator>
45
- <guid isPermaLink="false">346 at https://www.nostarch.com</guid>
46
- </item>
47
- <item>
48
- <title>The Manga Guide to Microprocessors</title>
49
- <link>https://www.nostarch.com/microprocessors</link>
50
- <description>&lt;div class=&quot;field field-name-field-image-cache field-type-image field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;a href=&quot;/microprocessors&quot;&gt;&lt;img class=&quot;img-responsive&quot; src=&quot;https://www.nostarch.com/sites/default/files/styles/uc_product/public/MangaMicroprocessors_cover_0.png?itok=MxmdxH9e&quot; width=&quot;170&quot; height=&quot;225&quot; alt=&quot;The Manga Guide to Microprocessors&quot; title=&quot;The Manga Guide to Microprocessors&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;field field-name-body field-type-text-with-summary field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;p&gt;&lt;a href=&quot;/microprocessors&quot;&gt;The Manga Guide to Microprocessors&lt;/a&gt; is a comic guide to microprocessors, computer architecture, and digital operations. &lt;i&gt;Now Available in Early Access!&lt;/i&gt;&lt;/p&gt;
51
- &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
52
- <pubDate>Mon, 24 Oct 2016 20:43:55 +0000</pubDate>
53
- <dc:creator>ahariri</dc:creator>
54
- <guid isPermaLink="false">393 at https://www.nostarch.com</guid>
55
- </item>
56
- <item>
57
- <title>Arduino Project Handbook, Vol. 2</title>
58
- <link>https://www.nostarch.com/arduinohandbook2</link>
59
- <description>&lt;div class=&quot;field field-name-field-image-cache field-type-image field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;a href=&quot;/arduinohandbook2&quot;&gt;&lt;img class=&quot;img-responsive&quot; src=&quot;https://www.nostarch.com/sites/default/files/styles/uc_product/public/ArduinoProjectHandbookII_cover.png?itok=FkF3sw-p&quot; width=&quot;170&quot; height=&quot;225&quot; alt=&quot;Arduino Project Handbook Vol. 2&quot; title=&quot;Arduino Project Handbook Vol. 2&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;field field-name-body field-type-text-with-summary field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;p&gt;&lt;a href=&quot;/arduinohandbook2&quot;&gt;Arduino Project Handbook, Vol. 2&lt;/a&gt; is a full-color guide to building 25 fun and practical projects with the low-cost Arduino microcontroller. &lt;i&gt;Now Available in Early Access!&lt;/i&gt;&lt;/p&gt;
60
- &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
61
- <pubDate>Mon, 24 Oct 2016 21:24:45 +0000</pubDate>
62
- <dc:creator>ahariri</dc:creator>
63
- <guid isPermaLink="false">394 at https://www.nostarch.com</guid>
64
- </item>
65
- <item>
66
- <title>Think Like a Programmer, Python Edition</title>
67
- <link>https://www.nostarch.com/thinkpython</link>
68
- <description>&lt;div class=&quot;field field-name-field-image-cache field-type-image field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;a href=&quot;/thinkpython&quot;&gt;&lt;img class=&quot;img-responsive&quot; src=&quot;https://www.nostarch.com/sites/default/files/styles/uc_product/public/ThinkLikeaProgrammerPython_cover.png?itok=1yCoVJfA&quot; width=&quot;170&quot; height=&quot;225&quot; alt=&quot;Think Like a Programmer, Python Edition&quot; title=&quot;Think Like a Programmer, Python Edition&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;field field-name-body field-type-text-with-summary field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;p&gt;The Python edition of &lt;a href=&quot;https://www.nostarch.com/thinkpython&quot;&gt;Think Like a Programmer&lt;/a&gt; will teach you how to solve problems with programming.&lt;/p&gt;
69
- &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
70
- <pubDate>Fri, 10 Mar 2017 23:50:24 +0000</pubDate>
71
- <dc:creator>ahariri</dc:creator>
72
- <guid isPermaLink="false">399 at https://www.nostarch.com</guid>
73
- </item>
74
- <item>
75
- <title>Computers for Seniors</title>
76
- <link>https://www.nostarch.com/computersforseniors</link>
77
- <description>&lt;div class=&quot;field field-name-field-image-cache field-type-image field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;a href=&quot;/computersforseniors&quot;&gt;&lt;img class=&quot;img-responsive&quot; src=&quot;https://www.nostarch.com/sites/default/files/styles/uc_product/public/ComputersforSeniors_cover.png?itok=sWPaSVC7&quot; width=&quot;170&quot; height=&quot;225&quot; alt=&quot;Computers for Seniors&quot; title=&quot;Computers for Seniors&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;field field-name-body field-type-text-with-summary field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;p&gt;&lt;a href=&quot;https://www.nostarch.com/computersforseniors&quot;&gt;Computers for Seniors&lt;/a&gt; is a step-by-step guide to learning basic computer skills.&lt;/p&gt;
78
- &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
79
- <pubDate>Wed, 13 Apr 2016 20:07:07 +0000</pubDate>
80
- <dc:creator>Caitlin Griffin</dc:creator>
81
- <guid isPermaLink="false">375 at https://www.nostarch.com</guid>
82
- </item>
83
- <item>
84
- <title>Game Console</title>
85
- <link>https://www.nostarch.com/gameconsole</link>
86
- <description>&lt;div class=&quot;field field-name-field-image-cache field-type-image field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;a href=&quot;/gameconsole&quot;&gt;&lt;img class=&quot;img-responsive&quot; src=&quot;https://www.nostarch.com/sites/default/files/styles/uc_product/public/gameconsole_cover.png?itok=S9JH4c1z&quot; width=&quot;176&quot; height=&quot;225&quot; alt=&quot;The Game Console&quot; title=&quot;The Game Console&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;field field-name-body field-type-text-with-summary field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;p&gt;&lt;b&gt;&lt;a href=&quot;/gameconsole&quot;&gt;The Game Console&lt;/a&gt;&lt;/b&gt; is a visual history of video game technology, with gorgeous photos of more than 80 video game consoles manufactured since 1972.&lt;/p&gt;
87
- &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
88
- <pubDate>Sat, 09 Jan 2016 00:31:43 +0000</pubDate>
89
- <dc:creator>Caitlin Griffin</dc:creator>
90
- <guid isPermaLink="false">362 at https://www.nostarch.com</guid>
91
- </item>
92
- <item>
93
- <title>Serious Cryptography</title>
94
- <link>https://www.nostarch.com/seriouscrypto</link>
95
- <description>&lt;div class=&quot;field field-name-field-image-cache field-type-image field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;a href=&quot;/seriouscrypto&quot;&gt;&lt;img class=&quot;img-responsive&quot; src=&quot;https://www.nostarch.com/sites/default/files/styles/uc_product/public/SeriousCrypto_cover_0.png?itok=s0OdQ-Pl&quot; width=&quot;170&quot; height=&quot;225&quot; alt=&quot;Serious Cryptography&quot; title=&quot;Serious Cryptography&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;field field-name-body field-type-text-with-summary field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;p&gt;&lt;a href=&quot;https://www.nostarch.com/SeriousCrypto&quot;&gt;Serious Cryptography&lt;/a&gt; is a practical guide to the past, present, and future of cryptographic systems and algorithms. &lt;i&gt;Now Available in Early Access!&lt;/i&gt;&lt;/p&gt;
96
- &lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
97
- <pubDate>Tue, 25 Apr 2017 22:25:46 +0000</pubDate>
98
- <dc:creator>Caitlin Griffin</dc:creator>
99
- <guid isPermaLink="false">428 at https://www.nostarch.com</guid>
100
- </item>
101
- </channel>
102
- </rss>
103
-
104
- ---
105
-
106
- feed.format: rss 2.0
107
- feed.title: No Starch Press - Coming Soon
108
- feed.url: https://www.nostarch.com/frontpage_comingsoon
109
- feed.summary: Keep an eye on what's coming out down the line.
110
-
111
-
112
- feed.items.size: >>> 10
113
-
114
- feed.items[0].title: PoC||GTFO
115
- feed.items[0].url: https://www.nostarch.com/gtfo
116
- feed.items[0].guid: 423 at https://www.nostarch.com
117
- feed.items[0].updated: >>> DateTime.new( 2017, 4, 11, 23, 50, 54 )
118
-
119
- feed.items[1].title: Coding iPhone Apps for Kids
120
- feed.items[1].url: https://www.nostarch.com/iphoneappsforkids
121
- feed.items[1].guid: 371 at https://www.nostarch.com
122
- feed.items[1].updated: >>> DateTime.new( 2016, 3, 11, 19, 7, 21 )
123
-
124
-
125
- >>> pp feed.items[0].summary
@@ -1,387 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?>
3
- <?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?>
4
- <feed xmlns="http://www.w3.org/2005/Atom"
5
- xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
6
- xmlns:on="http://www.oreillynet.com/csrss/"
7
- xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0"
8
- xml:lang="en-US">
9
-
10
- <title>O'Reilly Media, Inc. Upcoming Titles</title>
11
- <link rel="alternate" type="text/html" href="http://shop.oreilly.com/" hreflang="en" title="O'Reilly Media, Inc. Upcoming Titles" />
12
- <subtitle type="text">O'Reilly's Upcoming Titles: Books, Ebooks, Videos, and More</subtitle>
13
- <rights>Copyright O'Reilly Media, Inc.</rights>
14
- <id>http://shop.oreilly.com/</id>
15
- <updated>2017-05-25T19:20:21-08:00</updated>
16
-
17
- <itunes:author>O'Reilly Media, Inc.</itunes:author>
18
- <itunes:category text="Technology" />
19
- <itunes:explicit>no</itunes:explicit>
20
- <itunes:owner>
21
- <itunes:name>O'Reilly Media, Inc.</itunes:name>
22
- <itunes:email>webmaster@oreillynet.com</itunes:email>
23
- </itunes:owner>
24
-
25
- <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/oreilly/upcomingbooks" />
26
- <feedburner:info uri="oreilly/upcomingbooks" />
27
- <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" />
28
-
29
- <entry>
30
- <title>Fundamentals of Deep Learning</title>
31
- <id>http://shop.oreilly.com/product/0636920039709.do</id>
32
- <link rel="alternate" href="http://feedproxy.google.com/~r/oreilly/upcomingbooks/~3/HTGrIycm3vo/0636920039709.do" />
33
- <summary type="html">
34
- &lt;a href='http://shop.oreilly.com/product/0636920039709.do'&gt;&lt;img src='http://covers.oreillystatic.com/images/9781491925614/bkt.gif' style='float:left;width:85px;padding:0 10px 10px 0;' /&gt;&lt;/a&gt;&lt;div&gt;&lt;p&gt;With the reinvigoration of neural networks in the 2000s, deep learning has become an extremely active area of research that is paving the way for modern machine learning. This book uses exposition and examples to help you understand major concepts in this complicated field.&lt;/p&gt;&lt;p&gt;Large companies such as Google, Microsoft, and Facebook have taken notice, and are actively growing in-house deep learning teams. For the rest of us however, deep learning is still a pretty complex and difficult subject to grasp. If you have a basic understanding of what machine learning is, have familiarity with the Python programming language, and have some mathematical background with calculus, this book will help you get started.&lt;/p&gt;&lt;/div&gt;
35
- &lt;img src="http://feeds.feedburner.com/~r/oreilly/upcomingbooks/~4/HTGrIycm3vo" height="1" width="1" alt=""/&gt;</summary>
36
- <author><name>O'Reilly Media, Inc.</name></author>
37
- <updated>2017-05-25T19:20:21-08:10</updated>
38
- <feedburner:origLink>http://shop.oreilly.com/product/0636920039709.do</feedburner:origLink>
39
- </entry>
40
-
41
- <entry>
42
- <title>High Performance Spark</title>
43
- <id>http://shop.oreilly.com/product/0636920046967.do</id>
44
- <link rel="alternate" href="http://feedproxy.google.com/~r/oreilly/upcomingbooks/~3/mpfK4huQgiI/0636920046967.do" />
45
- <summary type="html">
46
- &lt;a href='http://shop.oreilly.com/product/0636920046967.do'&gt;&lt;img src='http://covers.oreillystatic.com/images/9781491943205/bkt.gif' style='float:left;width:85px;padding:0 10px 10px 0;' /&gt;&lt;/a&gt;&lt;p&gt;Apache Spark is amazing when everything clicks. But if you haven&amp;#8217;t seen the performance improvements you expected, or still don&amp;#8217;t feel confident enough to use Spark in production, this practical book is for you. Authors Holden Karau and Rachel Warren demonstrate performance optimizations to help your Spark queries run faster and handle larger data sizes, while using fewer resources.&lt;/p&gt;
47
- &lt;img src="http://feeds.feedburner.com/~r/oreilly/upcomingbooks/~4/mpfK4huQgiI" height="1" width="1" alt=""/&gt;</summary>
48
- <author><name>O'Reilly Media, Inc.</name></author>
49
- <updated>2017-05-25T13:20:34-08:11</updated>
50
- <feedburner:origLink>http://shop.oreilly.com/product/0636920046967.do</feedburner:origLink>
51
- </entry>
52
-
53
- <entry>
54
- <title>Think Data Structures</title>
55
- <id>http://shop.oreilly.com/product/0636920056379.do</id>
56
- <link rel="alternate" href="http://feedproxy.google.com/~r/oreilly/upcomingbooks/~3/AHZvIu7ohEc/0636920056379.do" />
57
- <summary type="html">
58
- &lt;a href='http://shop.oreilly.com/product/0636920056379.do'&gt;&lt;img src='http://covers.oreillystatic.com/images/9781491972359/bkt.gif' style='float:left;width:85px;padding:0 10px 10px 0;' /&gt;&lt;/a&gt;&lt;p&gt;If you&amp;#8217;re a student studying computer science or a software developer preparing for technical interviews, this practical book helps you learn and review the most important ideas in software engineering&amp;#8212;data structures and algorithms&amp;#8212;in a way that&amp;#8217;s clearer, more concise, and more engaging than other materials. You&amp;#8217;ll explore the important classes in the Java collections framework (JCF), how they&amp;#8217;re are implemented, and how they are expected to perform.&lt;/p&gt;
59
- &lt;img src="http://feeds.feedburner.com/~r/oreilly/upcomingbooks/~4/AHZvIu7ohEc" height="1" width="1" alt=""/&gt;</summary>
60
- <author><name>O'Reilly Media, Inc.</name></author>
61
- <updated>2017-05-24T13:20:51-08:12</updated>
62
- <feedburner:origLink>http://shop.oreilly.com/product/0636920056379.do</feedburner:origLink></entry>
63
-
64
- <entry>
65
- <title>Interactive Data Visualization for the Web</title>
66
- <id>http://shop.oreilly.com/product/0636920037316.do</id>
67
- <link rel="alternate" href="http://feedproxy.google.com/~r/oreilly/upcomingbooks/~3/MZlZvQyE46o/0636920037316.do" />
68
- <summary type="html">
69
- &lt;a href='http://shop.oreilly.com/product/0636920037316.do'&gt;&lt;img src='http://covers.oreillystatic.com/images/9781491921289/bkt.gif' style='float:left;width:85px;padding:0 10px 10px 0;' /&gt;&lt;/a&gt;&lt;p&gt;&lt;i&gt;Interactive Data Visualization for the Web&lt;/i&gt; addresses people interested in data visualization but new to programming or web development, giving them what they need to get started creating and publishing their own data visualization projects on the web. The recent explosion of interest in visualization and publicly available data sources has created need for making these skills accessible at an introductory level. The second edition includes greatly expanded geomapping coverage, more real-world examples, a chapter on how to put together all the pieces, and an appendix of case studies, in addition to other improvements.&lt;/p&gt;
70
- &lt;img src="http://feeds.feedburner.com/~r/oreilly/upcomingbooks/~4/MZlZvQyE46o" height="1" width="1" alt=""/&gt;</summary>
71
- <author><name>O'Reilly Media, Inc.</name></author>
72
- <updated>2017-05-23T13:20:23-08:13</updated>
73
- <feedburner:origLink>http://shop.oreilly.com/product/0636920037316.do</feedburner:origLink></entry>
74
-
75
- <entry>
76
- <title>Arduino Cookbook</title>
77
- <id>http://shop.oreilly.com/product/0636920033653.do</id>
78
- <link rel="alternate" href="http://feedproxy.google.com/~r/oreilly/upcomingbooks/~3/aWFjT_WLNmw/0636920033653.do" />
79
- <summary type="html">
80
- &lt;a href='http://shop.oreilly.com/product/0636920033653.do'&gt;&lt;img src='http://covers.oreillystatic.com/images/9781491903520/bkt.gif' style='float:left;width:85px;padding:0 10px 10px 0;' /&gt;&lt;/a&gt;&lt;p&gt;This cookbook is perfect for anyone who wants to experiment with the popular Arduino microcontroller and programming environment. You&amp;#8217;ll find more than 200 tips and techniques for building a variety of objects and prototypes such as toys, detectors, robots, and interactive clothing that can sense and respond to touch, sound, position, heat, and light.&lt;/p&gt;
81
- &lt;img src="http://feeds.feedburner.com/~r/oreilly/upcomingbooks/~4/aWFjT_WLNmw" height="1" width="1" alt=""/&gt;</summary>
82
- <author><name>O'Reilly Media, Inc.</name></author>
83
- <updated>2017-05-23T03:20:20-08:14</updated>
84
- <feedburner:origLink>http://shop.oreilly.com/product/0636920033653.do</feedburner:origLink></entry>
85
-
86
- <entry>
87
- <title>Streaming Systems</title>
88
- <id>http://shop.oreilly.com/product/0636920073994.do</id>
89
- <link rel="alternate" href="http://feedproxy.google.com/~r/oreilly/upcomingbooks/~3/4bjDsR2TFeo/0636920073994.do" />
90
- <summary type="html">
91
- &lt;a href='http://shop.oreilly.com/product/0636920073994.do'&gt;&lt;img src='http://covers.oreillystatic.com/images/9781491983874/bkt.gif' style='float:left;width:85px;padding:0 10px 10px 0;' /&gt;&lt;/a&gt;&lt;p&gt;Expanded from co-author Tyler Akidau&amp;#8217;s popular series of blog posts "Streaming 101" and "Streaming 102", this practical book shows data engineers, data scientists, and developers how to work with streaming or event-time data in a conceptual and platform-agnostic way. You&amp;#8217;ll go from "101"-level understanding of stream processing to a nuanced grasp of the what, where, when, and how of processing real-time data streams.&lt;/p&gt;
92
- &lt;img src="http://feeds.feedburner.com/~r/oreilly/upcomingbooks/~4/4bjDsR2TFeo" height="1" width="1" alt=""/&gt;</summary>
93
- <author><name>O'Reilly Media, Inc.</name></author>
94
- <updated>2017-05-22T19:20:33-08:15</updated>
95
- <feedburner:origLink>http://shop.oreilly.com/product/0636920073994.do</feedburner:origLink></entry>
96
-
97
- <entry>
98
- <title>Windows 10: The Missing Manual</title>
99
- <id>http://shop.oreilly.com/product/0636920068181.do</id>
100
- <link rel="alternate" href="http://feedproxy.google.com/~r/oreilly/upcomingbooks/~3/tu-YnxPLr8E/0636920068181.do" />
101
- <summary type="html">
102
- &lt;a href='http://shop.oreilly.com/product/0636920068181.do'&gt;&lt;img src='http://covers.oreillystatic.com/images/9781491981917/bkt.gif' style='float:left;width:85px;padding:0 10px 10px 0;' /&gt;&lt;/a&gt;&lt;p&gt;Windows 10 hit the scene in 2015 with lots of new features, such as the Edge web browser, Cortana voice-activated personal assistant, and universal apps that run on tablets, phones, and computers. Now, the Windows 10 Creators Update brings even more goodies&amp;#8212;and this jargon-free guide helps you get the most out of this supercharged operating system.&lt;/p&gt;
103
- &lt;img src="http://feeds.feedburner.com/~r/oreilly/upcomingbooks/~4/tu-YnxPLr8E" height="1" width="1" alt=""/&gt;</summary>
104
- <author><name>O'Reilly Media, Inc.</name></author>
105
- <updated>2017-05-10T19:20:27-08:16</updated>
106
- <feedburner:origLink>http://shop.oreilly.com/product/0636920068181.do</feedburner:origLink></entry>
107
-
108
- <entry>
109
- <title>Practical Monitoring</title>
110
- <id>http://shop.oreilly.com/product/0636920050773.do</id>
111
- <link rel="alternate" href="http://feedproxy.google.com/~r/oreilly/upcomingbooks/~3/dgJVBOvRcrk/0636920050773.do" />
112
- <summary type="html">
113
- &lt;a href='http://shop.oreilly.com/product/0636920050773.do'&gt;&lt;img src='http://covers.oreillystatic.com/images/9781491957356/bkt.gif' style='float:left;width:85px;padding:0 10px 10px 0;' /&gt;&lt;/a&gt;&lt;p&gt;Do you have a nagging feeling that your monitoring could be improved, but you just aren&amp;#8217;t sure how? This is the book for you. &lt;i&gt;Monitoring Monitoring&lt;/i&gt; explains what makes your monitoring less than stellar, and provides a practical approach to designing and implementing a monitoring strategy, from the application down to the hardware in the datacenter and everything in between.&lt;/p&gt;
114
- &lt;img src="http://feeds.feedburner.com/~r/oreilly/upcomingbooks/~4/dgJVBOvRcrk" height="1" width="1" alt=""/&gt;</summary>
115
- <author><name>O'Reilly Media, Inc.</name></author>
116
- <updated>2017-05-01T03:20:17-08:17</updated>
117
- <feedburner:origLink>http://shop.oreilly.com/product/0636920050773.do</feedburner:origLink></entry>
118
-
119
- <entry>
120
- <title>Visualizing Streaming Data</title>
121
- <id>http://shop.oreilly.com/product/0636920063124.do</id>
122
- <link rel="alternate" href="http://feedproxy.google.com/~r/oreilly/upcomingbooks/~3/9Bn5LskbP7k/0636920063124.do" />
123
- <summary type="html">
124
- &lt;a href='http://shop.oreilly.com/product/0636920063124.do'&gt;&lt;img src='http://covers.oreillystatic.com/images/9781491978016/bkt.gif' style='float:left;width:85px;padding:0 10px 10px 0;' /&gt;&lt;/a&gt;&lt;p&gt;Machine learning and computerized data analysis is incredibly powerful, but humans still excel at "getting a sense of things"&amp;#8212;the ability to recognize ill-defined or novel patterns or anomalies. With the rise of real-time streaming data, it&amp;#8217;s important to give people access to data as it arrives, in ways that enable users or analysts to recognize that "something is going on." This book provides both conceptual guidance and programming tools to do just that. Application designers, data scientists, data miners, data journalists, and system administrators will learn several ways to create visualizations that bring context and a sense of time to streaming text data.&lt;/p&gt;
125
- &lt;img src="http://feeds.feedburner.com/~r/oreilly/upcomingbooks/~4/9Bn5LskbP7k" height="1" width="1" alt=""/&gt;</summary>
126
- <author><name>O'Reilly Media, Inc.</name></author>
127
- <updated>2017-05-01T03:20:17-08:18</updated>
128
- <feedburner:origLink>http://shop.oreilly.com/product/0636920063124.do</feedburner:origLink></entry>
129
-
130
- <entry>
131
- <title>Kubernetes Cookbook</title>
132
- <id>http://shop.oreilly.com/product/0636920064947.do</id>
133
- <link rel="alternate" href="http://feedproxy.google.com/~r/oreilly/upcomingbooks/~3/xr9Atg7N24Q/0636920064947.do" />
134
- <summary type="html">
135
- &lt;a href='http://shop.oreilly.com/product/0636920064947.do'&gt;&lt;img src='http://covers.oreillystatic.com/images/9781491979686/bkt.gif' style='float:left;width:85px;padding:0 10px 10px 0;' /&gt;&lt;/a&gt;&lt;p&gt;Kubernetes is becoming the de-facto standard for container orchestration and distributed applications management across a microservices framework. With this practical cookbook, you&amp;#8217;ll learn hands-on recipes for automating the deployment, scaling, and operations of application containers across clusters of hosts. The book's easy-lookup problem-solution-discussion format helps you find the detailed answers you need&amp;#8212;quickly.&lt;/p&gt;
136
- &lt;img src="http://feeds.feedburner.com/~r/oreilly/upcomingbooks/~4/xr9Atg7N24Q" height="1" width="1" alt=""/&gt;</summary>
137
- <author><name>O'Reilly Media, Inc.</name></author>
138
- <updated>2017-05-01T03:20:17-08:19</updated>
139
- <feedburner:origLink>http://shop.oreilly.com/product/0636920064947.do</feedburner:origLink></entry>
140
-
141
- <entry>
142
- <title>Learning React</title>
143
- <id>http://shop.oreilly.com/product/0636920049579.do</id>
144
- <link rel="alternate" href="http://feedproxy.google.com/~r/oreilly/upcomingbooks/~3/fFitxvCBosQ/0636920049579.do" />
145
- <summary type="html">
146
- &lt;a href='http://shop.oreilly.com/product/0636920049579.do'&gt;&lt;img src='http://covers.oreillystatic.com/images/9781491954621/bkt.gif' style='float:left;width:85px;padding:0 10px 10px 0;' /&gt;&lt;/a&gt;&lt;p&gt;If you want to learn how to build efficient user interfaces with React, this is your book. Authors Alex Banks and Eve Porcello show you how to create UIs with this small JavaScript library that can deftly display data changes on large-scale, data-driven websites without page reloads. Along the way, you&amp;#8217;ll learn how to work with functional programming and the latest ECMAScript features.&lt;/p&gt;
147
- &lt;img src="http://feeds.feedburner.com/~r/oreilly/upcomingbooks/~4/fFitxvCBosQ" height="1" width="1" alt=""/&gt;</summary>
148
- <author><name>O'Reilly Media, Inc.</name></author>
149
- <updated>2017-04-27T13:20:39-08:20</updated>
150
- <feedburner:origLink>http://shop.oreilly.com/product/0636920049579.do</feedburner:origLink></entry>
151
-
152
- <entry>
153
- <title>Functional Programming: A PragPub Anthology</title>
154
- <id>http://shop.oreilly.com/product/9781680502336.do</id>
155
- <link rel="alternate" href="http://feedproxy.google.com/~r/oreilly/upcomingbooks/~3/nxlh2cR8nkU/9781680502336.do" />
156
- <summary type="html">
157
- &lt;a href='http://shop.oreilly.com/product/9781680502336.do'&gt;&lt;img src='http://covers.oreillystatic.com/images/9781680502336/bkt.gif' style='float:left;width:85px;padding:0 10px 10px 0;' /&gt;&lt;/a&gt;&lt;p&gt;Explore functional programming and discover new ways of thinking about code. You know you need to master functional programming, but learning one functional language is only the start. In this book, through articles drawn from &lt;i&gt;PragPub&lt;/i&gt; magazine and articles written specifically for this book, you'll explore functional thinking and functional style and idioms across languages. Led by expert guides, you'll discover the distinct strengths and approaches of Clojure, Elixir, Haskell, Scala, and Swift and learn which best suits your needs.&lt;/p&gt;
158
- &lt;img src="http://feeds.feedburner.com/~r/oreilly/upcomingbooks/~4/nxlh2cR8nkU" height="1" width="1" alt=""/&gt;</summary>
159
- <author><name>O'Reilly Media, Inc.</name></author>
160
- <updated>2017-04-22T13:20:30-08:21</updated>
161
- <feedburner:origLink>http://shop.oreilly.com/product/9781680502336.do</feedburner:origLink></entry>
162
-
163
- <entry>
164
- <title>Researching UX: User Research</title>
165
- <id>http://shop.oreilly.com/product/9780995382633.do</id>
166
- <link rel="alternate" href="http://feedproxy.google.com/~r/oreilly/upcomingbooks/~3/RI3Guc3rN6g/9780995382633.do" />
167
- <summary type="html">
168
- &lt;a href='http://shop.oreilly.com/product/9780995382633.do'&gt;&lt;img src='http://covers.oreillystatic.com/images/9780995382633/bkt.gif' style='float:left;width:85px;padding:0 10px 10px 0;' /&gt;&lt;/a&gt;&lt;p&gt;How well do you &lt;em&gt;really&lt;/em&gt; know your users? With properly conducted user research, you can discover what really makes your audience tick. This practical guide will show you, step-by-step, how to gain proper insight about your users so that you can base design decisions on solid evidence. You'll not only learn the different methodologies that you can employ in user research, but also gain insight into important set-up activities, such as recruiting users and equipping your lab, and acquire analysis skills so that you can make the most of the data you've gathered. And finally, you'll learn how to communicate findings and deploy evidence, to boost your design rationale and persuade skeptical colleagues.&lt;/p&gt;
169
- &lt;img src="http://feeds.feedburner.com/~r/oreilly/upcomingbooks/~4/RI3Guc3rN6g" height="1" width="1" alt=""/&gt;</summary>
170
- <author><name>O'Reilly Media, Inc.</name></author>
171
- <updated>2017-04-22T13:20:30-08:22</updated>
172
- <feedburner:origLink>http://shop.oreilly.com/product/9780995382633.do</feedburner:origLink></entry>
173
-
174
- <entry>
175
- <title>Scalable Cloud Ops with Fugue</title>
176
- <id>http://shop.oreilly.com/product/9781680502343.do</id>
177
- <link rel="alternate" href="http://feedproxy.google.com/~r/oreilly/upcomingbooks/~3/7lYipGyYNBY/9781680502343.do" />
178
- <summary type="html">
179
- &lt;a href='http://shop.oreilly.com/product/9781680502343.do'&gt;&lt;img src='http://covers.oreillystatic.com/images/9781680502343/bkt.gif' style='float:left;width:85px;padding:0 10px 10px 0;' /&gt;&lt;/a&gt;&lt;p&gt;Harness the promise of the cloud with Fugue, an operating system built for the cloud. Program cloud infrastructure in a fraction of the time it takes with current tools, debug infrastructure at design time, and centralize your change control process. Written by the Fugue development team, this is the definitive resource to scalable cloud operations with Fugue.&lt;/p&gt;
180
- &lt;img src="http://feeds.feedburner.com/~r/oreilly/upcomingbooks/~4/7lYipGyYNBY" height="1" width="1" alt=""/&gt;</summary>
181
- <author><name>O'Reilly Media, Inc.</name></author>
182
- <updated>2017-04-13T03:20:46-08:23</updated>
183
- <feedburner:origLink>http://shop.oreilly.com/product/9781680502343.do</feedburner:origLink></entry>
184
-
185
- <entry>
186
- <title>WordPress Projects</title>
187
- <id>http://shop.oreilly.com/product/0636920046905.do</id>
188
- <link rel="alternate" href="http://feedproxy.google.com/~r/oreilly/upcomingbooks/~3/JBMWW67ulUA/0636920046905.do" />
189
- <summary type="html">
190
- &lt;a href='http://shop.oreilly.com/product/0636920046905.do'&gt;&lt;img src='http://covers.oreillystatic.com/images/9781491942932/bkt.gif' style='float:left;width:85px;padding:0 10px 10px 0;' /&gt;&lt;/a&gt;&lt;p&gt;It&amp;#8217;s relatively quick and easy to begin a self-hosted WordPress website, but adding the content and functions that actually make your site work is much more challenging. With this practical book, you&amp;#8217;ll learn the process, tools, and tips you need to lay out content in self-hosted WordPress installations successfully. Author George Plumley offers a visual guide to adding more than 50 common functions to WordPress. Ideal for beginning to intermediate site builders using self-hosted WordPress, the fully illustrated steps in this book make it easy for you to get the site you want.&lt;/p&gt;
191
- &lt;img src="http://feeds.feedburner.com/~r/oreilly/upcomingbooks/~4/JBMWW67ulUA" height="1" width="1" alt=""/&gt;</summary>
192
- <author><name>O'Reilly Media, Inc.</name></author>
193
- <updated>2017-04-01T03:20:07-08:24</updated>
194
- <feedburner:origLink>http://shop.oreilly.com/product/0636920046905.do</feedburner:origLink></entry>
195
-
196
- <entry>
197
- <title>Introduction to Spark Operations</title>
198
- <id>http://shop.oreilly.com/product/0636920055990.do</id>
199
- <link rel="alternate" href="http://feedproxy.google.com/~r/oreilly/upcomingbooks/~3/e63d2NqwVjs/0636920055990.do" />
200
- <summary type="html">
201
- &lt;a href='http://shop.oreilly.com/product/0636920055990.do'&gt;&lt;img src='http://covers.oreillystatic.com/images/9781491971796/bkt.gif' style='float:left;width:85px;padding:0 10px 10px 0;' /&gt;&lt;/a&gt;&lt;p&gt;Apache Spark may be the most powerful technology to hit the data world since MapReduce, but many enterprises face unique problems when trying to take advantage of it. With this practical book, system administrators will learn how to work with data science teams to configure, troubleshoot, and optimize Spark clusters at enterprise scale. You&amp;#8217;ll learn everything from initial setup and installation to all facets of architecture, functional testing, and memory. You&amp;#8217;ll also get up to speed with the Spark WebUI and troubleshooting toolkit.&lt;/p&gt;
202
- &lt;img src="http://feeds.feedburner.com/~r/oreilly/upcomingbooks/~4/e63d2NqwVjs" height="1" width="1" alt=""/&gt;</summary>
203
- <author><name>O'Reilly Media, Inc.</name></author>
204
- <updated>2017-04-01T03:20:07-08:25</updated>
205
- <feedburner:origLink>http://shop.oreilly.com/product/0636920055990.do</feedburner:origLink></entry>
206
-
207
- <entry>
208
- <title>Programming on MicroPython</title>
209
- <id>http://shop.oreilly.com/product/0636920056515.do</id>
210
- <link rel="alternate" href="http://feedproxy.google.com/~r/oreilly/upcomingbooks/~3/3Qm9j_tg8-g/0636920056515.do" />
211
- <summary type="html">
212
- &lt;a href='http://shop.oreilly.com/product/0636920056515.do'&gt;&lt;img src='http://covers.oreillystatic.com/images/9781491972731/bkt.gif' style='float:left;width:85px;padding:0 10px 10px 0;' /&gt;&lt;/a&gt;&lt;p&gt;Learn how to use MicroPython to make cool stuff with the BBC micro:bit, a simple, fun, and powerful gateway into both hardware and software development. This practical book assumes no previous knowledge of programming and takes you on a journey from first steps to advanced projects. Written by the programmer who proposed, coordinated, and contributed to getting MicroPython on the BBC micro:bit, there's no better person to teach you this topic.&lt;/p&gt;
213
- &lt;img src="http://feeds.feedburner.com/~r/oreilly/upcomingbooks/~4/3Qm9j_tg8-g" height="1" width="1" alt=""/&gt;</summary>
214
- <author><name>O'Reilly Media, Inc.</name></author>
215
- <updated>2017-04-01T03:20:07-08:26</updated>
216
- <feedburner:origLink>http://shop.oreilly.com/product/0636920056515.do</feedburner:origLink></entry>
217
-
218
- <entry>
219
- <title>Designing with Data</title>
220
- <id>http://shop.oreilly.com/product/0636920026228.do</id>
221
- <link rel="alternate" href="http://feedproxy.google.com/~r/oreilly/upcomingbooks/~3/qEAp7wWNA4E/0636920026228.do" />
222
- <summary type="html">
223
- &lt;a href='http://shop.oreilly.com/product/0636920026228.do'&gt;&lt;img src='http://covers.oreillystatic.com/images/9781449334833/bkt.gif' style='float:left;width:85px;padding:0 10px 10px 0;' /&gt;&lt;/a&gt;&lt;p&gt;On the surface, design practices and data science may not seem like obvious partners. But these disciplines actually work toward the same goal, helping designers and product managers understand users so they can craft elegant digital experiences. This practical guide shows you how to conduct data-driven A/B testing for making design decisions on everything from small tweaks to large-scale UX concepts. Complete with real-world examples, this book shows you how to make data-driven design part of your product design workflow.&lt;/p&gt;
224
- &lt;img src="http://feeds.feedburner.com/~r/oreilly/upcomingbooks/~4/qEAp7wWNA4E" height="1" width="1" alt=""/&gt;</summary>
225
- <author><name>O'Reilly Media, Inc.</name></author>
226
- <updated>2017-03-29T19:20:28-08:27</updated>
227
- <feedburner:origLink>http://shop.oreilly.com/product/0636920026228.do</feedburner:origLink></entry>
228
-
229
- <entry>
230
- <title>SVG Animations</title>
231
- <id>http://shop.oreilly.com/product/0636920045335.do</id>
232
- <link rel="alternate" href="http://feedproxy.google.com/~r/oreilly/upcomingbooks/~3/SRiSgUwLknc/0636920045335.do" />
233
- <summary type="html">
234
- &lt;a href='http://shop.oreilly.com/product/0636920045335.do'&gt;&lt;img src='http://covers.oreillystatic.com/images/9781491939703/bkt.gif' style='float:left;width:85px;padding:0 10px 10px 0;' /&gt;&lt;/a&gt;&lt;div&gt;&lt;p&gt;SVG is extremely powerful, with its reduced HTTP requests and crispness on any display. It becomes increasingly more interesting as you explore its capabilities for responsive animation and performance boons. When you animate SVG, you must be aware of normal image traits like composition, color, implementation, and optimization. But when you animate, it increases the complexity of each of these factors exponentially.&lt;/p&gt;&lt;p&gt;This practical book takes a deep dive into how you can to solve these problems with stability, performance, and creativity in mind.&lt;/p&gt;&lt;/div&gt;
235
- &lt;img src="http://feeds.feedburner.com/~r/oreilly/upcomingbooks/~4/SRiSgUwLknc" height="1" width="1" alt=""/&gt;</summary>
236
- <author><name>O'Reilly Media, Inc.</name></author>
237
- <updated>2017-03-17T19:20:01-08:28</updated>
238
- <feedburner:origLink>http://shop.oreilly.com/product/0636920045335.do</feedburner:origLink></entry>
239
-
240
- <entry>
241
- <title>Flexbox in CSS</title>
242
- <id>http://shop.oreilly.com/product/0636920066682.do</id>
243
- <link rel="alternate" href="http://feedproxy.google.com/~r/oreilly/upcomingbooks/~3/cqZb-cb4A18/0636920066682.do" />
244
- <summary type="html">
245
- &lt;a href='http://shop.oreilly.com/product/0636920066682.do'&gt;&lt;img src='http://covers.oreillystatic.com/images/9781491981429/bkt.gif' style='float:left;width:85px;padding:0 10px 10px 0;' /&gt;&lt;/a&gt;&lt;p&gt;Layout designers rejoice: CSS finally has an update that will make your lives easier. Flexible box layout, often called Flexbox, frees you from the challenges of creating layouts with floats and padding? and lets you specify containers and their contents instead. The new model means you can specify the directions in which material flows, how content wraps, and the ways components can expand to fill a space. Whether you've been creating large sites or small, fixed sites or responsive sites, flexbox will simplify your work.&lt;/p&gt;
246
- &lt;img src="http://feeds.feedburner.com/~r/oreilly/upcomingbooks/~4/cqZb-cb4A18" height="1" width="1" alt=""/&gt;</summary>
247
- <author><name>O'Reilly Media, Inc.</name></author>
248
- <updated>2017-03-07T19:20:14-08:29</updated>
249
- <feedburner:origLink>http://shop.oreilly.com/product/0636920066682.do</feedburner:origLink></entry>
250
-
251
- <entry>
252
- <title>Creative Coding and Data Visualization with p5.js</title>
253
- <id>http://shop.oreilly.com/product/0636920048572.do</id>
254
- <link rel="alternate" href="http://feedproxy.google.com/~r/oreilly/upcomingbooks/~3/4MKtz7Bp96w/0636920048572.do" />
255
- <summary type="html">
256
- &lt;a href='http://shop.oreilly.com/product/0636920048572.do'&gt;&lt;img src='http://covers.oreillystatic.com/images/9781491951903/bkt.gif' style='float:left;width:85px;padding:0 10px 10px 0;' /&gt;&lt;/a&gt;&lt;div&gt;&lt;p&gt;Good news for artists, designers, educators, and beginners with no programming experience: with the p5.js JavaScript library and this hands-on guide, you&amp;#8217;ll use a sketchpad approach learn the fundamentals of computer programming and data visualization right in your own web browser.&lt;/p&gt;&lt;p&gt;p5 is the native JavaScript alternative to Processing, the language and environment that helps non-programmers learn how to program with the aid of visual feedback. While Processing provides its own sketchpad environment, p5 and its full set of drawing tools enable you to sketch in the browser.Author Scott Murray provides the first in-depth book on p5 to cover all of the exciting possibilities of using Processing-like code on the Web.&lt;/p&gt;&lt;/div&gt;
257
- &lt;img src="http://feeds.feedburner.com/~r/oreilly/upcomingbooks/~4/4MKtz7Bp96w" height="1" width="1" alt=""/&gt;</summary>
258
- <author><name>O'Reilly Media, Inc.</name></author>
259
- <updated>2017-03-06T13:20:11-08:30</updated>
260
- <feedburner:origLink>http://shop.oreilly.com/product/0636920048572.do</feedburner:origLink></entry>
261
-
262
- <entry>
263
- <title>Programming Phoenix 1.3</title>
264
- <id>http://shop.oreilly.com/product/9781680502268.do</id>
265
- <link rel="alternate" href="http://feedproxy.google.com/~r/oreilly/upcomingbooks/~3/2UjzTLS9RBE/9781680502268.do" />
266
- <summary type="html">
267
- &lt;a href='http://shop.oreilly.com/product/9781680502268.do'&gt;&lt;img src='http://covers.oreillystatic.com/images/9781680502268/bkt.gif' style='float:left;width:85px;padding:0 10px 10px 0;' /&gt;&lt;/a&gt;&lt;p&gt;Don't accept the compromise between fast and beautiful: you can have it all. Phoenix creator Chris McCord, Elixir creator Jose Valim, and award-winning author Bruce Tate walk you through building an application that's fast and reliable. At every step, you'll learn from the Phoenix creators not just what to do, but why. Packed with insider insights and completely updated for Phoenix 1.3, this definitive guide will be your constant companion in your journey from Phoenix novice to expert, as you build the next generation of web applications.&lt;/p&gt;
268
- &lt;img src="http://feeds.feedburner.com/~r/oreilly/upcomingbooks/~4/2UjzTLS9RBE" height="1" width="1" alt=""/&gt;</summary>
269
- <author><name>O'Reilly Media, Inc.</name></author>
270
- <updated>2017-03-01T03:20:21-08:31</updated>
271
- <feedburner:origLink>http://shop.oreilly.com/product/9781680502268.do</feedburner:origLink></entry>
272
-
273
- <entry>
274
- <title>Jump Start Adobe Experience Design CC</title>
275
- <id>http://shop.oreilly.com/product/9780995382619.do</id>
276
- <link rel="alternate" href="http://feedproxy.google.com/~r/oreilly/upcomingbooks/~3/xo_-OtHLR44/9780995382619.do" />
277
- <summary type="html">
278
- &lt;a href='http://shop.oreilly.com/product/9780995382619.do'&gt;&lt;img src='http://covers.oreillystatic.com/images/9780995382619/bkt.gif' style='float:left;width:85px;padding:0 10px 10px 0;' /&gt;&lt;/a&gt;&lt;div&gt;&lt;p&gt;Get a Jump Start on the up and coming UX design and prototyping power tool, Experience Design!&lt;/p&gt; &lt;p&gt;Experience Design CC (also known as XD) is a brand new design tool from Adobe. With a clean, uncluttered UI and a raft of powerful features--such as live preview, Repeat Grids, artboards, symbols and collaboration tools--XD is designed from the ground up to streamline the UX design process. It makes creating interactive, sharable prototypes a snap!&lt;/p&gt; &lt;p&gt;This book provides a rapid and practical introduction to using Adobe XD for UX design and prototyping. You'll:&lt;/p&gt; &lt;ul&gt;&lt;li&gt;Get to grips with XD's clean UI and efficient keyboard shortcuts&lt;/li&gt;&lt;li&gt;Use XD' powerful tools, such as repeat grid and symbols, to rapidly create wireframes and prototypes&lt;/li&gt;&lt;li&gt;Create interactive prototypes with ease&lt;/li&gt;&lt;li&gt;Collaborate with stakeholders using built-in sharing and feedback tools&lt;/li&gt;&lt;li&gt;And more!&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;
279
- &lt;img src="http://feeds.feedburner.com/~r/oreilly/upcomingbooks/~4/xo_-OtHLR44" height="1" width="1" alt=""/&gt;</summary>
280
- <author><name>O'Reilly Media, Inc.</name></author>
281
- <updated>2017-03-01T03:20:21-08:32</updated>
282
- <feedburner:origLink>http://shop.oreilly.com/product/9780995382619.do</feedburner:origLink></entry>
283
-
284
- <entry>
285
- <title>The Arduino Inventor's Guide</title>
286
- <id>http://shop.oreilly.com/product/9781593276522.do</id>
287
- <link rel="alternate" href="http://feedproxy.google.com/~r/oreilly/upcomingbooks/~3/vGer9GHx9YA/9781593276522.do" />
288
- <summary type="html">
289
- &lt;a href='http://shop.oreilly.com/product/9781593276522.do'&gt;&lt;img src='http://covers.oreillystatic.com/images/9781593276522/bkt.gif' style='float:left;width:85px;padding:0 10px 10px 0;' /&gt;&lt;/a&gt;&lt;p&gt;&lt;i&gt;The Arduino Inventor's Guide&lt;/i&gt; is a hands-on introduction to exploring electronics with Arduino, for total beginners.&lt;/p&gt;
290
- &lt;img src="http://feeds.feedburner.com/~r/oreilly/upcomingbooks/~4/vGer9GHx9YA" height="1" width="1" alt=""/&gt;</summary>
291
- <author><name>O'Reilly Media, Inc.</name></author>
292
- <updated>2017-03-01T03:20:21-08:33</updated>
293
- <feedburner:origLink>http://shop.oreilly.com/product/9781593276522.do</feedburner:origLink></entry>
294
-
295
- <entry>
296
- <title>Woodworking for Young Makers</title>
297
- <id>http://shop.oreilly.com/product/0636920114031.do</id>
298
- <link rel="alternate" href="http://feedproxy.google.com/~r/oreilly/upcomingbooks/~3/KbQ6IOo1e7M/0636920114031.do" />
299
- <summary type="html">
300
- &lt;a href='http://shop.oreilly.com/product/0636920114031.do'&gt;&lt;img src='http://covers.oreillystatic.com/images/9781680452815/bkt.gif' style='float:left;width:85px;padding:0 10px 10px 0;' /&gt;&lt;/a&gt;&lt;p&gt;Learning to be a maker has never been more fun. Full-color cartoons and drawings lead you through the steps needed for making a wizard wand, a sanding block, a charging station for your phone or tablet, and a sturdy box with a secret compartment. You'll learn how to choose and use the right tools, measure and cut properly, sand, glue, and finish your projects for great-looking pieces. This is the perfect guide for young people who want to try their hand at building things with wood in a home or school workshop. It teaches fundamental skills and unlocks creativity. Highly visual and illustrated with engaging cartoons, the book is visual guide that focuses more heavily on graphics than on words. No prior experience or knowledge of tools is required. Everything you need to know is included in the text.&lt;/p&gt;
301
- &lt;img src="http://feeds.feedburner.com/~r/oreilly/upcomingbooks/~4/KbQ6IOo1e7M" height="1" width="1" alt=""/&gt;</summary>
302
- <author><name>O'Reilly Media, Inc.</name></author>
303
- <updated>2017-02-02T03:20:09-08:34</updated>
304
- <feedburner:origLink>http://shop.oreilly.com/product/0636920114031.do</feedburner:origLink></entry>
305
-
306
- <entry>
307
- <title>Electricity for Young Makers</title>
308
- <id>http://shop.oreilly.com/product/9781680452860.do</id>
309
- <link rel="alternate" href="http://feedproxy.google.com/~r/oreilly/upcomingbooks/~3/2WAu_e82peQ/9781680452860.do" />
310
- <summary type="html">
311
- &lt;a href='http://shop.oreilly.com/product/9781680452860.do'&gt;&lt;img src='http://covers.oreillystatic.com/images/9781680452860/bkt.gif' style='float:left;width:85px;padding:0 10px 10px 0;' /&gt;&lt;/a&gt;&lt;p&gt;Learn about electricity while having fun! Lavishly illustrated with cartoons and drawings, this book guides the reader through six hands-on projects. Discover the electrical potential lurking in a stack of pennies - enough to light up an LED or power a calculator! Launch a flying LED copter into the air. Make a speaker that plays music from an index card. Build working motors from a battery, a magnet, and some copper wire. Have fun while learning about and exploring the world of electricity. The projects in this book illuminate such concepts as electric circuits, electromagnetism, electroluminescence, the Lorentz force and more. You'll be amazed by the results you get with a handful of simple materials. No prior experience is required. Everything you need to know is included in the text.&lt;/p&gt;
312
- &lt;img src="http://feeds.feedburner.com/~r/oreilly/upcomingbooks/~4/2WAu_e82peQ" height="1" width="1" alt=""/&gt;</summary>
313
- <author><name>O'Reilly Media, Inc.</name></author>
314
- <updated>2017-02-02T03:20:09-08:35</updated>
315
- <feedburner:origLink>http://shop.oreilly.com/product/9781680452860.do</feedburner:origLink></entry>
316
-
317
- <entry>
318
- <title>Computers for Seniors</title>
319
- <id>http://shop.oreilly.com/product/9781593277925.do</id>
320
- <link rel="alternate" href="http://feedproxy.google.com/~r/oreilly/upcomingbooks/~3/1oJFKpPjRo4/9781593277925.do" />
321
- <summary type="html">
322
- &lt;a href='http://shop.oreilly.com/product/9781593277925.do'&gt;&lt;img src='http://covers.oreillystatic.com/images/9781593277925/bkt.gif' style='float:left;width:85px;padding:0 10px 10px 0;' /&gt;&lt;/a&gt;&lt;p&gt;&lt;i&gt;Computers for Seniors&lt;/i&gt; is a step-by-step guide to learning basic computer skills.&lt;/p&gt;
323
- &lt;img src="http://feeds.feedburner.com/~r/oreilly/upcomingbooks/~4/1oJFKpPjRo4" height="1" width="1" alt=""/&gt;</summary>
324
- <author><name>O'Reilly Media, Inc.</name></author>
325
- <updated>2017-02-01T03:20:16-08:36</updated>
326
- <feedburner:origLink>http://shop.oreilly.com/product/9781593277925.do</feedburner:origLink></entry>
327
-
328
- <entry>
329
- <title>The Customer-Driven Playbook</title>
330
- <id>http://shop.oreilly.com/product/0636920066606.do</id>
331
- <link rel="alternate" href="http://feedproxy.google.com/~r/oreilly/upcomingbooks/~3/eZQ9BXNA8QA/0636920066606.do" />
332
- <summary type="html">
333
- &lt;a href='http://shop.oreilly.com/product/0636920066606.do'&gt;&lt;img src='http://covers.oreillystatic.com/images/9781491981207/bkt.gif' style='float:left;width:85px;padding:0 10px 10px 0;' /&gt;&lt;/a&gt;&lt;p&gt;&lt;i&gt;The Customer-Driven Playbook&lt;/i&gt; details a complete end-to-end process to help large teams and organizations learn from their customers, conceptualize new ideas, and build products their customers will love. By consolidating theory from various lean books into a step-by-step playbook, this book provides a way to operationalize and scale lean principles across teams, divisions, disciplines, and organizations. You can start at any stage in your product lifecycle and experience results that will have a strong impact on the product strategy within your organization.&lt;/p&gt;
334
- &lt;img src="http://feeds.feedburner.com/~r/oreilly/upcomingbooks/~4/eZQ9BXNA8QA" height="1" width="1" alt=""/&gt;</summary>
335
- <author><name>O'Reilly Media, Inc.</name></author>
336
- <updated>2017-01-31T19:20:04-08:37</updated>
337
- <feedburner:origLink>http://shop.oreilly.com/product/0636920066606.do</feedburner:origLink></entry>
338
-
339
- <entry>
340
- <title>Ansible: Up and Running</title>
341
- <id>http://shop.oreilly.com/product/0636920065500.do</id>
342
- <link rel="alternate" href="http://feedproxy.google.com/~r/oreilly/upcomingbooks/~3/c1mc5ML-Iwg/0636920065500.do" />
343
- <summary type="html">
344
- &lt;a href='http://shop.oreilly.com/product/0636920065500.do'&gt;&lt;img src='http://covers.oreillystatic.com/images/9781491979808/bkt.gif' style='float:left;width:85px;padding:0 10px 10px 0;' /&gt;&lt;/a&gt;&lt;p&gt;Among the many configuration management tools available, Ansible has some distinct advantages&amp;#8212;it&amp;#8217;s minimal in nature, you don&amp;#8217;t need to install anything on your nodes, and it has an easy learning curve. With this updated second edition, you&amp;#8217;ll learn how to be productive with this tool quickly, whether you&amp;#8217;re a developer deploying code to production or a system administrator looking for a better automation solution.&lt;/p&gt;
345
- &lt;img src="http://feeds.feedburner.com/~r/oreilly/upcomingbooks/~4/c1mc5ML-Iwg" height="1" width="1" alt=""/&gt;</summary>
346
- <author><name>O'Reilly Media, Inc.</name></author>
347
- <updated>2017-01-31T13:20:09-08:38</updated>
348
- <feedburner:origLink>http://shop.oreilly.com/product/0636920065500.do</feedburner:origLink></entry>
349
-
350
- <entry>
351
- <title>Rails, Angular, Postgres, and Bootstrap</title>
352
- <id>http://shop.oreilly.com/product/9781680502206.do</id>
353
- <link rel="alternate" href="http://feedproxy.google.com/~r/oreilly/upcomingbooks/~3/M2jG6BB8pKQ/9781680502206.do" />
354
- <summary type="html">
355
- &lt;a href='http://shop.oreilly.com/product/9781680502206.do'&gt;&lt;img src='http://covers.oreillystatic.com/images/9781680502206/bkt.gif' style='float:left;width:85px;padding:0 10px 10px 0;' /&gt;&lt;/a&gt;&lt;p&gt;Achieve awesome user experiences and performance with simple, maintainable code! Embrace the full stack of web development, from styling with Bootstrap, building an interactive user interface with Angular 2, to storing data quickly and reliably in PostgreSQL. With this fully revised new edition, take a holistic view of full-stack development to create usable, high-performing applications with Rails 5.&lt;/p&gt;
356
- &lt;img src="http://feeds.feedburner.com/~r/oreilly/upcomingbooks/~4/M2jG6BB8pKQ" height="1" width="1" alt=""/&gt;</summary>
357
- <author><name>O'Reilly Media, Inc.</name></author>
358
- <updated>2017-01-27T13:20:05-08:39</updated>
359
- <feedburner:origLink>http://shop.oreilly.com/product/9781680502206.do</feedburner:origLink></entry>
360
-
361
- </feed>
362
-
363
- ---
364
-
365
- feed.format: atom
366
- feed.title: O'Reilly Media, Inc. Upcoming Titles
367
- feed.subtitle: O'Reilly's Upcoming Titles: Books, Ebooks, Videos, and More
368
- feed.url: http://shop.oreilly.com/
369
- feed.feed_url: http://feeds.feedburner.com/oreilly/upcomingbooks
370
- feed.updated: >>> DateTime.new( 2017, 5, 25, 19, 20, 21, '-8' )
371
-
372
- feed.items.size: >>> 30
373
-
374
- feed.items[0].title: Fundamentals of Deep Learning
375
- feed.items[0].url: http://feedproxy.google.com/~r/oreilly/upcomingbooks/~3/HTGrIycm3vo/0636920039709.do
376
- feed.items[0].id: http://shop.oreilly.com/product/0636920039709.do
377
- feed.items[0].updated: >>> DateTime.new( 2017, 5, 25, 19, 20, 21, '-8:10')
378
-
379
- feed.items[1].title: High Performance Spark
380
- feed.items[1].url: http://feedproxy.google.com/~r/oreilly/upcomingbooks/~3/mpfK4huQgiI/0636920046967.do
381
- feed.items[1].id: http://shop.oreilly.com/product/0636920046967.do
382
- feed.items[1].updated: >>> DateTime.new( 2017, 5, 25, 13, 20, 34, '-8:11' )
383
-
384
-
385
- >>> pp feed.items[0].summary
386
- >>> pp feed.items[0].updated
387
- >>> pp feed.items[1].updated