goodreads 0.8.0 → 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6ea0e771d6f0bb4fe73d87bdc54b96f97c26e58e2dca54c0d956f73263acf557
4
- data.tar.gz: 78e582d52e5ddfee249448c3f5bef36e8f56e165c5d241e3f8cb4c9633d6730a
3
+ metadata.gz: 328c7dcd4de9aaf162c5dba7982e50451abfe96ca12d078367a9dd0293b5d6da
4
+ data.tar.gz: 413ab442ee0b50901b3e519e1d3cbd3bda0f18d04e28fb98ae65676b73399696
5
5
  SHA512:
6
- metadata.gz: 70521658f5c0df28b749559f336ed4c6e418257914fa7b3e4572e88166a1347eca0197422ba8c48bbefc4e9c55ca57524aeee83ae6f2b94f41b1846e90d55f70
7
- data.tar.gz: d309c6a3874443910a06b7d156a87f29764be70ac6cb79bad8692b0b1436958b31730f3673bf473f4be569b4dda8a321459d53a30e4e0fad098058f9e5734925
6
+ metadata.gz: 74594d009980dedd882344a3674da6bc5393ad399861b1cd1a0a1a59e112586c15975be0d2f691debf287074795e0e52e00035aac44575bbd1b710842e69c794
7
+ data.tar.gz: e355ba7c55d71f9fb1b3ac62b549eba718468f1cab8e8b8a2c922401da594c63927c9b060f305ad2c16439cbb1ba24684a866dcd486133f2d0d13969d94bd960
data/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2011-2018 Dan Sosedoff <dan.sosedoff@gmail.com>
3
+ Copyright (c) 2011-2020 Dan Sosedoff <dan.sosedoff@gmail.com>
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy of
6
6
  this software and associated documentation files (the "Software"), to deal in
@@ -17,4 +17,4 @@ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17
17
  FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18
18
  COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19
19
  IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20
- CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  Ruby wrapper to communicate with Goodreads API.
4
4
 
5
+ **NOTE: The Goodreads API [is being discontinued](https://www.goodreads.com/api).**
6
+
5
7
  ## Requirements
6
8
 
7
9
  - Ruby 1.9.3+
@@ -110,6 +112,17 @@ author.name # => author name
110
112
  author.link # => link to author's Goodreads page
111
113
  ```
112
114
 
115
+ Look up books by an author:
116
+
117
+ ```ruby
118
+ author = client.author_Book("id")
119
+
120
+ author.id # => author id
121
+ author.name # => author name
122
+ author.link # => link to author's Goodreads page
123
+ author.books # => array of books by this author
124
+ ```
125
+
113
126
  ### Reviews
114
127
 
115
128
  Pull recent reviews:
@@ -216,5 +229,3 @@ You're welcome to submit patches and new features.
216
229
  ## License
217
230
 
218
231
  The MIT License (MIT)
219
-
220
- Copyright (c) 2011-2018 Dan Sosedoff, <dan.sosedoff@gmail.com>
data/goodreads.gemspec CHANGED
@@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
17
17
  spec.add_development_dependency "yard", "~> 0.9"
18
18
 
19
19
  spec.add_runtime_dependency "rest-client", "~> 2.0"
20
- spec.add_runtime_dependency "hashie", "~> 2.0"
20
+ spec.add_runtime_dependency "hashie", "~> 4.1.0"
21
21
  spec.add_runtime_dependency "activesupport", ">= 3.0"
22
22
  spec.add_runtime_dependency "i18n", ">= 0.6", "< 2"
23
23
  spec.add_runtime_dependency "oauth", "~> 0.4"
@@ -8,6 +8,14 @@ module Goodreads
8
8
  Hashie::Mash.new(data["author"])
9
9
  end
10
10
 
11
+ # Get an author's books
12
+ #
13
+ def author_books(id, params = {})
14
+ params[:id] = id
15
+ data = request("/author/list", params)
16
+ Hashie::Mash.new(data["author"])
17
+ end
18
+
11
19
  # Search for an author by name
12
20
  #
13
21
  def author_by_name(name, params = {})
@@ -1,3 +1,3 @@
1
1
  module Goodreads
2
- VERSION = "0.8.0"
2
+ VERSION = "0.9.0"
3
3
  end
data/spec/client_spec.rb CHANGED
@@ -262,6 +262,23 @@ describe Goodreads::Client do
262
262
  end
263
263
  end
264
264
 
265
+ describe "#author_books" do
266
+ before do
267
+ stub_with_key_get("/author/list", { id: "18541" }, "author_books.xml")
268
+ end
269
+
270
+ it "returns author's books" do
271
+ author = client.author_books("18541")
272
+
273
+ expect(author).to be_a(Hashie::Mash)
274
+ expect(author.id).to eq("18541")
275
+ expect(author.name).to eq("Tim O'Reilly")
276
+ expect(author.link).to eq("https://www.goodreads.com/author/show/18541.Tim_O_Reilly")
277
+
278
+ expect(author.books.book.size).to eq(30)
279
+ end
280
+ end
281
+
265
282
  describe "#user" do
266
283
  before { stub_with_key_get("/user/show", { id: "878044" }, "user.xml") }
267
284
 
@@ -0,0 +1,1338 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <GoodreadsResponse>
3
+ <Request>
4
+ <authentication>true</authentication>
5
+ <key><![CDATA[SECRET_KEY]]></key>
6
+ <method><![CDATA[author_list]]></method>
7
+ </Request>
8
+ <author>
9
+ <id>18541</id>
10
+ <name>Tim O&apos;Reilly</name>
11
+ <link><![CDATA[https://www.goodreads.com/author/show/18541.Tim_O_Reilly]]></link>
12
+ <books start="1" end="30" total="57">
13
+ <book>
14
+ <id type="integer">50731895</id>
15
+ <isbn nil="true"/>
16
+ <isbn13 nil="true"/>
17
+ <text_reviews_count type="integer">0</text_reviews_count>
18
+ <uri>kca://book/amzn1.gr.book.v3.lM1L2eQ4e_kJh9tB</uri>
19
+ <title>Tribe of Mentors: Short Life Advice from the Best in the World</title>
20
+ <title_without_series>Tribe of Mentors: Short Life Advice from the Best in the World</title_without_series>
21
+ <image_url>https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1580496015l/50731895._SX98_.jpg</image_url>
22
+ <small_image_url>https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1580496015l/50731895._SX50_.jpg</small_image_url>
23
+ <large_image_url/>
24
+ <link>https://www.goodreads.com/book/show/50731895-tribe-of-mentors</link>
25
+ <num_pages></num_pages>
26
+ <format>Audible Audio</format>
27
+ <edition_information>Unabridged</edition_information>
28
+ <publisher>Audible Studios</publisher>
29
+ <publication_day>17</publication_day>
30
+ <publication_year>2020</publication_year>
31
+ <publication_month>3</publication_month>
32
+ <average_rating>4.15</average_rating>
33
+ <ratings_count>8002</ratings_count>
34
+ <description>&lt;div&gt;&lt;b&gt;We All Need Mentors. Here Are More than 100 of the World’s Best.&lt;/b&gt;&lt;br /&gt;&lt;br /&gt; When facing life’s questions, who do you turn to for advice? We all need mentors, particularly when the odds seem stacked against us. To find his own, best-selling author Tim Ferriss tracked down more than 100 eclectic experts to help him, and you, navigate life. Through short, action-packed profiles, he shares their secrets for success, happiness, meaning, and more. No matter the challenge or opportunity, something in these pages can help.&lt;br /&gt; &lt;br /&gt; You will learn:&lt;br /&gt;• The three books legendary investor Ray Dalio recommends most often&lt;br /&gt;• Lessons and tips from elite athletes like Maria Sharapova, Kelly Slater, Dara Torres, Tony Hawk, Dan Gable, and more&lt;br /&gt;• How and why Facebook co-founder Dustin Moskovitz says no to most incoming requests&lt;br /&gt;• The mental models of poker phenoms Daniel Negreanu, Annie Duke, Fedor Holz, and Liv Boeree&lt;br /&gt;• The meditation and mindfulness practices of David Lynch, Jimmy Fallon, Sharon Salzberg, Rick Rubin, Richa Chadha, Sarah Elizabeth Lewis, and others&lt;br /&gt;• The high-school loss that motivated actor Terry Crews for life . . . and how you can use the lesson&lt;br /&gt;• Why TED curator Chris Anderson thinks “pursue your passion” is terrible advice&lt;br /&gt;• Why renowned designer Debbie Millman believes in therapy but not in work-life balance&lt;br /&gt;• How Yuval Noah Harari's &lt;i&gt;Sapiens &lt;/i&gt;went from repeated rejections to global mega-bestseller&lt;br /&gt;• The new beliefs, behaviors, and habits that have most helped cryptocurrency icons (founders of Ethereum, Zcash, etc.) in the last five years&lt;br /&gt;• Why Arianna Huffington recommends that you regularly scramble apps on your phone&lt;br /&gt;• The “bar complex” exercise that keeps country star Tim McGraw young&lt;br /&gt;• Why bestselling author Steven Pressfield believes college students should drive trucks and become cowboys&lt;br /&gt;• Why comedian Patton Oswalt wishes at least one catastrophic failure on anyone in the arts&lt;br /&gt;• Astrophysicist Janna Levin’s unique reframe that helps her see obstacles as opportunities&lt;br /&gt;• Why actor Ben Stiller likes to dunk his head in a bucket of ice in the morning&lt;br /&gt;• Why Dropbox co-founder Drew Houston’s cheat sheet for his younger self would include a tennis ball, a circle, and the number 30,000.&lt;br /&gt; &lt;br /&gt; Other mentors include Neil Gaiman, Ashton Kutcher, Dita Von Teese, Marc Benioff, Evan Williams, Brandon Stanton, Esther Perel, Darren Aronofsky, Steve Aoki, Joseph Gordon-Levitt, Stephanie McMahon, Craig Newmark, Gretchen Rubin, Bear Grylls, Laura Walker, Mr. Money Mustache (Pete Adeney), Linda Rottenberg, Jesse Williams, and many more.&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;©2017 Timothy Ferriss (P)2019 Audible, Inc.</description>
35
+ <authors>
36
+ <author>
37
+ <id>210456</id>
38
+ <name>Timothy Ferriss</name>
39
+ <role>Narrator</role>
40
+ <image_url nophoto='false'>
41
+ <![CDATA[https://images.gr-assets.com/authors/1400530891p5/210456.jpg]]>
42
+ </image_url>
43
+ <small_image_url nophoto='false'>
44
+ <![CDATA[https://images.gr-assets.com/authors/1400530891p2/210456.jpg]]>
45
+ </small_image_url>
46
+ <link><![CDATA[https://www.goodreads.com/author/show/210456.Timothy_Ferriss]]></link>
47
+ <average_rating>3.91</average_rating>
48
+ <ratings_count>221595</ratings_count>
49
+ <text_reviews_count>10268</text_reviews_count>
50
+ </author>
51
+ </authors>
52
+ <published>2020</published>
53
+ <work> <id>57830167</id>
54
+ <uri>kca://work/amzn1.gr.work.v1.JoDKuHlOZNMNwPcEEgLE_g</uri>
55
+ </work></book>
56
+
57
+ <book>
58
+ <id type="integer">104744</id>
59
+ <isbn>1565927249</isbn>
60
+ <isbn13>9781565927247</isbn13>
61
+ <text_reviews_count type="integer">9</text_reviews_count>
62
+ <uri>kca://book/amzn1.gr.book.v1.kHUUCkrx4O11cXf9i_qQCQ</uri>
63
+ <title>The Cathedral &amp; the Bazaar: Musings on Linux and Open Source by an Accidental Revolutionary</title>
64
+ <title_without_series>The Cathedral &amp; the Bazaar: Musings on Linux and Open Source by an Accidental Revolutionary</title_without_series>
65
+ <image_url>https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png</image_url>
66
+ <small_image_url>https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png</small_image_url>
67
+ <large_image_url/>
68
+ <link>https://www.goodreads.com/book/show/104744.The_Cathedral_the_Bazaar</link>
69
+ <num_pages>279</num_pages>
70
+ <format>Hardcover</format>
71
+ <edition_information/>
72
+ <publisher>O'Reilly Media</publisher>
73
+ <publication_day>8</publication_day>
74
+ <publication_year>1999</publication_year>
75
+ <publication_month>10</publication_month>
76
+ <average_rating>3.80</average_rating>
77
+ <ratings_count>3651</ratings_count>
78
+ <description>"This is how we did it." --Linus Torvalds, creator of the Linux kernel&lt;br /&gt;&lt;br /&gt;It all started with a series of odd statistics. The leading challenger to Microsoft's stranglehold on the computer industry is an operating system called Linux, the product of thousands of volunteer programmers who collaborate over the Internet. The software behind a majority of all the world's web sites doesn't come from a big company either, but from a loosely coordinated group of volunteer programmers called the Apache Group. The Internet itself, and much of its core software, was developed through a process of networked collaboration.&lt;br /&gt;&lt;br /&gt;The key to these stunning successes is a movement that has come to be called open source, because it depends on the ability of programmers to freely share their program source code so that others can improve it. In 1997, Eric S. Raymond outlined the core principles of this movement in a manifesto called "The Cathedral and the Bazaar," which was published and freely redistributed over the Internet.&lt;br /&gt;&lt;br /&gt;Mr. Raymond's thinking electrified the computer industry. He argues that the development of the Linux operating system by a loose confederation of thousands of programmers--without central project management or control--turns on its head everything we thought we knew about software project management. Internet-enabled collaboration and free information sharing, not monopolistic control, is the key to innovation and product quality.&lt;br /&gt;&lt;br /&gt;This idea was interesting to more than programmers and software project leaders. It suggested a whole new way of doing business, and the possibility of unprecedented shifts in the power structures of the computer industry.&lt;br /&gt;&lt;br /&gt;The rush to capitalize on the idea of open source started with Netscape's decision to release its flagship Netscape Navigator product under open source licensing terms in early 1998. Before long, Fortune 500 companies like Intel, IBM, and Oracle were joining the party. By August 1999, when the leading Linux distributor, Red Hat Software, made its hugely successful public stock offering, it had become clear that open source was "the next big thing" in the computer industry.&lt;br /&gt;&lt;br /&gt;This revolutionary book starts out with "A Brief History of Hackerdom"--the historical roots of the open-source movement--and details the events that led to the recognition of the power of open source. It contains the full text of "The Cathedral &amp;amp; the Bazaar," updated and expanded for this book, plus Mr. Raymond's other key essays on the social and economic dynamics of open source software development.&lt;br /&gt;&lt;br /&gt;Open source is the competitive advantage in the Internet Age. &lt;i&gt;The Cathedral &amp;amp; the Bazaar&lt;/i&gt; is a must for anyone who cares about the computer industry or the dynamics of the information economy. Already, billions of dollars have been made and lost based on the ideas in this book. Its conclusions will be studied, debated, and implemented for years to come.</description>
79
+ <authors>
80
+ <author>
81
+ <id>18542</id>
82
+ <name>Eric S. Raymond</name>
83
+ <role></role>
84
+ <image_url nophoto='false'>
85
+ <![CDATA[https://images.gr-assets.com/authors/1265508525p5/18542.jpg]]>
86
+ </image_url>
87
+ <small_image_url nophoto='false'>
88
+ <![CDATA[https://images.gr-assets.com/authors/1265508525p2/18542.jpg]]>
89
+ </small_image_url>
90
+ <link><![CDATA[https://www.goodreads.com/author/show/18542.Eric_S_Raymond]]></link>
91
+ <average_rating>3.88</average_rating>
92
+ <ratings_count>5675</ratings_count>
93
+ <text_reviews_count>287</text_reviews_count>
94
+ </author>
95
+ </authors>
96
+ <published>1999</published>
97
+ <work> <id>100993</id>
98
+ <uri>kca://work/amzn1.gr.work.v1.tViXLaH3BL0v38d6PcdEOQ</uri>
99
+ </work></book>
100
+
101
+ <book>
102
+ <id type="integer">34017076</id>
103
+ <isbn>0062565710</isbn>
104
+ <isbn13>9780062565716</isbn13>
105
+ <text_reviews_count type="integer">161</text_reviews_count>
106
+ <uri>kca://book/amzn1.gr.book.v1.k3Tv1uQYB_qrxrBehHJ2qw</uri>
107
+ <title>WTF?: What's the Future and Why It's Up to Us</title>
108
+ <title_without_series>WTF?: What's the Future and Why It's Up to Us</title_without_series>
109
+ <image_url>https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1502106956l/34017076._SX98_.jpg</image_url>
110
+ <small_image_url>https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1502106956l/34017076._SY75_.jpg</small_image_url>
111
+ <large_image_url/>
112
+ <link>https://www.goodreads.com/book/show/34017076-wtf</link>
113
+ <num_pages>448</num_pages>
114
+ <format>Hardcover</format>
115
+ <edition_information/>
116
+ <publisher>Harper Business</publisher>
117
+ <publication_day>10</publication_day>
118
+ <publication_year>2017</publication_year>
119
+ <publication_month>10</publication_month>
120
+ <average_rating>4.13</average_rating>
121
+ <ratings_count>1342</ratings_count>
122
+ <description>WTF? can be an expression of amazement or an expression of dismay. In today’s economy, we have far too much dismay along with our amazement, and technology bears some of the blame. In this combination of memoir, business strategy guide, and call to action, Tim O'Reilly, Silicon Valley’s leading intellectual and the founder of O’Reilly Media, explores the upside and the potential downsides of today's WTF? technologies. &lt;br /&gt;&lt;br /&gt;What is the future when an increasing number of jobs can be performed by intelligent machines instead of people, or done only by people in partnership with those machines? What happens to our consumer based societies—to workers and to the companies that depend on their purchasing power? Is income inequality and unemployment an inevitable consequence of technological advancement, or are there paths to a better future? What will happen to business when technology-enabled networks and marketplaces are better at deploying talent than traditional companies? How should companies organize themselves to take advantage of these new tools? What’s the future of education when on-demand learning outperforms traditional institutions? How can individuals continue to adapt and retrain? Will the fundamental social safety nets of the developed world survive the transition, and if not, what will replace them? &lt;br /&gt;&lt;br /&gt;O'Reilly is "the man who can really can make a whole industry happen," according to Eric Schmidt, Executive Chairman of Alphabet (Google.) His genius over the past four decades has been to identify and to help shape our response to emerging technologies with world shaking potential—the World Wide Web, Open Source Software, Web 2.0, Open Government data, the Maker Movement, Big Data, and now AI. O’Reilly shares the techniques he's used at O’Reilly Media to make sense of and predict past innovation waves and applies those same techniques to provide a framework for thinking about how today’s world-spanning platforms and networks, on-demand services, and artificial intelligence are changing the nature of business, education, government, financial markets, and the economy as a whole. He provides tools for understanding how all the parts of modern digital businesses work together to create marketplace advantage and customer value, and why ultimately, they cannot succeed unless their ecosystem succeeds along with them.&lt;br /&gt;&lt;br /&gt;The core of the book's call to action is an exhortation to businesses to DO MORE with technology rather than just using it to cut costs and enrich their shareholders. Robots are going to take our jobs, they say. O'Reilly replies, “Only if that’s what we ask them to do! Technology is the solution to human problems, and we won’t run out of work till we run out of problems." Entrepreneurs need to set their sights on how they can use big data, sensors, and AI to create amazing human experiences and the economy of the future, making us all richer in the same way the tools of the first industrial revolution did. Yes, technology can eliminate labor and make things cheaper, but at its best, we use it to do things that were previously unimaginable! What is our poverty of imagination? What are the entrepreneurial leaps that will allow us to use the technology of today to build a better future, not just a more efficient one? &lt;strong&gt;
123
+ &lt;em&gt;Whether technology brings the WTF? of wonder or the WTF? of dismay isn't inevitable. It's up to us!&lt;/em&gt;
124
+ &lt;/strong&gt;&lt;br /&gt;&lt;br /&gt; </description>
125
+ <authors>
126
+ <author>
127
+ <id>18541</id>
128
+ <name>Tim O&apos;Reilly</name>
129
+ <role></role>
130
+ <image_url nophoto='false'>
131
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p5/18541.jpg]]>
132
+ </image_url>
133
+ <small_image_url nophoto='false'>
134
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p2/18541.jpg]]>
135
+ </small_image_url>
136
+ <link><![CDATA[https://www.goodreads.com/author/show/18541.Tim_O_Reilly]]></link>
137
+ <average_rating>3.97</average_rating>
138
+ <ratings_count>3373</ratings_count>
139
+ <text_reviews_count>366</text_reviews_count>
140
+ </author>
141
+ </authors>
142
+ <published>2017</published>
143
+ <work> <id>55014517</id>
144
+ <uri>kca://work/amzn1.gr.work.v1.2CQmJiyxfniyugKBQzmSRQ</uri>
145
+ </work></book>
146
+
147
+ <book>
148
+ <id type="integer">172314</id>
149
+ <isbn>1565922603</isbn>
150
+ <isbn13>9781565922600</isbn13>
151
+ <text_reviews_count type="integer">19</text_reviews_count>
152
+ <uri>kca://book/amzn1.gr.book.v1.IatnIviB1H46QKhjYzaetg</uri>
153
+ <title>UNIX Power Tools</title>
154
+ <title_without_series>UNIX Power Tools</title_without_series>
155
+ <image_url>https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png</image_url>
156
+ <small_image_url>https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png</small_image_url>
157
+ <large_image_url/>
158
+ <link>https://www.goodreads.com/book/show/172314.UNIX_Power_Tools</link>
159
+ <num_pages>1122</num_pages>
160
+ <format>Paperback</format>
161
+ <edition_information>2nd edition</edition_information>
162
+ <publisher>O'Reilly Media</publisher>
163
+ <publication_day>9</publication_day>
164
+ <publication_year>1997</publication_year>
165
+ <publication_month>8</publication_month>
166
+ <average_rating>4.15</average_rating>
167
+ <ratings_count>669</ratings_count>
168
+ <description>Ideal for UNIX users who hunger for technical -- yet accessible -- information, &lt;i&gt;UNIX Power Tools, 2nd Edition&lt;/i&gt;, consists of tips, tricks, concepts, and freeware (CD-ROM included). It also covers add-on utilities and how to take advantage of clever features in the most popular UNIX utilities.&lt;br /&gt;&lt;br /&gt;Loaded with even more practical advice about almost every aspect of UNIX, this edition addresses the technology that UNIX users face today, differing from the first edition in a number of important ways.&lt;br /&gt;&lt;br /&gt;First, it slants the blend of options and commands more toward the POSIX utilities, including the GNU versions; the &lt;i&gt;bash&lt;/i&gt; and &lt;i&gt;tcsh&lt;/i&gt; shells have greater coverage, but we've kept the first edition's emphasis on the core concepts of &lt;i&gt;sh&lt;/i&gt; and &lt;i&gt;csh&lt;/i&gt; that will help you use all UNIX shells; and, Perl is more important than &lt;i&gt;awk&lt;/i&gt; these days, so we've de-emphasized awk in this edition.&lt;br /&gt;&lt;br /&gt;This is a browser's book...like a magazine that you don't read from start to finish, but leaf through repeatedly until you realize that you've read it all. The book is structured so that it bursts at the seams with cross references. Interesting "sidebars" explore syntax or point out other directions for exploration, including relevant technical details that might not be immediately apparent. You'll find articles abstracted from other O'Reilly books, new information that highlights program "tricks" and "gotchas," tips posted to the Net over the years, and other accumulated wisdom.&lt;br /&gt;&lt;br /&gt;The 53 chapters in this book discuss topics like file management, text editors, shell programming -- even office automation. Overall, there's plenty of material here to satisfy even the most voracious appetites. The bottom line? &lt;i&gt;UNIX Power Tools&lt;/i&gt; is loaded with practical advice about almost every aspect of UNIX. It will help you think creatively about UNIX, and will help you get to the point where you can analyze your own problems. Your own solutions won't be far behind.&lt;br /&gt;&lt;br /&gt;The CD-ROM includes all of the scripts and aliases from the book, plus &lt;i&gt;perl&lt;/i&gt;, GNU &lt;i&gt;emacs&lt;/i&gt;, &lt;i&gt;netpbm&lt;/i&gt; (graphics manipulation utilities), &lt;i&gt;ispell&lt;/i&gt;,&lt;i&gt;screen&lt;/i&gt;, the &lt;i&gt;sc&lt;/i&gt; spreadsheet, and about 60 other freeware programs. In addition to the source code, all the software is precompiled for Sun4, Digital UNIX, IBM AIX, HP/UX, Red Hat Linux, Solaris, and SCO UNIX.</description>
169
+ <authors>
170
+ <author>
171
+ <id>49587</id>
172
+ <name>Jerry Peek</name>
173
+ <role></role>
174
+ <image_url nophoto='true'>
175
+ <![CDATA[https://s.gr-assets.com/assets/nophoto/user/u_200x266-e183445fd1a1b5cc7075bb1cf7043306.png]]>
176
+ </image_url>
177
+ <small_image_url nophoto='true'>
178
+ <![CDATA[https://s.gr-assets.com/assets/nophoto/user/u_50x66-632230dc9882b4352d753eedf9396530.png]]>
179
+ </small_image_url>
180
+ <link><![CDATA[https://www.goodreads.com/author/show/49587.Jerry_Peek]]></link>
181
+ <average_rating>3.97</average_rating>
182
+ <ratings_count>905</ratings_count>
183
+ <text_reviews_count>40</text_reviews_count>
184
+ </author>
185
+ </authors>
186
+ <published>1997</published>
187
+ <work> <id>166409</id>
188
+ <uri>kca://work/amzn1.gr.work.v1._Y0d0E5ZB1WJbg3PZ1BiFA</uri>
189
+ </work></book>
190
+
191
+ <book>
192
+ <id type="integer">6438581</id>
193
+ <isbn>0596522304</isbn>
194
+ <isbn13>9780596522308</isbn13>
195
+ <text_reviews_count type="integer">20</text_reviews_count>
196
+ <uri>kca://book/amzn1.gr.book.v1.g3z8J-88sJIIHgsPBUOEHw</uri>
197
+ <title>Even Faster Web Sites</title>
198
+ <title_without_series>Even Faster Web Sites</title_without_series>
199
+ <image_url>https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328834858l/6438581._SX98_.jpg</image_url>
200
+ <small_image_url>https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328834858l/6438581._SX50_.jpg</small_image_url>
201
+ <large_image_url/>
202
+ <link>https://www.goodreads.com/book/show/6438581-even-faster-web-sites</link>
203
+ <num_pages>256</num_pages>
204
+ <format>Paperback</format>
205
+ <edition_information/>
206
+ <publisher>O'Reilly Media</publisher>
207
+ <publication_day>17</publication_day>
208
+ <publication_year>2009</publication_year>
209
+ <publication_month>6</publication_month>
210
+ <average_rating>3.96</average_rating>
211
+ <ratings_count>349</ratings_count>
212
+ <description>Performance is critical to the success of any web site, and yet today's web applications push browsers to their limits with increasing amounts of rich content and heavy use of Ajax. In this book, Steve Souders, web performance evangelist at Google and former Chief Performance Yahoo!, provides valuable techniques to help you optimize your site's performance.&lt;br /&gt;&lt;br /&gt;Souders' previous book, the bestselling &lt;i&gt;High Performance Web Sites&lt;/i&gt;, shocked the web development world by revealing that 80% of the time it takes for a web page to load is on the client side. In &lt;i&gt;Even Faster Web Sites&lt;/i&gt;, Souders and eight expert contributors provide best practices and pragmatic advice for improving your site's performance in three critical categories:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;JavaScript&lt;/b&gt;-Get advice for understanding Ajax performance, writing efficient JavaScript, creating responsive applications, loading scripts without blocking other components, and more.&lt;br /&gt;&lt;b&gt;Network&lt;/b&gt;-Learn to share resources across multiple domains, reduce image size without loss of quality, and use chunked encoding to render pages faster.&lt;br /&gt;&lt;b&gt;Browser&lt;/b&gt;-Discover alternatives to iframes, how to simplify CSS selectors, and other techniques. Speed is essential for today's rich media web sites and Web 2.0 applications. With this book, you'll learn how to shave precious seconds off your sites' load times and make them respond even faster.&lt;br /&gt;&lt;br /&gt;This book contains six guest chapters contributed by Dion Almaer, Doug Crockford, Ben Galbraith, Tony Gentilcore, Dylan Schiemann, Stoyan Stefanov, Nicole Sullivan, and Nicholas C. Zakas.</description>
213
+ <authors>
214
+ <author>
215
+ <id>775693</id>
216
+ <name>Steve Souders</name>
217
+ <role></role>
218
+ <image_url nophoto='true'>
219
+ <![CDATA[https://s.gr-assets.com/assets/nophoto/user/u_200x266-e183445fd1a1b5cc7075bb1cf7043306.png]]>
220
+ </image_url>
221
+ <small_image_url nophoto='true'>
222
+ <![CDATA[https://s.gr-assets.com/assets/nophoto/user/u_50x66-632230dc9882b4352d753eedf9396530.png]]>
223
+ </small_image_url>
224
+ <link><![CDATA[https://www.goodreads.com/author/show/775693.Steve_Souders]]></link>
225
+ <average_rating>4.09</average_rating>
226
+ <ratings_count>1019</ratings_count>
227
+ <text_reviews_count>78</text_reviews_count>
228
+ </author>
229
+ </authors>
230
+ <published>2009</published>
231
+ <work> <id>6628467</id>
232
+ <uri>kca://work/amzn1.gr.work.v1.XVjhf2qrlR7Ja7mQEZR18Q</uri>
233
+ </work></book>
234
+
235
+ <book>
236
+ <id type="integer">6356381</id>
237
+ <isbn>0596802811</isbn>
238
+ <isbn13>9780596802813</isbn13>
239
+ <text_reviews_count type="integer">55</text_reviews_count>
240
+ <uri>kca://book/amzn1.gr.book.v1.7H_nkqMOZ36BaN4MmVrK2w</uri>
241
+ <title>The Twitter Book</title>
242
+ <title_without_series>The Twitter Book</title_without_series>
243
+ <image_url>https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328834986l/6356381._SX98_.jpg</image_url>
244
+ <small_image_url>https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328834986l/6356381._SX50_.jpg</small_image_url>
245
+ <large_image_url/>
246
+ <link>https://www.goodreads.com/book/show/6356381-the-twitter-book</link>
247
+ <num_pages>240</num_pages>
248
+ <format>Paperback</format>
249
+ <edition_information/>
250
+ <publisher>O'Reilly Media</publisher>
251
+ <publication_day>20</publication_day>
252
+ <publication_year>2009</publication_year>
253
+ <publication_month>5</publication_month>
254
+ <average_rating>3.64</average_rating>
255
+ <ratings_count>349</ratings_count>
256
+ <description>"Media organizations should take note of Twitter's power to quickly reach their target consumers." --Tim O'Reilly (@timoreilly), in a Los Angeles Times interview, March 2009&lt;br /&gt;&lt;br /&gt;This practical guide will teach you everything you need to know to quickly become a Twitter power user. It includes information on the latest third party applications, strategies and tactics for using Twitter's 140-character messages as a serious--and effective--way to boost your business, as well as how to turn Twitter into your personal newspaper, tracking breaking news and learning what matters to you and your friends.&lt;br /&gt;&lt;br /&gt;Co-written by Tim O'Reilly and Sarah Milstein, widely followed and highly respected twitterers, the practical information in &lt;i&gt;The Twitter Book&lt;/i&gt; is presented in an innovative, visually rich format that's packed with clear explanations and examples of best practices that show Twitter in action, as demonstrated by the work of over 60 twitterers.&lt;br /&gt;&lt;br /&gt;This book will help you:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Use Twitter to connect with colleagues, customers, family, and friends Stand out on Twitter Avoid common Twitter gaffes and pitfalls Build a critical professional communications channel with Twitter--and use the best third-party tools that help you manage it. If you want to know how to use Twitter like a pro, &lt;i&gt;The Twitter Book&lt;/i&gt; will quickly get you up to speed.&lt;br /&gt;&lt;br /&gt;About the authors:&lt;br /&gt;&lt;br /&gt; Tim O Reilly (@timoreilly), founder and CEO of O Reilly Media, has hundreds of thousands of followers on Twitter. Sarah Milstein (@SarahM) frequently writes, speaks and teaches about Twitter; she was the 21st user of Twitter.</description>
257
+ <authors>
258
+ <author>
259
+ <id>18541</id>
260
+ <name>Tim O&apos;Reilly</name>
261
+ <role></role>
262
+ <image_url nophoto='false'>
263
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p5/18541.jpg]]>
264
+ </image_url>
265
+ <small_image_url nophoto='false'>
266
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p2/18541.jpg]]>
267
+ </small_image_url>
268
+ <link><![CDATA[https://www.goodreads.com/author/show/18541.Tim_O_Reilly]]></link>
269
+ <average_rating>3.97</average_rating>
270
+ <ratings_count>3373</ratings_count>
271
+ <text_reviews_count>366</text_reviews_count>
272
+ </author>
273
+ </authors>
274
+ <published>2009</published>
275
+ <work> <id>6543098</id>
276
+ <uri>kca://work/amzn1.gr.work.v1.TUp6yJI-rwwWp7bUSQ0K5g</uri>
277
+ </work></book>
278
+
279
+ <book>
280
+ <id type="integer">21562603</id>
281
+ <isbn>1616960809</isbn>
282
+ <isbn13>9781616960803</isbn13>
283
+ <text_reviews_count type="integer">0</text_reviews_count>
284
+ <uri>kca://book/amzn1.gr.book.v1.zR9r5GRYWtxBrsDhgvCJJQ</uri>
285
+ <title>Context</title>
286
+ <title_without_series>Context</title_without_series>
287
+ <image_url>https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png</image_url>
288
+ <small_image_url>https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png</small_image_url>
289
+ <large_image_url/>
290
+ <link>https://www.goodreads.com/book/show/21562603-context</link>
291
+ <num_pages>241</num_pages>
292
+ <format>ebook</format>
293
+ <edition_information/>
294
+ <publisher>Tachyon Publications</publisher>
295
+ <publication_day>14</publication_day>
296
+ <publication_year>2014</publication_year>
297
+ <publication_month>5</publication_month>
298
+ <average_rating>3.69</average_rating>
299
+ <ratings_count>329</ratings_count>
300
+ <description>One of the internet's most celebrated hi-tech culture mavens returns with this second collection of essays and polemics. Discussing complex topics in an accessible manner, Cory Doctorow shares visions of a future where artists control their own destinies and where freedom of expression is tempered with the view that creators need to benefit from their own creations. From extolling the Etsy marketverse to excoriating Apple for dumbing-down technology while creating an information monopoly, each unique piece is brief, witty, and at the cutting edge of tech. Now a stay-at-home dad as well as an international activist, Doctorow writes as eloquently about creating internet real-time theater with his daughter as he does in lambasting the corporations that want to limit and profit from inherent intellectual freedoms.</description>
301
+ <authors>
302
+ <author>
303
+ <id>12581</id>
304
+ <name>Cory Doctorow</name>
305
+ <role></role>
306
+ <image_url nophoto='false'>
307
+ <![CDATA[https://images.gr-assets.com/authors/1361468756p5/12581.jpg]]>
308
+ </image_url>
309
+ <small_image_url nophoto='false'>
310
+ <![CDATA[https://images.gr-assets.com/authors/1361468756p2/12581.jpg]]>
311
+ </small_image_url>
312
+ <link><![CDATA[https://www.goodreads.com/author/show/12581.Cory_Doctorow]]></link>
313
+ <average_rating>3.82</average_rating>
314
+ <ratings_count>192914</ratings_count>
315
+ <text_reviews_count>21388</text_reviews_count>
316
+ </author>
317
+ </authors>
318
+ <published>2014</published>
319
+ <work> <id>17672729</id>
320
+ <uri>kca://work/amzn1.gr.work.v1.RQcuW5v2Xm_5LzGSz4X4sg</uri>
321
+ </work></book>
322
+
323
+ <book>
324
+ <id type="integer">18874082</id>
325
+ <isbn nil="true"/>
326
+ <isbn13 nil="true"/>
327
+ <text_reviews_count type="integer">5</text_reviews_count>
328
+ <uri>kca://book/amzn1.gr.book.v1.eNeASmA1DFyYGzBj875xXw</uri>
329
+ <title>How Data Science Is Transforming Health Care</title>
330
+ <title_without_series>How Data Science Is Transforming Health Care</title_without_series>
331
+ <image_url>https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png</image_url>
332
+ <small_image_url>https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png</small_image_url>
333
+ <large_image_url/>
334
+ <link>https://www.goodreads.com/book/show/18874082-how-data-science-is-transforming-health-care</link>
335
+ <num_pages></num_pages>
336
+ <format></format>
337
+ <edition_information/>
338
+ <publisher></publisher>
339
+ <publication_day></publication_day>
340
+ <publication_year></publication_year>
341
+ <publication_month></publication_month>
342
+ <average_rating>3.47</average_rating>
343
+ <ratings_count>108</ratings_count>
344
+ <description></description>
345
+ <authors>
346
+ <author>
347
+ <id>49585</id>
348
+ <name>Mike Loukides</name>
349
+ <role></role>
350
+ <image_url nophoto='false'>
351
+ <![CDATA[https://images.gr-assets.com/authors/1230756095p5/49585.jpg]]>
352
+ </image_url>
353
+ <small_image_url nophoto='false'>
354
+ <![CDATA[https://images.gr-assets.com/authors/1230756095p2/49585.jpg]]>
355
+ </small_image_url>
356
+ <link><![CDATA[https://www.goodreads.com/author/show/49585.Mike_Loukides]]></link>
357
+ <average_rating>3.80</average_rating>
358
+ <ratings_count>2451</ratings_count>
359
+ <text_reviews_count>141</text_reviews_count>
360
+ </author>
361
+ </authors>
362
+ <published></published>
363
+ <work> <id>21986712</id>
364
+ <uri>kca://work/amzn1.gr.work.v1.z6jG-sovypTaayRgqCM3qA</uri>
365
+ </work></book>
366
+
367
+ <book>
368
+ <id type="integer">53751</id>
369
+ <isbn>0425097854</isbn>
370
+ <isbn13>9780425097854</isbn13>
371
+ <text_reviews_count type="integer">2</text_reviews_count>
372
+ <uri>kca://book/amzn1.gr.book.v1.vZFLBU6YBsidiZLPsYnQsA</uri>
373
+ <title>Maker of Dune</title>
374
+ <title_without_series>Maker of Dune</title_without_series>
375
+ <image_url>https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1370630957l/53751._SX98_.jpg</image_url>
376
+ <small_image_url>https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1370630957l/53751._SY75_.jpg</small_image_url>
377
+ <large_image_url/>
378
+ <link>https://www.goodreads.com/book/show/53751.Maker_of_Dune</link>
379
+ <num_pages>279</num_pages>
380
+ <format>Paperback</format>
381
+ <edition_information/>
382
+ <publisher>Berkley Trade</publisher>
383
+ <publication_day>1</publication_day>
384
+ <publication_year>1987</publication_year>
385
+ <publication_month>5</publication_month>
386
+ <average_rating>3.99</average_rating>
387
+ <ratings_count>93</ratings_count>
388
+ <description></description>
389
+ <authors>
390
+ <author>
391
+ <id>58</id>
392
+ <name>Frank Herbert</name>
393
+ <role></role>
394
+ <image_url nophoto='false'>
395
+ <![CDATA[https://images.gr-assets.com/authors/1168661521p5/58.jpg]]>
396
+ </image_url>
397
+ <small_image_url nophoto='false'>
398
+ <![CDATA[https://images.gr-assets.com/authors/1168661521p2/58.jpg]]>
399
+ </small_image_url>
400
+ <link><![CDATA[https://www.goodreads.com/author/show/58.Frank_Herbert]]></link>
401
+ <average_rating>4.10</average_rating>
402
+ <ratings_count>1169869</ratings_count>
403
+ <text_reviews_count>30312</text_reviews_count>
404
+ </author>
405
+ </authors>
406
+ <published>1987</published>
407
+ <work> <id>52420</id>
408
+ <uri>kca://work/amzn1.gr.work.v1.msmZ5NnoEaX15qtweeJ5Fw</uri>
409
+ </work></book>
410
+
411
+ <book>
412
+ <id type="integer">20553190</id>
413
+ <isbn nil="true"/>
414
+ <isbn13 nil="true"/>
415
+ <text_reviews_count type="integer">2</text_reviews_count>
416
+ <uri>kca://book/amzn1.gr.book.v1.ckSJQpACtH4LXJsqZeRXHQ</uri>
417
+ <title>What is Web 2.0</title>
418
+ <title_without_series>What is Web 2.0</title_without_series>
419
+ <image_url>https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png</image_url>
420
+ <small_image_url>https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png</small_image_url>
421
+ <large_image_url/>
422
+ <link>https://www.goodreads.com/book/show/20553190-what-is-web-2-0</link>
423
+ <num_pages></num_pages>
424
+ <format></format>
425
+ <edition_information/>
426
+ <publisher></publisher>
427
+ <publication_day></publication_day>
428
+ <publication_year></publication_year>
429
+ <publication_month></publication_month>
430
+ <average_rating>3.61</average_rating>
431
+ <ratings_count>36</ratings_count>
432
+ <description>&lt;p&gt;The concept of "Web 2.0" began with a conference brainstorming session between O'Reilly and MediaLive International. Dale Dougherty, web pioneer and O'Reilly VP, noted that far from having "crashed", the web was more important than ever, with exciting new applications and sites popping up with surprising regularity. What's more, the companies that had survived the collapse seemed to have some things in common. Could it be that the dot-com collapse marked some kind of turning point for the web, such that a call to action such as "Web 2.0" might make sense? We agreed that it did, and so the Web 2.0 Conference was born.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;In the year and a half since, the term "Web 2.0" has clearly taken hold, with more than 9.5 million citations in Google. But there's still a huge amount of disagreement about just what Web 2.0 means, with some people decrying it as a meaningless marketing buzzword, and others accepting it as the new conventional wisdom.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;This article is an attempt to clarify just what we mean by Web 2.0.&lt;/p&gt;</description>
433
+ <authors>
434
+ <author>
435
+ <id>18541</id>
436
+ <name>Tim O&apos;Reilly</name>
437
+ <role></role>
438
+ <image_url nophoto='false'>
439
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p5/18541.jpg]]>
440
+ </image_url>
441
+ <small_image_url nophoto='false'>
442
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p2/18541.jpg]]>
443
+ </small_image_url>
444
+ <link><![CDATA[https://www.goodreads.com/author/show/18541.Tim_O_Reilly]]></link>
445
+ <average_rating>3.97</average_rating>
446
+ <ratings_count>3373</ratings_count>
447
+ <text_reviews_count>366</text_reviews_count>
448
+ </author>
449
+ </authors>
450
+ <published></published>
451
+ <work> <id>22812755</id>
452
+ <uri>kca://work/amzn1.gr.work.v1.W_Xsp7FVjsF2V8YLr-IQ6Q</uri>
453
+ </work></book>
454
+
455
+ <book>
456
+ <id type="integer">2581204</id>
457
+ <isbn>059651056X</isbn>
458
+ <isbn13>9780596510565</isbn13>
459
+ <text_reviews_count type="integer">0</text_reviews_count>
460
+ <uri>kca://book/amzn1.gr.book.v1.vgk-urD0RoqTKlOpkF6SAw</uri>
461
+ <title>Craft, Volume 2: Transforming Traditional Crafts</title>
462
+ <title_without_series>Craft, Volume 2: Transforming Traditional Crafts</title_without_series>
463
+ <image_url>https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328834718l/2581204._SX98_.jpg</image_url>
464
+ <small_image_url>https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328834718l/2581204._SX50_.jpg</small_image_url>
465
+ <large_image_url/>
466
+ <link>https://www.goodreads.com/book/show/2581204-craft-volume-2</link>
467
+ <num_pages>160</num_pages>
468
+ <format>Paperback</format>
469
+ <edition_information/>
470
+ <publisher>O'Reilly Media</publisher>
471
+ <publication_day>1</publication_day>
472
+ <publication_year>2007</publication_year>
473
+ <publication_month>6</publication_month>
474
+ <average_rating>3.90</average_rating>
475
+ <ratings_count>10</ratings_count>
476
+ <description></description>
477
+ <authors>
478
+ <author>
479
+ <id>18541</id>
480
+ <name>Tim O&apos;Reilly</name>
481
+ <role>Creator</role>
482
+ <image_url nophoto='false'>
483
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p5/18541.jpg]]>
484
+ </image_url>
485
+ <small_image_url nophoto='false'>
486
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p2/18541.jpg]]>
487
+ </small_image_url>
488
+ <link><![CDATA[https://www.goodreads.com/author/show/18541.Tim_O_Reilly]]></link>
489
+ <average_rating>3.97</average_rating>
490
+ <ratings_count>3373</ratings_count>
491
+ <text_reviews_count>366</text_reviews_count>
492
+ </author>
493
+ </authors>
494
+ <published>2007</published>
495
+ <work> <id>2596787</id>
496
+ <uri>kca://work/amzn1.gr.work.v1.hliw6W5w1FRTbDmbBWTmDA</uri>
497
+ </work></book>
498
+
499
+ <book>
500
+ <id type="integer">2443857</id>
501
+ <isbn>156592486X</isbn>
502
+ <isbn13>9781565924864</isbn13>
503
+ <text_reviews_count type="integer">0</text_reviews_count>
504
+ <uri>kca://book/amzn1.gr.book.v1.RWk7XYDxxaHt-Xa6VIbfSw</uri>
505
+ <title>Windows 98 in a Nutshell (In a Nutshell</title>
506
+ <title_without_series>Windows 98 in a Nutshell (In a Nutshell</title_without_series>
507
+ <image_url>https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328752727l/2443857._SX98_.jpg</image_url>
508
+ <small_image_url>https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1328752727l/2443857._SY75_.jpg</small_image_url>
509
+ <large_image_url/>
510
+ <link>https://www.goodreads.com/book/show/2443857.Windows_98_in_a_Nutshell_In_a_Nutshell</link>
511
+ <num_pages>634</num_pages>
512
+ <format>Paperback</format>
513
+ <edition_information/>
514
+ <publisher>O'Reilly Media, Inc.</publisher>
515
+ <publication_day>2</publication_day>
516
+ <publication_year>1999</publication_year>
517
+ <publication_month>9</publication_month>
518
+ <average_rating>3.09</average_rating>
519
+ <ratings_count>11</ratings_count>
520
+ <description>"Windows 98 in a Nutshell" is a comprehensive, compact reference that systematically unveils what serious users of Windows 98 will find interesting and useful. Little known details of the operating system, utility programs, and configuration settings are all captured in a consistent reference format.&lt;br /&gt;&lt;br /&gt;Based on the bestselling "In a Nutshell" approach, this book contains more information about using Windows 98 than any other book on the market. Guaranteed. "Windows 98 in a Nutshell" was coauthored by Tim O'Reilly, the publisher whose books have revolutionized computer book publishing with their commonsense approach, depth of detail, and focus on practical information that you can really use. If you can't remember which option on a dialog box controls a function, or if you just want to have a better handle on what's available in Windows 98 and Windows 98 Second Edition, this is the book you need.&lt;br /&gt;&lt;br /&gt;It contains: Detailed information on almost every command and utility available with Windows 98, including Start Menu accessories, DOS commands, hidden system administration utilities such as the Registry Editor, Policy Editor, and TweakUI, as well as new utilities in Windows 98Detailed advice and documentation on system configuration via the Control Panel, system startup files, and the RegistryA detailed treatment of Internet configuration and access via Dial-Up NetworkingHundreds of tips, gotchas, and clever ways to do familiar and not-so-familiar tasksA focus on ways to integrate the command line into your work with Windows 98Pointers to dozens of useful online sites that contain additional informationInformation on how to use Win98's new Web integration features to build custom "Web applications" within folders or on your desktopDetailed information on Windows Script Host (WSH), the feature that lets you use VBScript or other scripting languages to automate common tasks&lt;br /&gt;&lt;br /&gt;This book follows the commonsense O'Reilly approach, cutting through the hype and giving practical details you can use every day. Any user who wants to make the most of Windows 98 and Windows 98 Second Edition will love this book.</description>
521
+ <authors>
522
+ <author>
523
+ <id>18541</id>
524
+ <name>Tim O&apos;Reilly</name>
525
+ <role></role>
526
+ <image_url nophoto='false'>
527
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p5/18541.jpg]]>
528
+ </image_url>
529
+ <small_image_url nophoto='false'>
530
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p2/18541.jpg]]>
531
+ </small_image_url>
532
+ <link><![CDATA[https://www.goodreads.com/author/show/18541.Tim_O_Reilly]]></link>
533
+ <average_rating>3.97</average_rating>
534
+ <ratings_count>3373</ratings_count>
535
+ <text_reviews_count>366</text_reviews_count>
536
+ </author>
537
+ </authors>
538
+ <published>1999</published>
539
+ <work> <id>2451052</id>
540
+ <uri>kca://work/amzn1.gr.work.v1.sIX4RjskJzBeT2TBB7nIFw</uri>
541
+ </work></book>
542
+
543
+ <book>
544
+ <id type="integer">19282395</id>
545
+ <isbn nil="true"/>
546
+ <isbn13 nil="true"/>
547
+ <text_reviews_count type="integer">0</text_reviews_count>
548
+ <uri>kca://book/amzn1.gr.book.v1.NLShBEi2z8ZTA6s_ir61EQ</uri>
549
+ <title>Web Squared: Web 2.0 Five Years On</title>
550
+ <title_without_series>Web Squared: Web 2.0 Five Years On</title_without_series>
551
+ <image_url>https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png</image_url>
552
+ <small_image_url>https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png</small_image_url>
553
+ <large_image_url/>
554
+ <link>https://www.goodreads.com/book/show/19282395-web-squared</link>
555
+ <num_pages></num_pages>
556
+ <format></format>
557
+ <edition_information/>
558
+ <publisher></publisher>
559
+ <publication_day></publication_day>
560
+ <publication_year></publication_year>
561
+ <publication_month></publication_month>
562
+ <average_rating>4.00</average_rating>
563
+ <ratings_count>8</ratings_count>
564
+ <description>&lt;p&gt;Ever since we first introduced the term Web 2.0, people have been asking, What ™s next? Assuming that Web 2.0 was meant to be a kind of software version number (rather than a statement about the second coming of the Web after the dotcom bust), we ™re constantly asked about Web 3.0. Is it the semantic web? The sentient web? Is it the social web? The mobile web? Is it some form of virtual reality?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;It is all of those, and more.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The Web is no longer a collection of static pages of HTML that describe something in the world. Increasingly, the Web is the world "everything and everyone in the world casts an information shadow, &lt;br /&gt;&lt;br /&gt;an aura of data which, when captured and processed intelligently, offers extraordinary opportunity and mindbending implications. Web Squared is our way of exploring this phenomenon and giving it a name.&lt;/p&gt;</description>
565
+ <authors>
566
+ <author>
567
+ <id>18541</id>
568
+ <name>Tim O&apos;Reilly</name>
569
+ <role></role>
570
+ <image_url nophoto='false'>
571
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p5/18541.jpg]]>
572
+ </image_url>
573
+ <small_image_url nophoto='false'>
574
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p2/18541.jpg]]>
575
+ </small_image_url>
576
+ <link><![CDATA[https://www.goodreads.com/author/show/18541.Tim_O_Reilly]]></link>
577
+ <average_rating>3.97</average_rating>
578
+ <ratings_count>3373</ratings_count>
579
+ <text_reviews_count>366</text_reviews_count>
580
+ </author>
581
+ </authors>
582
+ <published></published>
583
+ <work> <id>24219601</id>
584
+ <uri>kca://work/amzn1.gr.work.v1.ssUKJ2D4AuN2EjrX7fuS6w</uri>
585
+ </work></book>
586
+
587
+ <book>
588
+ <id type="integer">12380970</id>
589
+ <isbn>9781449304</isbn>
590
+ <isbn13 nil="true"/>
591
+ <text_reviews_count type="integer">0</text_reviews_count>
592
+ <uri>kca://book/amzn1.gr.book.v1.UjKzUtIWZmYu50LbjY5cqQ</uri>
593
+ <title>Tim O'Reilly in a Nutshell</title>
594
+ <title_without_series>Tim O'Reilly in a Nutshell</title_without_series>
595
+ <image_url>https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png</image_url>
596
+ <small_image_url>https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png</small_image_url>
597
+ <large_image_url/>
598
+ <link>https://www.goodreads.com/book/show/12380970-tim-o-reilly-in-a-nutshell</link>
599
+ <num_pages>128</num_pages>
600
+ <format>ebook</format>
601
+ <edition_information/>
602
+ <publisher>O'Reilly Media, Inc.</publisher>
603
+ <publication_day/>
604
+ <publication_year>2011</publication_year>
605
+ <publication_month>4</publication_month>
606
+ <average_rating>3.44</average_rating>
607
+ <ratings_count>9</ratings_count>
608
+ <description>The essays in this collection offer valuable insight into one of today's technology leaders: the founder and CEO of O'Reilly Media. Tim O'Reilly in a Nutshell contains more than a dozen essays about paradigm shifts in technology, the future of online publishing, and the way he approaches business. Along the way, O'Reilly discusses open source projects, Unix, and technologies from Microsoft, Apple, and other companies.&lt;br /&gt;&lt;br /&gt;It's not easy to put Tim O'Reilly in a nutshell, but with the essays in this collection, you get valuable insight into the mind of the founder and CEO of O'Reilly Media. Tim O'Reilly in a Nutshell contains more than a dozen essays that discuss paradigm shifts in technology, the future of online publishing, and the way he approaches business. Along the way, he discusses open source projects, Unix, and technologies from Microsoft, Apple, and other companies.&lt;br /&gt;&lt;br /&gt;One thing that stands out in these essays is O'Reilly's ability to see technological trends long before they happen. Essays from a decade ago address today's networked world in detail, whether it's the Internet operating system, the Web's "architecture of participation," or the rapid rise of ebooks. It's a fascinating journey into the knowledge and passions of one of today's technology leaders.</description>
609
+ <authors>
610
+ <author>
611
+ <id>18541</id>
612
+ <name>Tim O&apos;Reilly</name>
613
+ <role></role>
614
+ <image_url nophoto='false'>
615
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p5/18541.jpg]]>
616
+ </image_url>
617
+ <small_image_url nophoto='false'>
618
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p2/18541.jpg]]>
619
+ </small_image_url>
620
+ <link><![CDATA[https://www.goodreads.com/author/show/18541.Tim_O_Reilly]]></link>
621
+ <average_rating>3.97</average_rating>
622
+ <ratings_count>3373</ratings_count>
623
+ <text_reviews_count>366</text_reviews_count>
624
+ </author>
625
+ </authors>
626
+ <published>2011</published>
627
+ <work> <id>17361629</id>
628
+ <uri>kca://work/amzn1.gr.work.v1.OWTzXEtUE_ULxSgWGMTzkg</uri>
629
+ </work></book>
630
+
631
+ <book>
632
+ <id type="integer">39852396</id>
633
+ <isbn nil="true"/>
634
+ <isbn13 nil="true"/>
635
+ <text_reviews_count type="integer">3</text_reviews_count>
636
+ <uri>kca://book/amzn1.gr.book.v1.tFlFIFjMC5dDEWE17qmN_g</uri>
637
+ <title>De nieuwe economie</title>
638
+ <title_without_series>De nieuwe economie</title_without_series>
639
+ <image_url>https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png</image_url>
640
+ <small_image_url>https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png</small_image_url>
641
+ <large_image_url/>
642
+ <link>https://www.goodreads.com/book/show/39852396-de-nieuwe-economie</link>
643
+ <num_pages></num_pages>
644
+ <format></format>
645
+ <edition_information/>
646
+ <publisher></publisher>
647
+ <publication_day></publication_day>
648
+ <publication_year></publication_year>
649
+ <publication_month></publication_month>
650
+ <average_rating>4.14</average_rating>
651
+ <ratings_count>7</ratings_count>
652
+ <description></description>
653
+ <authors>
654
+ <author>
655
+ <id>18541</id>
656
+ <name>Tim O&apos;Reilly</name>
657
+ <role></role>
658
+ <image_url nophoto='false'>
659
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p5/18541.jpg]]>
660
+ </image_url>
661
+ <small_image_url nophoto='false'>
662
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p2/18541.jpg]]>
663
+ </small_image_url>
664
+ <link><![CDATA[https://www.goodreads.com/author/show/18541.Tim_O_Reilly]]></link>
665
+ <average_rating>3.97</average_rating>
666
+ <ratings_count>3373</ratings_count>
667
+ <text_reviews_count>366</text_reviews_count>
668
+ </author>
669
+ </authors>
670
+ <published></published>
671
+ <work> <id>61632551</id>
672
+ <uri>kca://work/amzn1.gr.work.v1.IhLGsByDjPHR7uXgRFZTvw</uri>
673
+ </work></book>
674
+
675
+ <book>
676
+ <id type="integer">1551276</id>
677
+ <isbn>0937175935</isbn>
678
+ <isbn13>9780937175934</isbn13>
679
+ <text_reviews_count type="integer">1</text_reviews_count>
680
+ <uri>kca://book/amzn1.gr.book.v1._ku46pMFCV92X6H7rROJHw</uri>
681
+ <title>Managing UUCP and Usenet</title>
682
+ <title_without_series>Managing UUCP and Usenet</title_without_series>
683
+ <image_url>https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png</image_url>
684
+ <small_image_url>https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png</small_image_url>
685
+ <large_image_url/>
686
+ <link>https://www.goodreads.com/book/show/1551276.Managing_UUCP_and_Usenet</link>
687
+ <num_pages>368</num_pages>
688
+ <format>Paperback</format>
689
+ <edition_information/>
690
+ <publisher>O'Reilly Media</publisher>
691
+ <publication_day>8</publication_day>
692
+ <publication_year>1990</publication_year>
693
+ <publication_month>6</publication_month>
694
+ <average_rating>3.38</average_rating>
695
+ <ratings_count>8</ratings_count>
696
+ <description>For all its widespread use, UUCP is one of the most difficult UNIX utilities to master. Poor documentation, cryptic messages, and differences between various implementations make setting up UUCP links a nightmare for many a system administrator.&lt;br /&gt;&lt;br /&gt;This handbook is meant for system administrators who want to install and manage the UUCP and Usenet software. It covers HoneyDanBer UUCP as well as standard Version 2 UUCP, with special notes on Xenix. As one reader noted over the Net, "Don't even TRY to install UUCP without it!"&lt;br /&gt;&lt;br /&gt;Topics covered in &lt;i&gt;Managing UUCP&lt;/i&gt; include:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;How UUCP works. RS-232 cabling. Talking with modems. Setting up a UUCP link. Security considerations. UUCP administration. Introduction to Usenet. Installing Netnews. Administering Netnews. The tenth edition of this classic work has been revised and expanded to include descriptions of:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;How to use NNTP (Network News Transfer Protocol) to transfer Usenet news over TCP/IP and other high-speed networks. How to get DOS versions of UUCP. How to set up DOS-based laptop computers as traveling UUCP nodes. How the UUCP 'g' protocol works.</description>
697
+ <authors>
698
+ <author>
699
+ <id>18541</id>
700
+ <name>Tim O&apos;Reilly</name>
701
+ <role></role>
702
+ <image_url nophoto='false'>
703
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p5/18541.jpg]]>
704
+ </image_url>
705
+ <small_image_url nophoto='false'>
706
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p2/18541.jpg]]>
707
+ </small_image_url>
708
+ <link><![CDATA[https://www.goodreads.com/author/show/18541.Tim_O_Reilly]]></link>
709
+ <average_rating>3.97</average_rating>
710
+ <ratings_count>3373</ratings_count>
711
+ <text_reviews_count>366</text_reviews_count>
712
+ </author>
713
+ </authors>
714
+ <published>1990</published>
715
+ <work> <id>1543641</id>
716
+ <uri>kca://work/amzn1.gr.work.v1.CV6osgaFIdrIepZxZsYb3w</uri>
717
+ </work></book>
718
+
719
+ <book>
720
+ <id type="integer">30976280</id>
721
+ <isbn nil="true"/>
722
+ <isbn13>9781491943021</isbn13>
723
+ <text_reviews_count type="integer">2</text_reviews_count>
724
+ <uri>kca://book/amzn1.gr.book.v1.WoSsO-n80IaHT3CNYI554A</uri>
725
+ <title>What’s the Future of Work ?</title>
726
+ <title_without_series>What’s the Future of Work ?</title_without_series>
727
+ <image_url>https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1468056822l/30976280._SX98_.jpg</image_url>
728
+ <small_image_url>https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1468056822l/30976280._SY75_.jpg</small_image_url>
729
+ <large_image_url/>
730
+ <link>https://www.goodreads.com/book/show/30976280-what-s-the-future-of-work</link>
731
+ <num_pages>44</num_pages>
732
+ <format>ebook</format>
733
+ <edition_information/>
734
+ <publisher>O'Reilly</publisher>
735
+ <publication_day>5</publication_day>
736
+ <publication_year>2015</publication_year>
737
+ <publication_month>10</publication_month>
738
+ <average_rating>2.67</average_rating>
739
+ <ratings_count>9</ratings_count>
740
+ <description>What is the future when more and more work can be done by intelligent machines instead of people, or only done by people in partnership with those machines? What happens to workers, and what happens to the companies that depend on their purchasing power? What's the future of business when technology-enabled networks and marketplaces are better at deploying talent than traditional companies? What's the future of education when on-demand learning outperforms traditional universities in keeping skills up to date?&lt;br /&gt;In this free collection of recent blog posts, Tim O'Reilly begins a focused, high-level conversation about the deep ways in which computers and their ilk are transforming how we do business, how we work, and how we live. Just about everyone's asking WTF? ("What the F***?" but also, more charitably, "What's the future?")</description>
741
+ <authors>
742
+ <author>
743
+ <id>18541</id>
744
+ <name>Tim O&apos;Reilly</name>
745
+ <role></role>
746
+ <image_url nophoto='false'>
747
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p5/18541.jpg]]>
748
+ </image_url>
749
+ <small_image_url nophoto='false'>
750
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p2/18541.jpg]]>
751
+ </small_image_url>
752
+ <link><![CDATA[https://www.goodreads.com/author/show/18541.Tim_O_Reilly]]></link>
753
+ <average_rating>3.97</average_rating>
754
+ <ratings_count>3373</ratings_count>
755
+ <text_reviews_count>366</text_reviews_count>
756
+ </author>
757
+ </authors>
758
+ <published>2015</published>
759
+ <work> <id>51596199</id>
760
+ <uri>kca://work/amzn1.gr.work.v1.pdpTnCLNanebOFXkcXqfog</uri>
761
+ </work></book>
762
+
763
+ <book>
764
+ <id type="integer">19522586</id>
765
+ <isbn nil="true"/>
766
+ <isbn13 nil="true"/>
767
+ <text_reviews_count type="integer">0</text_reviews_count>
768
+ <uri>kca://book/amzn1.gr.book.v1.EuS0Am08M3Xa2eTnNrwt2Q</uri>
769
+ <title>Economic Impact of Open Source on Small Business: A Case Study</title>
770
+ <title_without_series>Economic Impact of Open Source on Small Business: A Case Study</title_without_series>
771
+ <image_url>https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png</image_url>
772
+ <small_image_url>https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png</small_image_url>
773
+ <large_image_url/>
774
+ <link>https://www.goodreads.com/book/show/19522586-economic-impact-of-open-source-on-small-business</link>
775
+ <num_pages></num_pages>
776
+ <format></format>
777
+ <edition_information/>
778
+ <publisher></publisher>
779
+ <publication_day></publication_day>
780
+ <publication_year></publication_year>
781
+ <publication_month></publication_month>
782
+ <average_rating>3.83</average_rating>
783
+ <ratings_count>6</ratings_count>
784
+ <description></description>
785
+ <authors>
786
+ <author>
787
+ <id>18541</id>
788
+ <name>Tim O&apos;Reilly</name>
789
+ <role></role>
790
+ <image_url nophoto='false'>
791
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p5/18541.jpg]]>
792
+ </image_url>
793
+ <small_image_url nophoto='false'>
794
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p2/18541.jpg]]>
795
+ </small_image_url>
796
+ <link><![CDATA[https://www.goodreads.com/author/show/18541.Tim_O_Reilly]]></link>
797
+ <average_rating>3.97</average_rating>
798
+ <ratings_count>3373</ratings_count>
799
+ <text_reviews_count>366</text_reviews_count>
800
+ </author>
801
+ </authors>
802
+ <published></published>
803
+ <work> <id>27640117</id>
804
+ <uri>kca://work/amzn1.gr.work.v1.sKK_YtHc8c8yGFOxttLckA</uri>
805
+ </work></book>
806
+
807
+ <book>
808
+ <id type="integer">6060251</id>
809
+ <isbn>1565920147</isbn>
810
+ <isbn13>9781565920149</isbn13>
811
+ <text_reviews_count type="integer">0</text_reviews_count>
812
+ <uri>kca://book/amzn1.gr.book.v1.GvSDSrN9mR_0OSKzd9_6vw</uri>
813
+ <title>Volume 3: X Window System User's Guide: Standard Edition</title>
814
+ <title_without_series>Volume 3: X Window System User's Guide: Standard Edition</title_without_series>
815
+ <image_url>https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png</image_url>
816
+ <small_image_url>https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png</small_image_url>
817
+ <large_image_url/>
818
+ <link>https://www.goodreads.com/book/show/6060251-volume-3</link>
819
+ <num_pages>836</num_pages>
820
+ <format>Paperback</format>
821
+ <edition_information/>
822
+ <publisher>O'Reilly Media</publisher>
823
+ <publication_day>10</publication_day>
824
+ <publication_year>1994</publication_year>
825
+ <publication_month>7</publication_month>
826
+ <average_rating>3.40</average_rating>
827
+ <ratings_count>5</ratings_count>
828
+ <description>The &lt;i&gt;X Window System User's Guide&lt;/i&gt; orients the new user to window system concepts and provides detailed tutorials for many client programs, including the &lt;i&gt;xterm&lt;/i&gt; terminal emulator and window managers. Building on this basic knowledge, later chapters explain how to customize the X environment and provide sample configurations.&lt;br /&gt;&lt;br /&gt;This popular manual is available in two editions, one for users of the MIT software, one for users of Motif. The &lt;i&gt;Standard Edition&lt;/i&gt; uses the &lt;i&gt;twm&lt;/i&gt; manager in most examples and illustrations. Revised and updated for X11 Release 5.&lt;br /&gt;&lt;br /&gt;Contents include: - Starting the system and opening windows. - Using the &lt;i&gt;xterm&lt;/i&gt; terminal emulator and window managers. - Most standard release clients, including programs for graphics, printing, font manipulation, window/display information, removing windows, as well as several "desktop" utilities. - Customizing the window manager, keyboard, display, and certain basic features of any client program. - Using and customizing the &lt;i&gt;mwm&lt;/i&gt; window manager, for those using the OSF/Motif graphical user interface. - System administration tasks, including managing fonts, starting X automatically, and using the display manager, &lt;i&gt;xdm&lt;/i&gt;, to run X on a single or multiple display.&lt;br /&gt;&lt;br /&gt;New material covered in this fourth edition includes: - Overview of the X Color Management System (Xcms) - Creating your own Xcms color database - Tutorials for two "color editors": &lt;i&gt;xcoloredit&lt;/i&gt; and &lt;i&gt;xtici&lt;/i&gt; - Using the X font server - Tutorial for &lt;i&gt;editres&lt;/i&gt;, a resource editor - Extensive coverage of the new implementations of bitmap and &lt;i&gt;xmag&lt;/i&gt; - Overview of internationalization features</description>
829
+ <authors>
830
+ <author>
831
+ <id>18541</id>
832
+ <name>Tim O&apos;Reilly</name>
833
+ <role></role>
834
+ <image_url nophoto='false'>
835
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p5/18541.jpg]]>
836
+ </image_url>
837
+ <small_image_url nophoto='false'>
838
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p2/18541.jpg]]>
839
+ </small_image_url>
840
+ <link><![CDATA[https://www.goodreads.com/author/show/18541.Tim_O_Reilly]]></link>
841
+ <average_rating>3.97</average_rating>
842
+ <ratings_count>3373</ratings_count>
843
+ <text_reviews_count>366</text_reviews_count>
844
+ </author>
845
+ </authors>
846
+ <published>1994</published>
847
+ <work> <id>6236412</id>
848
+ <uri>kca://work/amzn1.gr.work.v1.lnqwPJ_k2mJtX_4a-kYuog</uri>
849
+ </work></book>
850
+
851
+ <book>
852
+ <id type="integer">28535232</id>
853
+ <isbn nil="true"/>
854
+ <isbn13 nil="true"/>
855
+ <text_reviews_count type="integer">0</text_reviews_count>
856
+ <uri>kca://book/amzn1.gr.book.v1.ZeHPDyZ-T_bVaEWq7eTANw</uri>
857
+ <title>Software Above the Level of a Single Device: The Implications</title>
858
+ <title_without_series>Software Above the Level of a Single Device: The Implications</title_without_series>
859
+ <image_url>https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1452714565l/28535232._SX98_.jpg</image_url>
860
+ <small_image_url>https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1452714565l/28535232._SY75_.jpg</small_image_url>
861
+ <large_image_url/>
862
+ <link>https://www.goodreads.com/book/show/28535232-software-above-the-level-of-a-single-device</link>
863
+ <num_pages>13</num_pages>
864
+ <format>ebook</format>
865
+ <edition_information/>
866
+ <publisher></publisher>
867
+ <publication_day/>
868
+ <publication_year>2015</publication_year>
869
+ <publication_month>1</publication_month>
870
+ <average_rating>3.25</average_rating>
871
+ <ratings_count>4</ratings_count>
872
+ <description></description>
873
+ <authors>
874
+ <author>
875
+ <id>18541</id>
876
+ <name>Tim O&apos;Reilly</name>
877
+ <role></role>
878
+ <image_url nophoto='false'>
879
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p5/18541.jpg]]>
880
+ </image_url>
881
+ <small_image_url nophoto='false'>
882
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p2/18541.jpg]]>
883
+ </small_image_url>
884
+ <link><![CDATA[https://www.goodreads.com/author/show/18541.Tim_O_Reilly]]></link>
885
+ <average_rating>3.97</average_rating>
886
+ <ratings_count>3373</ratings_count>
887
+ <text_reviews_count>366</text_reviews_count>
888
+ </author>
889
+ </authors>
890
+ <published>2015</published>
891
+ <work> <id>48694523</id>
892
+ <uri>kca://work/amzn1.gr.work.v1.O52yEw9pwM46Z2i5NzGWxg</uri>
893
+ </work></book>
894
+
895
+ <book>
896
+ <id type="integer">1305154</id>
897
+ <isbn>1565920155</isbn>
898
+ <isbn13>9781565920156</isbn13>
899
+ <text_reviews_count type="integer">0</text_reviews_count>
900
+ <uri>kca://book/amzn1.gr.book.v1.P09350Ff_v5UIyit-mm2TA</uri>
901
+ <title>X Users Guide Motif R5: Motif Edition</title>
902
+ <title_without_series>X Users Guide Motif R5: Motif Edition</title_without_series>
903
+ <image_url>https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png</image_url>
904
+ <small_image_url>https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png</small_image_url>
905
+ <large_image_url/>
906
+ <link>https://www.goodreads.com/book/show/1305154.X_Users_Guide_Motif_R5</link>
907
+ <num_pages>955</num_pages>
908
+ <format>Paperback</format>
909
+ <edition_information/>
910
+ <publisher>O'Reilly Media</publisher>
911
+ <publication_day>7</publication_day>
912
+ <publication_year>1994</publication_year>
913
+ <publication_month>7</publication_month>
914
+ <average_rating>3.33</average_rating>
915
+ <ratings_count>3</ratings_count>
916
+ <description>The &lt;i&gt;X Window System User's Guide, Motif Edition,&lt;/i&gt; orients the new user to window system concepts and provides detailed tutorials for many client programs, including the &lt;i&gt;xterm&lt;/i&gt; terminal emulator and the window manager. Building on this basic knowledge, later chapters explain how to customize the X environment and provide sample configurations.&lt;br /&gt;&lt;br /&gt;This alternative edition of the &lt;i&gt;User's Guide&lt;/i&gt; highlights the Motif window manager for users of the Motif graphical user interface. Revised for Motif 1.2 and X11 Release 5.&lt;br /&gt;&lt;br /&gt;Topics include:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Starting the system and opening windows Using the &lt;i&gt;xterm&lt;/i&gt; terminal emulator and window managers Most standard release clients, including programs for graphics, printing, font manipulation, window/display information, removing windows, as well as several "desktop" utilities Customizing the window manager, keyboard, display, and certain basic features of any client program Using and customizing the &lt;i&gt;mwm&lt;/i&gt; window manager, for those using theOSF/Motif graphical interface System administration tasks, such as managing fonts, starting X automatically, and using the display manager, &lt;i&gt;xdm&lt;/i&gt;, to run X on single or multiple displays&lt;br /&gt;Material covered in this second edition includes:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Overview of the X Color Management System (Xcms) Creating your own Xcms color database Tutorials for two "color editors": &lt;i&gt;xcoloredit&lt;/i&gt; and &lt;i&gt;xtici&lt;/i&gt;&lt;br /&gt;Using the X font server Tutorial for &lt;i&gt;editres&lt;/i&gt;, a resource editor Extensive coverage of the new implementations of bitmap and &lt;i&gt;xmag&lt;/i&gt;&lt;br /&gt;Overview of internationalization features Features common to Motif 1.2 applications: tear-off menus and drag-and-drop</description>
917
+ <authors>
918
+ <author>
919
+ <id>18541</id>
920
+ <name>Tim O&apos;Reilly</name>
921
+ <role></role>
922
+ <image_url nophoto='false'>
923
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p5/18541.jpg]]>
924
+ </image_url>
925
+ <small_image_url nophoto='false'>
926
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p2/18541.jpg]]>
927
+ </small_image_url>
928
+ <link><![CDATA[https://www.goodreads.com/author/show/18541.Tim_O_Reilly]]></link>
929
+ <average_rating>3.97</average_rating>
930
+ <ratings_count>3373</ratings_count>
931
+ <text_reviews_count>366</text_reviews_count>
932
+ </author>
933
+ </authors>
934
+ <published>1994</published>
935
+ <work> <id>1294393</id>
936
+ <uri>kca://work/amzn1.gr.work.v1.JXo3yfDDrXrWAEVBZnSWew</uri>
937
+ </work></book>
938
+
939
+ <book>
940
+ <id type="integer">3821714</id>
941
+ <isbn>0937175242</isbn>
942
+ <isbn13>9780937175248</isbn13>
943
+ <text_reviews_count type="integer">0</text_reviews_count>
944
+ <uri>kca://book/amzn1.gr.book.v1.7C6EiUU7V7BPznQD3rm8Yg</uri>
945
+ <title>X Window System in a Nutshell</title>
946
+ <title_without_series>X Window System in a Nutshell</title_without_series>
947
+ <image_url>https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png</image_url>
948
+ <small_image_url>https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png</small_image_url>
949
+ <large_image_url/>
950
+ <link>https://www.goodreads.com/book/show/3821714-x-window-system-in-a-nutshell</link>
951
+ <num_pages></num_pages>
952
+ <format>Paperback</format>
953
+ <edition_information/>
954
+ <publisher>Orient Book Distribution</publisher>
955
+ <publication_day>1</publication_day>
956
+ <publication_year>1991</publication_year>
957
+ <publication_month>5</publication_month>
958
+ <average_rating>2.50</average_rating>
959
+ <ratings_count>2</ratings_count>
960
+ <description></description>
961
+ <authors>
962
+ <author>
963
+ <id>18541</id>
964
+ <name>Tim O&apos;Reilly</name>
965
+ <role></role>
966
+ <image_url nophoto='false'>
967
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p5/18541.jpg]]>
968
+ </image_url>
969
+ <small_image_url nophoto='false'>
970
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p2/18541.jpg]]>
971
+ </small_image_url>
972
+ <link><![CDATA[https://www.goodreads.com/author/show/18541.Tim_O_Reilly]]></link>
973
+ <average_rating>3.97</average_rating>
974
+ <ratings_count>3373</ratings_count>
975
+ <text_reviews_count>366</text_reviews_count>
976
+ </author>
977
+ </authors>
978
+ <published>1991</published>
979
+ <work> <id>3866024</id>
980
+ <uri>kca://work/amzn1.gr.work.v1.C245bc0xoXOubyvG8BXRMA</uri>
981
+ </work></book>
982
+
983
+ <book>
984
+ <id type="integer">26325627</id>
985
+ <isbn>1331958849</isbn>
986
+ <isbn13>9781331958840</isbn13>
987
+ <text_reviews_count type="integer">0</text_reviews_count>
988
+ <uri>kca://book/amzn1.gr.book.v1.pHg95xlRB7ww57ZXISsrUw</uri>
989
+ <title>X Toolkit Intrinsics Reference Manual, Vol. 5: For Version 11 of the X Window System</title>
990
+ <title_without_series>X Toolkit Intrinsics Reference Manual, Vol. 5: For Version 11 of the X Window System</title_without_series>
991
+ <image_url>https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442848623l/26325627._SX98_.jpg</image_url>
992
+ <small_image_url>https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1442848623l/26325627._SX50_.jpg</small_image_url>
993
+ <large_image_url/>
994
+ <link>https://www.goodreads.com/book/show/26325627-x-toolkit-intrinsics-reference-manual-vol-5</link>
995
+ <num_pages>566</num_pages>
996
+ <format>Paperback</format>
997
+ <edition_information/>
998
+ <publisher>Forgotten Books</publisher>
999
+ <publication_day>25</publication_day>
1000
+ <publication_year>2019</publication_year>
1001
+ <publication_month>1</publication_month>
1002
+ <average_rating>2.00</average_rating>
1003
+ <ratings_count>1</ratings_count>
1004
+ <description>Excerpt from X Toolkit Intrinsics Reference Manual, Vol. 5: For Version 11 of the X Window System&lt;br /&gt;&lt;br /&gt;Volumes Four and Five are designed to be used together. Volume 4 provides an explanation of the X Toolkit, including tutorial material and numerous programming examples. Arranged by task or topic, each chapter brings together a group of X Toolkit functions, describes the conceptual foundation they are based on, and illustrates how they are most often used in writ ing applications. This volume is structured so as to be useful as a tutorial and also as a task oriented reference.&lt;br /&gt;&lt;br /&gt;To get the most out of the examples in Volume Four, you will need the exact calling sequences of each function from Volume Five. To understand fully how to use each of the functions described in Volume Five, all but the most experienced Toolkit hacker will need the explanation and examples in Volume Four.&lt;br /&gt;&lt;br /&gt;About the Publisher&lt;br /&gt;&lt;br /&gt;Forgotten Books publishes hundreds of thousands of rare and classic books. Find more at &lt;a target="_blank" href="http://www.forgottenbooks.com" rel="nofollow"&gt;www.forgottenbooks.com&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;This book is a reproduction of an important historical work. Forgotten Books uses state-of-the-art technology to digitally reconstruct the work, preserving the original format whilst repairing imperfections present in the aged copy. In rare cases, an imperfection in the original, such as a blemish or missing page, may be replicated in our edition. We do, however, repair the vast majority of imperfections successfully; any imperfections that remain are intentionally left to preserve the state of such historical works.</description>
1005
+ <authors>
1006
+ <author>
1007
+ <id>18541</id>
1008
+ <name>Tim O&apos;Reilly</name>
1009
+ <role></role>
1010
+ <image_url nophoto='false'>
1011
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p5/18541.jpg]]>
1012
+ </image_url>
1013
+ <small_image_url nophoto='false'>
1014
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p2/18541.jpg]]>
1015
+ </small_image_url>
1016
+ <link><![CDATA[https://www.goodreads.com/author/show/18541.Tim_O_Reilly]]></link>
1017
+ <average_rating>3.97</average_rating>
1018
+ <ratings_count>3373</ratings_count>
1019
+ <text_reviews_count>366</text_reviews_count>
1020
+ </author>
1021
+ </authors>
1022
+ <published>2019</published>
1023
+ <work> <id>46324569</id>
1024
+ <uri>kca://work/amzn1.gr.work.v1.Lg6ztS3IdwNK7vkNLPPPlw</uri>
1025
+ </work></book>
1026
+
1027
+ <book>
1028
+ <id type="integer">28643374</id>
1029
+ <isbn>1346247943</isbn>
1030
+ <isbn13>9781346247946</isbn13>
1031
+ <text_reviews_count type="integer">0</text_reviews_count>
1032
+ <uri>kca://book/amzn1.gr.book.v1.lzC0TxgV1gda3nas_pXQPA</uri>
1033
+ <title>X Toolkit Intrinsics Reference Manual: For Version 11 of the X Window System Volume 5</title>
1034
+ <title_without_series>X Toolkit Intrinsics Reference Manual: For Version 11 of the X Window System Volume 5</title_without_series>
1035
+ <image_url>https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png</image_url>
1036
+ <small_image_url>https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png</small_image_url>
1037
+ <large_image_url/>
1038
+ <link>https://www.goodreads.com/book/show/28643374-x-toolkit-intrinsics-reference-manual</link>
1039
+ <num_pages>562</num_pages>
1040
+ <format>Hardcover</format>
1041
+ <edition_information/>
1042
+ <publisher>Arkose Press</publisher>
1043
+ <publication_day>7</publication_day>
1044
+ <publication_year>2015</publication_year>
1045
+ <publication_month>11</publication_month>
1046
+ <average_rating>2.00</average_rating>
1047
+ <ratings_count>1</ratings_count>
1048
+ <description>This work has been selected by scholars as being culturally important, and is part of the knowledge base of civilization as we know it. This work was reproduced from the original artifact, and remains as true to the original work as possible. Therefore, you will see the original copyright references, library stamps (as most of these works have been housed in our most important libraries around the world), and other notations in the work.This work is in the public domain in the United States of America, and possibly other nations. Within the United States, you may freely copy and distribute this work, as no entity (individual or corporate) has a copyright on the body of the work.As a reproduction of a historical artifact, this work may contain missing or blurred pages, poor pictures, errant marks, etc. Scholars believe, and we concur, that this work is important enough to be preserved, reproduced, and made generally available to the public. We appreciate your support of the preservation process, and thank you for being an important part of keeping this knowledge alive and relevant.</description>
1049
+ <authors>
1050
+ <author>
1051
+ <id>18541</id>
1052
+ <name>Tim O&apos;Reilly</name>
1053
+ <role></role>
1054
+ <image_url nophoto='false'>
1055
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p5/18541.jpg]]>
1056
+ </image_url>
1057
+ <small_image_url nophoto='false'>
1058
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p2/18541.jpg]]>
1059
+ </small_image_url>
1060
+ <link><![CDATA[https://www.goodreads.com/author/show/18541.Tim_O_Reilly]]></link>
1061
+ <average_rating>3.97</average_rating>
1062
+ <ratings_count>3373</ratings_count>
1063
+ <text_reviews_count>366</text_reviews_count>
1064
+ </author>
1065
+ </authors>
1066
+ <published>2015</published>
1067
+ <work> <id>48827406</id>
1068
+ <uri>kca://work/amzn1.gr.work.v1.7SQb6uG5V-B05UpfxW5_Nw</uri>
1069
+ </work></book>
1070
+
1071
+ <book>
1072
+ <id type="integer">13214782</id>
1073
+ <isbn>0596519443</isbn>
1074
+ <isbn13>9780596519445</isbn13>
1075
+ <text_reviews_count type="integer">0</text_reviews_count>
1076
+ <uri>kca://book/amzn1.gr.book.v1.MHSeepHplOuvDcudaNE9lQ</uri>
1077
+ <title>S3 and Ec2 Cookbook</title>
1078
+ <title_without_series>S3 and Ec2 Cookbook</title_without_series>
1079
+ <image_url>https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png</image_url>
1080
+ <small_image_url>https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png</small_image_url>
1081
+ <large_image_url/>
1082
+ <link>https://www.goodreads.com/book/show/13214782-s3-and-ec2-cookbook</link>
1083
+ <num_pages></num_pages>
1084
+ <format>Paperback</format>
1085
+ <edition_information/>
1086
+ <publisher>O'Reilly Media</publisher>
1087
+ <publication_day/>
1088
+ <publication_year/>
1089
+ <publication_month/>
1090
+ <average_rating>2.00</average_rating>
1091
+ <ratings_count>1</ratings_count>
1092
+ <description></description>
1093
+ <authors>
1094
+ <author>
1095
+ <id>18541</id>
1096
+ <name>Tim O&apos;Reilly</name>
1097
+ <role>Creator</role>
1098
+ <image_url nophoto='false'>
1099
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p5/18541.jpg]]>
1100
+ </image_url>
1101
+ <small_image_url nophoto='false'>
1102
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p2/18541.jpg]]>
1103
+ </small_image_url>
1104
+ <link><![CDATA[https://www.goodreads.com/author/show/18541.Tim_O_Reilly]]></link>
1105
+ <average_rating>3.97</average_rating>
1106
+ <ratings_count>3373</ratings_count>
1107
+ <text_reviews_count>366</text_reviews_count>
1108
+ </author>
1109
+ </authors>
1110
+ <published/>
1111
+ <work> <id>18400282</id>
1112
+ <uri>kca://work/amzn1.gr.work.v1.XM6gvFoZCIRZfLaCit0H9w</uri>
1113
+ </work></book>
1114
+
1115
+ <book>
1116
+ <id type="integer">1305153</id>
1117
+ <isbn>0937175366</isbn>
1118
+ <isbn13>9780937175361</isbn13>
1119
+ <text_reviews_count type="integer">0</text_reviews_count>
1120
+ <uri>kca://book/amzn1.gr.book.v1.G94ZEWQaw0gw1-1kS6_r2w</uri>
1121
+ <title>X Window Sys Users GD</title>
1122
+ <title_without_series>X Window Sys Users GD</title_without_series>
1123
+ <image_url>https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png</image_url>
1124
+ <small_image_url>https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png</small_image_url>
1125
+ <large_image_url/>
1126
+ <link>https://www.goodreads.com/book/show/1305153.X_Window_Sys_Users_GD</link>
1127
+ <num_pages>567</num_pages>
1128
+ <format>Paperback</format>
1129
+ <edition_information/>
1130
+ <publisher>Orient Book Distribution</publisher>
1131
+ <publication_day>1</publication_day>
1132
+ <publication_year>1989</publication_year>
1133
+ <publication_month>7</publication_month>
1134
+ <average_rating>2.00</average_rating>
1135
+ <ratings_count>1</ratings_count>
1136
+ <description></description>
1137
+ <authors>
1138
+ <author>
1139
+ <id>18541</id>
1140
+ <name>Tim O&apos;Reilly</name>
1141
+ <role></role>
1142
+ <image_url nophoto='false'>
1143
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p5/18541.jpg]]>
1144
+ </image_url>
1145
+ <small_image_url nophoto='false'>
1146
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p2/18541.jpg]]>
1147
+ </small_image_url>
1148
+ <link><![CDATA[https://www.goodreads.com/author/show/18541.Tim_O_Reilly]]></link>
1149
+ <average_rating>3.97</average_rating>
1150
+ <ratings_count>3373</ratings_count>
1151
+ <text_reviews_count>366</text_reviews_count>
1152
+ </author>
1153
+ </authors>
1154
+ <published>1989</published>
1155
+ <work> <id>1294392</id>
1156
+ <uri>kca://work/amzn1.gr.work.v1.ojgy4YqBkGJHbnQhImQG6g</uri>
1157
+ </work></book>
1158
+
1159
+ <book>
1160
+ <id type="integer">3236476</id>
1161
+ <isbn>0937175579</isbn>
1162
+ <isbn13>9780937175576</isbn13>
1163
+ <text_reviews_count type="integer">0</text_reviews_count>
1164
+ <uri>kca://book/amzn1.gr.book.v1.oOJDiMfDVw8RUYnzLL6Rcg</uri>
1165
+ <title>X Toolkit Intrinsics Reference Manual: R-4 Ed.</title>
1166
+ <title_without_series>X Toolkit Intrinsics Reference Manual: R-4 Ed.</title_without_series>
1167
+ <image_url>https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png</image_url>
1168
+ <small_image_url>https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png</small_image_url>
1169
+ <large_image_url/>
1170
+ <link>https://www.goodreads.com/book/show/3236476-x-toolkit-intrinsics-reference-manual</link>
1171
+ <num_pages></num_pages>
1172
+ <format>Paperback</format>
1173
+ <edition_information/>
1174
+ <publisher>Associates</publisher>
1175
+ <publication_day>1</publication_day>
1176
+ <publication_year>1990</publication_year>
1177
+ <publication_month>9</publication_month>
1178
+ <average_rating>2.00</average_rating>
1179
+ <ratings_count>1</ratings_count>
1180
+ <description></description>
1181
+ <authors>
1182
+ <author>
1183
+ <id>18541</id>
1184
+ <name>Tim O&apos;Reilly</name>
1185
+ <role></role>
1186
+ <image_url nophoto='false'>
1187
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p5/18541.jpg]]>
1188
+ </image_url>
1189
+ <small_image_url nophoto='false'>
1190
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p2/18541.jpg]]>
1191
+ </small_image_url>
1192
+ <link><![CDATA[https://www.goodreads.com/author/show/18541.Tim_O_Reilly]]></link>
1193
+ <average_rating>3.97</average_rating>
1194
+ <ratings_count>3373</ratings_count>
1195
+ <text_reviews_count>366</text_reviews_count>
1196
+ </author>
1197
+ </authors>
1198
+ <published>1990</published>
1199
+ <work> <id>3270996</id>
1200
+ <uri>kca://work/amzn1.gr.work.v1.SWOHspDp6QvNswCuXoCzVQ</uri>
1201
+ </work></book>
1202
+
1203
+ <book>
1204
+ <id type="integer">13214293</id>
1205
+ <isbn>0596003331</isbn>
1206
+ <isbn13>9780596003333</isbn13>
1207
+ <text_reviews_count type="integer">0</text_reviews_count>
1208
+ <uri>kca://book/amzn1.gr.book.v1.WVG_AFZk8NKFHrPVY1nJqw</uri>
1209
+ <title>The .Net CD Bookshelf</title>
1210
+ <title_without_series>The .Net CD Bookshelf</title_without_series>
1211
+ <image_url>https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png</image_url>
1212
+ <small_image_url>https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png</small_image_url>
1213
+ <large_image_url/>
1214
+ <link>https://www.goodreads.com/book/show/13214293-the-net-cd-bookshelf</link>
1215
+ <num_pages>336</num_pages>
1216
+ <format>Paperback</format>
1217
+ <edition_information/>
1218
+ <publisher>O'Reilly Media</publisher>
1219
+ <publication_day/>
1220
+ <publication_year/>
1221
+ <publication_month/>
1222
+ <average_rating>1.00</average_rating>
1223
+ <ratings_count>1</ratings_count>
1224
+ <description>Packed with seven key Microsoft .NET books, this CD-ROM delivers thousands ofpages of accessible and searchable information.</description>
1225
+ <authors>
1226
+ <author>
1227
+ <id>18541</id>
1228
+ <name>Tim O&apos;Reilly</name>
1229
+ <role></role>
1230
+ <image_url nophoto='false'>
1231
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p5/18541.jpg]]>
1232
+ </image_url>
1233
+ <small_image_url nophoto='false'>
1234
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p2/18541.jpg]]>
1235
+ </small_image_url>
1236
+ <link><![CDATA[https://www.goodreads.com/author/show/18541.Tim_O_Reilly]]></link>
1237
+ <average_rating>3.97</average_rating>
1238
+ <ratings_count>3373</ratings_count>
1239
+ <text_reviews_count>366</text_reviews_count>
1240
+ </author>
1241
+ </authors>
1242
+ <published/>
1243
+ <work> <id>18399613</id>
1244
+ <uri>kca://work/amzn1.gr.work.v1.A0F5jKJdvwcawhzn-RVfYw</uri>
1245
+ </work></book>
1246
+
1247
+ <book>
1248
+ <id type="integer">18474265</id>
1249
+ <isbn>0596157207</isbn>
1250
+ <isbn13>9780596157203</isbn13>
1251
+ <text_reviews_count type="integer">0</text_reviews_count>
1252
+ <uri>kca://book/amzn1.gr.book.v1.J7T2dPbteNHNdVgrIl9Z8Q</uri>
1253
+ <title>The Facebook Application Platform: An O'Reilly Radar Report</title>
1254
+ <title_without_series>The Facebook Application Platform: An O'Reilly Radar Report</title_without_series>
1255
+ <image_url>https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1379333731l/18474265._SX98_.jpg</image_url>
1256
+ <small_image_url>https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1379333731l/18474265._SX50_.jpg</small_image_url>
1257
+ <large_image_url/>
1258
+ <link>https://www.goodreads.com/book/show/18474265-the-facebook-application-platform</link>
1259
+ <num_pages>31</num_pages>
1260
+ <format>ebook</format>
1261
+ <edition_information/>
1262
+ <publisher>Radar</publisher>
1263
+ <publication_day>30</publication_day>
1264
+ <publication_year>2009</publication_year>
1265
+ <publication_month>6</publication_month>
1266
+ <average_rating>1.00</average_rating>
1267
+ <ratings_count>1</ratings_count>
1268
+ <description>Facebook bet that opening its Application Platform would spur growthand build buzz, giving it an edge in the white-hot social networkpopularity contest. Four months and nearly 5000 applications later, it looks like that bet is paying off. Is Facebook the next platformfor profits, too?Find out what it takes to launch a successful Facebook application, understand the new rules of the application development game in a Web2.0 world, and get the scoop on the most popular Facebook apps inthis new report from Tim O'Reilly and the O'Reilly Radar team.The report: Sizes up the Facebook opportunity--who's making money, and how?Lays out best practices of marketing with Facebook Applications, aka Social Media Optimization (SMO)Identifies the top 200 Facebook applications and plots their growthratesGoes beyond Facebook, and scopes out the emerging widget economyThe social network economy is sizzling, and "The Facebook ApplicationPlatform" is a must-read for anyone who wants in on the Facebookopportunity.</description>
1269
+ <authors>
1270
+ <author>
1271
+ <id>18541</id>
1272
+ <name>Tim O&apos;Reilly</name>
1273
+ <role></role>
1274
+ <image_url nophoto='false'>
1275
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p5/18541.jpg]]>
1276
+ </image_url>
1277
+ <small_image_url nophoto='false'>
1278
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p2/18541.jpg]]>
1279
+ </small_image_url>
1280
+ <link><![CDATA[https://www.goodreads.com/author/show/18541.Tim_O_Reilly]]></link>
1281
+ <average_rating>3.97</average_rating>
1282
+ <ratings_count>3373</ratings_count>
1283
+ <text_reviews_count>366</text_reviews_count>
1284
+ </author>
1285
+ </authors>
1286
+ <published>2009</published>
1287
+ <work> <id>26141513</id>
1288
+ <uri>kca://work/amzn1.gr.work.v1.KzsENVv-4gpLVcX_hR3o0Q</uri>
1289
+ </work></book>
1290
+
1291
+ <book>
1292
+ <id type="integer">40684457</id>
1293
+ <isbn>8441531390</isbn>
1294
+ <isbn13>9788441531390</isbn13>
1295
+ <text_reviews_count type="integer">0</text_reviews_count>
1296
+ <uri>kca://book/amzn1.gr.book.v1.VfoZ9XTxge6ImKccS45CVg</uri>
1297
+ <title>Twitter / The Twitter Book</title>
1298
+ <title_without_series>Twitter / The Twitter Book</title_without_series>
1299
+ <image_url>https://s.gr-assets.com/assets/nophoto/book/111x148-bcc042a9c91a29c1d680899eff700a03.png</image_url>
1300
+ <small_image_url>https://s.gr-assets.com/assets/nophoto/book/50x75-a91bf249278a81aabab721ef782c4a74.png</small_image_url>
1301
+ <large_image_url/>
1302
+ <link>https://www.goodreads.com/book/show/40684457-twitter-the-twitter-book</link>
1303
+ <num_pages></num_pages>
1304
+ <format></format>
1305
+ <edition_information/>
1306
+ <publisher></publisher>
1307
+ <publication_day></publication_day>
1308
+ <publication_year></publication_year>
1309
+ <publication_month></publication_month>
1310
+ <average_rating>0.0</average_rating>
1311
+ <ratings_count>0</ratings_count>
1312
+ <description></description>
1313
+ <authors>
1314
+ <author>
1315
+ <id>18541</id>
1316
+ <name>Tim O&apos;Reilly</name>
1317
+ <role></role>
1318
+ <image_url nophoto='false'>
1319
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p5/18541.jpg]]>
1320
+ </image_url>
1321
+ <small_image_url nophoto='false'>
1322
+ <![CDATA[https://images.gr-assets.com/authors/1199698411p2/18541.jpg]]>
1323
+ </small_image_url>
1324
+ <link><![CDATA[https://www.goodreads.com/author/show/18541.Tim_O_Reilly]]></link>
1325
+ <average_rating>3.97</average_rating>
1326
+ <ratings_count>3373</ratings_count>
1327
+ <text_reviews_count>366</text_reviews_count>
1328
+ </author>
1329
+ </authors>
1330
+ <published></published>
1331
+ <work> <id>63268033</id>
1332
+ <uri>kca://work/amzn1.gr.work.v1.5T2O8vziLFNMc0lS-sW4jA</uri>
1333
+ </work></book>
1334
+
1335
+ </books>
1336
+ </author>
1337
+
1338
+ </GoodreadsResponse>