readmill 0.0.1 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (67) hide show
  1. checksums.yaml +4 -4
  2. data/lib/readmill/client.rb +14 -0
  3. data/lib/readmill/client/books.rb +14 -1
  4. data/lib/readmill/client/closing_remarks.rb +22 -0
  5. data/lib/readmill/client/comments.rb +34 -0
  6. data/lib/readmill/client/highlights.rb +52 -0
  7. data/lib/readmill/client/locations.rb +22 -0
  8. data/lib/readmill/client/periods.rb +22 -0
  9. data/lib/readmill/client/readings.rb +77 -0
  10. data/lib/readmill/client/users.rb +33 -0
  11. data/lib/readmill/version.rb +1 -1
  12. data/spec/cassettes/readmill/client/books_book/should_request_a_book_from_readmill.yml +4 -4
  13. data/spec/cassettes/readmill/client/books_book/should_return_a_book.yml +4 -4
  14. data/spec/cassettes/readmill/client/books_book/with_closing_remarks_true_should_request_readers_for_a_book_from_readmill.yml +58 -0
  15. data/spec/cassettes/readmill/client/books_book/with_closing_remarks_true_should_return_an_array_of_users.yml +58 -0
  16. data/spec/cassettes/readmill/client/books_book/with_readers_true_should_request_readers_for_a_book_from_readmill.yml +52 -0
  17. data/spec/cassettes/readmill/client/books_book/with_readers_true_should_return_an_array_of_users.yml +52 -0
  18. data/spec/cassettes/readmill/client/books_books/should_request_all_books_from_readmill.yml +67 -17
  19. data/spec/cassettes/readmill/client/books_books/should_return_an_array_of_books.yml +66 -47
  20. data/spec/cassettes/readmill/client/closing_remarks_closing_remark/should_request_a_closing_remark_from_readmill.yml +54 -0
  21. data/spec/cassettes/readmill/client/closing_remarks_closing_remark/should_return_a_closing_remark.yml +54 -0
  22. data/spec/cassettes/readmill/client/comments_comment/should_request_a_comment_from_readmill.yml +53 -0
  23. data/spec/cassettes/readmill/client/comments_comment/should_return_a_comment.yml +53 -0
  24. data/spec/cassettes/readmill/client/comments_comments/should_request_all_comments_from_readmill.yml +54 -0
  25. data/spec/cassettes/readmill/client/comments_comments/should_return_an_array_of_comments.yml +54 -0
  26. data/spec/cassettes/readmill/client/highlights_highlight/should_request_a_highlight_from_readmill.yml +61 -0
  27. data/spec/cassettes/readmill/client/highlights_highlight/should_return_a_highlight.yml +61 -0
  28. data/spec/cassettes/readmill/client/highlights_highlight/with_comments_true_should_return_an_array_of_comments.yml +54 -0
  29. data/spec/cassettes/readmill/client/highlights_highlight/with_comments_true_should_return_comments_for_the_highlight_from_readmill.yml +54 -0
  30. data/spec/cassettes/readmill/client/highlights_highlights/should_request_all_highlights_from_readmill.yml +182 -0
  31. data/spec/cassettes/readmill/client/highlights_highlights/should_return_an_array_of_highlights.yml +182 -0
  32. data/spec/cassettes/readmill/client/highlights_highlights/with_a_reading_id_should_request_all_highlights_for_the_reading.yml +66 -0
  33. data/spec/cassettes/readmill/client/highlights_highlights/with_a_user_id_should_request_all_highlights_for_the_user.yml +191 -0
  34. data/spec/cassettes/readmill/client/locations_locations/should_request_all_locations_from_readmill.yml +52 -0
  35. data/spec/cassettes/readmill/client/locations_locations/should_return_an_array_of_locations.yml +52 -0
  36. data/spec/cassettes/readmill/client/periods_periods/should_request_all_periods_from_readmill.yml +52 -0
  37. data/spec/cassettes/readmill/client/periods_periods/should_return_an_array_of_periods.yml +52 -0
  38. data/spec/cassettes/readmill/client/readings_reading/should_request_a_reading_from_readmill.yml +54 -0
  39. data/spec/cassettes/readmill/client/readings_reading/should_return_a_reading.yml +54 -0
  40. data/spec/cassettes/readmill/client/readings_reading/with_highlights_true_should_request_highlights_for_the_reading_from_readmill.yml +90 -0
  41. data/spec/cassettes/readmill/client/readings_reading/with_highlights_true_should_return_an_array_of_highlights.yml +90 -0
  42. data/spec/cassettes/readmill/client/readings_reading/with_locations_true_should_request_locations_for_the_reading_from_readmill.yml +52 -0
  43. data/spec/cassettes/readmill/client/readings_reading/with_locations_true_should_return_an_array_of_locations.yml +52 -0
  44. data/spec/cassettes/readmill/client/readings_reading/with_periods_true_and_locations_true_should_raise_an_argument_error.yml +52 -0
  45. data/spec/cassettes/readmill/client/readings_reading/with_periods_true_should_request_periods_for_the_reading_from_readmill.yml +52 -0
  46. data/spec/cassettes/readmill/client/readings_reading/with_periods_true_should_return_an_array_of_periods.yml +52 -0
  47. data/spec/cassettes/readmill/client/readings_readings/should_request_all_readings_from_readmill.yml +85 -0
  48. data/spec/cassettes/readmill/client/readings_readings/should_return_an_array_of_readings.yml +85 -0
  49. data/spec/cassettes/readmill/client/readings_readings/with_a_book_id_should_request_all_readings_for_the_book.yml +54 -0
  50. data/spec/cassettes/readmill/client/readings_readings/with_a_book_id_should_return_an_array_of_readings.yml +54 -0
  51. data/spec/cassettes/readmill/client/readings_readings/with_a_user_id_should_request_all_readings_for_the_user.yml +94 -0
  52. data/spec/cassettes/readmill/client/readings_readings/with_a_user_id_should_return_an_array_of_readings.yml +94 -0
  53. data/spec/cassettes/readmill/client/users_user/should_request_a_user_from_readmill.yml +54 -0
  54. data/spec/cassettes/readmill/client/users_user/should_return_a_user.yml +54 -0
  55. data/spec/cassettes/readmill/client/users_user/with_followers_true_should_request_all_followers_for_a_user.yml +86 -0
  56. data/spec/cassettes/readmill/client/users_user/with_followers_true_should_return_an_array_of_users.yml +86 -0
  57. data/spec/cassettes/readmill/client/users_user/with_followings_true_should_request_all_followings_for_a_user.yml +80 -0
  58. data/spec/cassettes/readmill/client/users_user/with_followings_true_should_return_an_array_of_users.yml +80 -0
  59. data/spec/readmill/client/books_spec.rb +44 -5
  60. data/spec/readmill/client/closing_remarks_spec.rb +19 -0
  61. data/spec/readmill/client/comments_spec.rb +33 -0
  62. data/spec/readmill/client/highlights_spec.rb +69 -0
  63. data/spec/readmill/client/locations_spec.rb +19 -0
  64. data/spec/readmill/client/periods_spec.rb +19 -0
  65. data/spec/readmill/client/readings_spec.rb +127 -0
  66. data/spec/readmill/client/users_spec.rb +57 -0
  67. metadata +108 -1
@@ -0,0 +1,54 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.readmill.com/v2/highlights/829035/comments
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - Faraday v0.8.8
12
+ Authorization:
13
+ - Client READMILL_CLIENT_ID
14
+ Accept-Encoding:
15
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
16
+ Accept:
17
+ - '*/*'
18
+ response:
19
+ status:
20
+ code: 200
21
+ message: OK
22
+ headers:
23
+ Cache-Control:
24
+ - must-revalidate, private, max-age=0
25
+ Content-Type:
26
+ - application/json; charset=utf-8
27
+ Date:
28
+ - Mon, 16 Dec 2013 16:11:10 GMT
29
+ Etag:
30
+ - '"a6ac51b874e196a825c611f0e6f1ffa1"'
31
+ Server:
32
+ - nginx/1.0.12
33
+ Status:
34
+ - 200 OK
35
+ X-Rack-Cache:
36
+ - miss
37
+ X-Request-Id:
38
+ - 9f30b658cdb6c627eb994f426a180627
39
+ X-Runtime:
40
+ - '0.113548'
41
+ X-Ua-Compatible:
42
+ - IE=Edge,chrome=1
43
+ Content-Length:
44
+ - '641'
45
+ Connection:
46
+ - keep-alive
47
+ body:
48
+ encoding: UTF-8
49
+ string: '{"pagination":{"next":null},"items":[{"comment":{"id":112631,"content":"True
50
+ story.","posted_at":"2013-12-16T15:46:32Z","reading":{"id":313118},"highlight":{"id":829035},"closing_remark":null,"user":{"id":104014,"username":"G33kyGurl","firstname":"Donna","fullname":"Donna
51
+ Taylor","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Favatars%252Fd50e2c82d21c92c9cbf938dd77b9b38bcf59b379-original.png&width=50","followers_count":4,"followings_count":4,"permalink_url":"https://readmill.com/G33kyGurl"},"entities":{"hashtags":[]}}}],"status":200}'
52
+ http_version:
53
+ recorded_at: Mon, 16 Dec 2013 16:11:09 GMT
54
+ recorded_with: VCR 2.8.0
@@ -0,0 +1,182 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.readmill.com/v2/highlights
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - Faraday v0.8.8
12
+ Authorization:
13
+ - Client READMILL_CLIENT_ID
14
+ Accept-Encoding:
15
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
16
+ Accept:
17
+ - '*/*'
18
+ response:
19
+ status:
20
+ code: 200
21
+ message: OK
22
+ headers:
23
+ Cache-Control:
24
+ - must-revalidate, private, max-age=0
25
+ Content-Type:
26
+ - application/json; charset=utf-8
27
+ Date:
28
+ - Mon, 16 Dec 2013 06:18:45 GMT
29
+ Etag:
30
+ - '"0f16d46bb9a36427ff9366b60a9a7b97"'
31
+ Server:
32
+ - nginx/1.0.12
33
+ Status:
34
+ - 200 OK
35
+ X-Rack-Cache:
36
+ - miss
37
+ X-Request-Id:
38
+ - 55045b4eb91a7957c28f2c68628c2a3b
39
+ X-Runtime:
40
+ - '0.356521'
41
+ X-Ua-Compatible:
42
+ - IE=Edge,chrome=1
43
+ Content-Length:
44
+ - '24543'
45
+ Connection:
46
+ - keep-alive
47
+ body:
48
+ encoding: UTF-8
49
+ string: '{"pagination":{"next":"https://api.readmill.com/v2/highlights?offset=0&order=highlighted_at&to=2013-12-16+05%3A59%3A00+UTC"},"items":[{"highlight":{"id":827443,"position":0.0967196,"content":"\u0438\u0433\u0440\u0438\u0432\u043e\u0441\u0442\u044c
50
+ \u0438 \u043b\u0435\u0433\u043a\u043e\u043c\u044b\u0441\u043b\u0435\u043d\u043d\u043e\u0435
51
+ \u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u0435 \u043a \u0436\u0438\u0437\u043d\u0438
52
+ \u0438 \u0436\u0435\u043d\u0449\u0438\u043d\u0430\u043c","highlighted_at":"2013-12-16T06:18:43Z","permalink":"gwfnog","permalink_url":"https://readmill.com/koertee1/reads/novaia-zhzhizn-biez-trusov/highlights/gwfnog","user":{"id":209589,"username":"koertee1","firstname":null,"fullname":"koertee1","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/koertee1"},"locators":{"position":0.09671962,"mid":"\u0438\u0433\u0440\u0438\u0432\u043e\u0441\u0442\u044c
53
+ \u0438 \u043b\u0435\u0433\u043a\u043e\u043c\u044b\u0441\u043b\u0435\u043d\u043d\u043e\u0435
54
+ \u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u0435 \u043a \u0436\u0438\u0437\u043d\u0438
55
+ \u0438 \u0436\u0435\u043d\u0449\u0438\u043d\u0430\u043c","post":" \u0434\u0430\u044e\u0442
56
+ \u043c\u0443\u0436\u0447\u0438\u043d\u0435 \u043f\u0440\u0430\u0432\u043e
57
+ \u043d\u0430 \u043f\u043e\u0434\u043e\u0431\u043d\u044b","rmsdk":{"start":"OPS/ch1-4.xhtml#point(/1/4/2/13/60/1:13)","end":"OPS/ch1-4.xhtml#point(/1/4/2/13/60/1:116)"},"pre":"\u0438
58
+ \u043f\u043e\u0434\u043a\u0430\u0431\u043b\u0443\u0447\u043d\u0438\u043a\u043e\u0432
59
+ \u043f\u0438\u043d\u043a\u0430! \u0422\u043e\u043b\u044c\u043a\u043e "},"comments_count":0,"likes_count":0,"reading":{"id":441899}}},{"highlight":{"id":827442,"position":0.0967662,"content":"\u043a
60
+ \u0436\u0438\u0437\u043d\u0438 \u0438 \u0436\u0435\u043d\u0449\u0438\u043d\u0430\u043c","highlighted_at":"2013-12-16T06:18:37Z","permalink":"uq877q","permalink_url":"https://readmill.com/koertee1/reads/novaia-zhzhizn-biez-trusov/highlights/uq877q","user":{"id":209589,"username":"koertee1","firstname":null,"fullname":"koertee1","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/koertee1"},"locators":{"position":0.09676616,"mid":"\u043a
61
+ \u0436\u0438\u0437\u043d\u0438 \u0438 \u0436\u0435\u043d\u0449\u0438\u043d\u0430\u043c","post":"
62
+ \u0434\u0430\u044e\u0442 \u043c\u0443\u0436\u0447\u0438\u043d\u0435 \u043f\u0440\u0430\u0432\u043e
63
+ \u043d\u0430 \u043f\u043e\u0434\u043e\u0431\u043d\u044b","rmsdk":{"start":"OPS/ch1-4.xhtml#point(/1/4/2/13/60/1:83)","end":"OPS/ch1-4.xhtml#point(/1/4/2/13/60/1:116)"},"pre":"\u0442\u044c
64
+ \u0438 \u043b\u0435\u0433\u043a\u043e\u043c\u044b\u0441\u043b\u0435\u043d\u043d\u043e\u0435
65
+ \u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u0435 "},"comments_count":0,"likes_count":0,"reading":{"id":441899}}},{"highlight":{"id":827438,"position":0.973732,"content":"He
66
+ always fell asleep as easily as some great lazing cat, he only had to close
67
+ his eyes and moments later he\u2019d be gone, while my own mind kept on whirring
68
+ round with scattered thoughts and images.","highlighted_at":"2013-12-16T06:17:21Z","permalink":"orbgva","permalink_url":"https://readmill.com/keels223/reads/the-winter-sea/highlights/orbgva","user":{"id":35202,"username":"keels223","firstname":"Keely","fullname":"Keely
69
+ Galgano","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":1,"followings_count":6,"permalink_url":"https://readmill.com/keels223"},"locators":{"position":0.9737325,"mid":"He
70
+ always fell asleep as easily as some great lazing cat, he only had to close
71
+ his eyes and moments later he\u2019d be gone, while my own mind kept on whirring
72
+ round with scattered thoughts and images.","post":" I felt his breathing slow
73
+ aga","rmsdk":{"start":"text/part46.xhtml#point(/1/4/2/3/67/1:47)","end":"text/part46.xhtml#point(/1/4/2/3/67/1:245)"},"pre":"I
74
+ could hear it in his voice. "},"comments_count":0,"likes_count":0,"reading":{"id":439319}}},{"highlight":{"id":827437,"position":0.58398,"content":"that
75
+ the remaining cold pork bones and mustard in William''s plate might but divide
76
+ her feelings with the broken egg-shells in Mr. Crawford''s.","highlighted_at":"2013-12-16T06:15:01Z","permalink":"lo0ivw","permalink_url":"https://readmill.com/whovian7/reads/mansfield-park/highlights/lo0ivw","user":{"id":152726,"username":"whovian7","firstname":null,"fullname":"whovian7","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/whovian7"},"locators":{"position":0.5839799,"mid":"that
77
+ the remaining cold pork bones and mustard in William''s plate might but divide
78
+ her feelings with the broken egg-shells in Mr. Crawford''s.","post":" She
79
+ sat and cried con amore a","rmsdk":{"start":"OPS/main28.xml#point(/1/4/2/2/6/4/1:304)","end":"OPS/main28.xml#point(/1/4/2/2/6/4/1:445)"},"pre":"se
80
+ her tender enthusiasm, and "},"comments_count":0,"likes_count":0,"reading":{"id":430600}}},{"highlight":{"id":827436,"position":0.214665,"content":"It
81
+ is of course equally correct to write the above as two sentences each, replacing
82
+ the semicolons by periods.","highlighted_at":"2013-12-16T06:14:36Z","permalink":"yn38qa","permalink_url":"https://readmill.com/iammai/reads/the-elements-of-style/highlights/yn38qa","user":{"id":210723,"username":"iammai","firstname":"Mai","fullname":"Mai
83
+ D.","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Favatars%252F63c360ff4adb04a5b9b7e615a467a1741cab0b92-original.png&width=50","followers_count":0,"followings_count":4,"permalink_url":"https://readmill.com/iammai"},"locators":{"position":0.2146651,"mid":"It
84
+ is of course equally correct to write the above as two sentences each, replacing
85
+ the semicolons by periods.","post":" Stevenson''s romances are ent","rmsdk":{"start":"OPS/main5.xml#point(/1/4/2/2/4/6/1:0)","end":"OPS/main5.xml#point(/1/4/2/2/4/7:0)"},"pre":"nnot
86
+ reach town before dark. "},"comments_count":0,"likes_count":0,"reading":{"id":443411}}},{"highlight":{"id":827435,"position":0.0890895,"content":"Don\u2019t
87
+ let a job title define you. Do what makes sense, not what process dictates.","highlighted_at":"2013-12-16T06:13:30Z","permalink":"mr1nqw","permalink_url":"https://readmill.com/a_shipley22/reads/the-user-experience-team-of-one/highlights/mr1nqw","user":{"id":208509,"username":"a_shipley22","firstname":"Abriel","fullname":"Abriel
88
+ Shipley","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/a_shipley22"},"locators":{"position":0.08908954,"mid":"Don\u2019t
89
+ let a job title define you. Do what makes sense, not what process dictates.","post":"
90
+ And most of all, never stop p","rmsdk":{"start":"OEBPS/html/pref03.html#point(/1/4/18/1:345)","end":"OEBPS/html/pref03.html#point(/1/4/18/1:428)"},"pre":"of
91
+ seemingly unrelated ideas. "},"comments_count":1,"likes_count":0,"reading":{"id":434744}}},{"highlight":{"id":827434,"position":0.220045,"content":"If
92
+ a conjunction is inserted, the proper mark is a comma","highlighted_at":"2013-12-16T06:12:54Z","permalink":"umaflg","permalink_url":"https://readmill.com/iammai/reads/the-elements-of-style/highlights/umaflg","user":{"id":210723,"username":"iammai","firstname":"Mai","fullname":"Mai
93
+ D.","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Favatars%252F63c360ff4adb04a5b9b7e615a467a1741cab0b92-original.png&width=50","followers_count":0,"followings_count":4,"permalink_url":"https://readmill.com/iammai"},"locators":{"position":0.220045,"mid":"If
94
+ a conjunction is inserted, the proper mark is a comma","post":" (Rule 4).
95
+ Stevenson''s romanc","rmsdk":{"start":"OPS/main5.xml#point(/1/4/2/2/4/10/1:0)","end":"OPS/main5.xml#point(/1/4/2/2/4/10/1:56)"},"pre":"nnot
96
+ reach town before dark. "},"comments_count":0,"likes_count":0,"reading":{"id":443411}}},{"highlight":{"id":827432,"position":0.208073,"content":"If
97
+ two or more clauses, grammatically complete and not joined by a conjunction,
98
+ are to form a single compound sentence, the proper mark of punctuation is
99
+ a semicolon.","highlighted_at":"2013-12-16T06:12:21Z","permalink":"z84-hg","permalink_url":"https://readmill.com/iammai/reads/the-elements-of-style/highlights/z84-hg","user":{"id":210723,"username":"iammai","firstname":"Mai","fullname":"Mai
100
+ D.","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Favatars%252F63c360ff4adb04a5b9b7e615a467a1741cab0b92-original.png&width=50","followers_count":0,"followings_count":4,"permalink_url":"https://readmill.com/iammai"},"locators":{"position":0.2080731,"mid":"If
101
+ two or more clauses, grammatically complete and not joined by a conjunction,
102
+ are to form a single compound sentence, the proper mark of punctuation is
103
+ a semicolon.","post":" Stevenson''s romances are ent","rmsdk":{"start":"OPS/main5.xml#point(/1/4/2/2/4/1:1)","end":"OPS/main5.xml#point(/1/4/2/2/4/2/1:166)"},"pre":"ependent
104
+ clauses by a comma. "},"comments_count":0,"likes_count":0,"reading":{"id":443411}}},{"highlight":{"id":827430,"position":0.141794,"content":"\u201cwhen
105
+ the point of contact between the product and the people becomes a point of
106
+ friction, then the [designer] has failed. On the other hand, if people are
107
+ made safer, more comfortable, more eager to purchase, more efficient\u2014or
108
+ just plain happier\u2014by contact with the product, then the designer has
109
+ succeeded.\u201d","highlighted_at":"2013-12-16T06:11:39Z","permalink":"lhugka","permalink_url":"https://readmill.com/a_shipley22/reads/the-user-experience-team-of-one/highlights/lhugka","user":{"id":208509,"username":"a_shipley22","firstname":"Abriel","fullname":"Abriel
110
+ Shipley","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/a_shipley22"},"locators":{"position":0.1417938,"mid":"\u201cwhen
111
+ the point of contact between the product and the people becomes a point of
112
+ friction, then the [designer] has failed. On the other hand, if people are
113
+ made safer, more comfortable, more eager to purchase, more efficient\u2014or
114
+ just plain happier\u2014by contact with the product, then the designer has
115
+ succeeded.\u201d","post":" FIGURE 1.7Dreyfuss created J","rmsdk":{"start":"OEBPS/html/ch01.html#point(/1/4/82/8:24)","end":"OEBPS/html/ch01.html#point(/1/4/82/8:341)"},"pre":"People,
116
+ Henry Dreyfuss writes "},"comments_count":1,"likes_count":0,"reading":{"id":434744}}},{"highlight":{"id":827429,"position":0.577542,"content":"\"I
117
+ am worn out with civility,\"","highlighted_at":"2013-12-16T06:09:42Z","permalink":"f5kc8q","permalink_url":"https://readmill.com/whovian7/reads/mansfield-park/highlights/f5kc8q","user":{"id":152726,"username":"whovian7","firstname":null,"fullname":"whovian7","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/whovian7"},"locators":{"position":0.5775425,"mid":"\"I
118
+ am worn out with civility,\"","post":" said he. \"I have been talking","rmsdk":{"start":"OPS/main27.xml#point(/1/4/2/2/6/40/1:1716)","end":"OPS/main27.xml#point(/1/4/2/2/6/40/1:1746)"},"pre":"th
119
+ whom it could find repose. "},"comments_count":0,"likes_count":0,"reading":{"id":430600}}},{"highlight":{"id":827428,"position":0.148813,"content":"Similar
120
+ clauses introduced by where and when are similarly punctuated.","highlighted_at":"2013-12-16T06:09:39Z","permalink":"rg-osw","permalink_url":"https://readmill.com/iammai/reads/the-elements-of-style/highlights/rg-osw","user":{"id":210723,"username":"iammai","firstname":"Mai","fullname":"Mai
121
+ D.","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Favatars%252F63c360ff4adb04a5b9b7e615a467a1741cab0b92-original.png&width=50","followers_count":0,"followings_count":4,"permalink_url":"https://readmill.com/iammai"},"locators":{"position":0.1488129,"mid":"Similar
122
+ clauses introduced by where and when are similarly punctuated.","post":" In
123
+ 1769, when Napoleon was b","rmsdk":{"start":"OPS/main3.xml#point(/1/4/2/2/4/17:1)","end":"OPS/main3.xml#point(/1/4/2/2/4/18/5:27)"},"pre":"me
124
+ more and more interested. "},"comments_count":0,"likes_count":0,"reading":{"id":443411}}},{"highlight":{"id":827427,"position":0.1466,"content":"Non-restrictive
125
+ relative clauses are, in accordance with this rule, set off by commas.","highlighted_at":"2013-12-16T06:09:22Z","permalink":"5lposg","permalink_url":"https://readmill.com/iammai/reads/the-elements-of-style/highlights/5lposg","user":{"id":210723,"username":"iammai","firstname":"Mai","fullname":"Mai
126
+ D.","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Favatars%252F63c360ff4adb04a5b9b7e615a467a1741cab0b92-original.png&width=50","followers_count":0,"followings_count":4,"permalink_url":"https://readmill.com/iammai"},"locators":{"position":0.1465996,"mid":"Non-restrictive
127
+ relative clauses are, in accordance with this rule, set off by commas.","post":"
128
+ The audience, which had at f","rmsdk":{"start":"OPS/main3.xml#point(/1/4/2/2/4/13:1)","end":"OPS/main3.xml#point(/1/4/2/2/4/15:0)"},"pre":"ect
129
+ health, is indefensible. "},"comments_count":0,"likes_count":0,"reading":{"id":443411}}},{"highlight":{"id":827426,"position":0.160148,"content":"Restrictive
130
+ relative clauses are not set off by commas.","highlighted_at":"2013-12-16T06:08:18Z","permalink":"bmfv0q","permalink_url":"https://readmill.com/iammai/reads/the-elements-of-style/highlights/bmfv0q","user":{"id":210723,"username":"iammai","firstname":"Mai","fullname":"Mai
131
+ D.","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Favatars%252F63c360ff4adb04a5b9b7e615a467a1741cab0b92-original.png&width=50","followers_count":0,"followings_count":4,"permalink_url":"https://readmill.com/iammai"},"locators":{"position":0.1601478,"mid":"Restrictive
132
+ relative clauses are not set off by commas.","post":" The candidate who best
133
+ meets","rmsdk":{"start":"OPS/main3.xml#point(/1/4/2/2/4/25:1)","end":"OPS/main3.xml#point(/1/4/2/2/4/26/1:55)"},"pre":"
134
+ few miles from Bridgewater. "},"comments_count":0,"likes_count":0,"reading":{"id":443411}}},{"highlight":{"id":827424,"position":0.0530568,"content":"equal
135
+ indifferent abandon.","highlighted_at":"2013-12-16T06:06:10Z","permalink":"fwgy2w","permalink_url":"https://readmill.com/VonBabyDoll/reads/behemoth-1/highlights/fwgy2w","user":{"id":119957,"username":"VonBabyDoll","firstname":"Sever","fullname":"Sever
136
+ Gray","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":1,"followings_count":2,"permalink_url":"https://readmill.com/VonBabyDoll"},"locators":{"position":0.05305676,"mid":"equal
137
+ indifferent abandon.","post":" Of course, in the world she i","rmsdk":{"start":"OPS/main6.xml#point(/1/4/2/2/4/2/1:268)","end":"OPS/main6.xml#point(/1/4/2/2/4/3:0)"},"pre":"nd
138
+ wood and carbon-fibre with "},"comments_count":0,"likes_count":0,"reading":{"id":440291}}},{"highlight":{"id":827421,"position":0.0857921,"content":"\u041d\u0438\u043a\u043e\u0433\u0434\u0430
139
+ \u043d\u0435 \u0441\u043b\u0443\u0448\u0430\u0439, \u0447\u0442\u043e \u0433\u043e\u0432\u043e\u0440\u0438\u0442
140
+ \u0440\u0430\u0437\u0443\u043c \u0436\u0435\u043d\u0449\u0438\u043d\u044b.
141
+ \u0421\u043b\u0443\u0448\u0430\u0439, \u0447\u0442\u043e \u0433\u043e\u0432\u043e\u0440\u0438\u0442
142
+ \u0435\u0435 \u0442\u0435\u043b\u043e.","highlighted_at":"2013-12-16T06:02:52Z","permalink":"8vvygw","permalink_url":"https://readmill.com/koertee1/reads/novaia-zhzhizn-biez-trusov/highlights/8vvygw","user":{"id":209589,"username":"koertee1","firstname":null,"fullname":"koertee1","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/koertee1"},"locators":{"position":0.08579206,"mid":"\u041d\u0438\u043a\u043e\u0433\u0434\u0430
143
+ \u043d\u0435 \u0441\u043b\u0443\u0448\u0430\u0439, \u0447\u0442\u043e \u0433\u043e\u0432\u043e\u0440\u0438\u0442
144
+ \u0440\u0430\u0437\u0443\u043c \u0436\u0435\u043d\u0449\u0438\u043d\u044b.
145
+ \u0421\u043b\u0443\u0448\u0430\u0439, \u0447\u0442\u043e \u0433\u043e\u0432\u043e\u0440\u0438\u0442
146
+ \u0435\u0435 \u0442\u0435\u043b\u043e.","post":" \u0421\u043e\u0431\u043b\u0430\u0437\u043d\u0435\u043d\u0438\u0435
147
+ \u2013 \u044d\u0442\u043e \u0438\u0441\u043a\u0443\u0441\u0441\u0442\u0432\u043e
148
+ ","rmsdk":{"start":"OPS/ch1-4.xhtml#point(/1/4/2/11/18/2/1:14)","end":"OPS/ch1-4.xhtml#point(/1/4/2/11/18/3:0)"},"pre":"
149
+ \u043c\u043d\u0435!\u00bb \u2013 \u0433\u043e\u0432\u043e\u0440\u0438\u0442
150
+ \u043e\u043d\u0430! \u0420\u0415\u0417\u042e\u041c\u0415: "},"comments_count":0,"likes_count":0,"reading":{"id":441899}}},{"highlight":{"id":827415,"position":0.285714,"content":"Once
151
+ we have a corpus we typically want to modify the documents in it, e.g., stemming,
152
+ stopword removal, et cetera. In tm , all this functionality is subsumed into
153
+ the concept of a transformation . Transformations are done via the tm_map()
154
+ function which applies (maps) a function to all elements of the corpus. Basically,
155
+ all transformations work on single text documents and tm_map() just applies
156
+ them to all documents in a corpus","highlighted_at":"2013-12-16T06:00:35Z","permalink":"ft4keq","permalink_url":"https://readmill.com/benoitpointet/reads/introduction-to-the-tm-package-text-mining-in-r/highlights/ft4keq","user":{"id":149062,"username":"benoitpointet","firstname":"Beno\u00eet","fullname":"Beno\u00eet
157
+ Pointet","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Favatars%252Faf9e073ffc8ebfe546aebe4944817885b9c6d189-original.png&width=50","followers_count":1,"followings_count":4,"permalink_url":"https://readmill.com/benoitpointet"},"locators":{"position":0.2857143,"mid":"Once
158
+ we have a corpus we typically want to modify the documents in it, e.g., stemming,
159
+ stopword removal, et cetera. In tm , all this functionality is subsumed into
160
+ the concept of a transformation . Transformations are done via the tm_map()
161
+ function which applies (maps) a function to all elements of the corpus. Basically,
162
+ all transformations work on single text documents and tm_map() just applies
163
+ them to all documents in a corpus","post":". Converting to Plain Text Do","rmsdk":{"start":"#pdfloc(a35a,2,43,0,0,0,0,1)","end":"#pdfloc(a35a,2,73,26,0,0,1,1)"},"pre":"t\"]])
164
+ [1] TRUE Transformations "},"comments_count":0,"likes_count":0,"reading":{"id":442928}}},{"highlight":{"id":827412,"position":0.565918,"content":"epoch.","highlighted_at":"2013-12-16T05:59:59Z","permalink":"ltqmxa","permalink_url":"https://readmill.com/whovian7/reads/mansfield-park/highlights/ltqmxa","user":{"id":152726,"username":"whovian7","firstname":null,"fullname":"whovian7","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/whovian7"},"locators":{"position":0.5659176,"mid":"epoch.","post":"
165
+ The stiffness of the meeting ","rmsdk":{"start":"OPS/main27.xml#point(/1/4/2/2/6/16/1:58)","end":"OPS/main27.xml#point(/1/4/2/2/6/16/1:64)"},"pre":"nd
166
+ Crawfords was a favourable "},"comments_count":0,"likes_count":0,"reading":{"id":430600}}},{"highlight":{"id":827411,"position":0.0659341,"content":"Ella
167
+ no es hermosa, pero yo tampoco lo soy. Tampoco es que sea fea, aunque yo tampoco
168
+ lo soy","highlighted_at":"2013-12-16T05:59:52Z","permalink":"kaq7eq","permalink_url":"https://readmill.com/ortizmendoza1972/reads/mo-han/highlights/kaq7eq","user":{"id":200970,"username":"ortizmendoza1972","firstname":"Francisco","fullname":"Francisco
169
+ Ortiz","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/ortizmendoza1972"},"locators":{"position":0.06593407,"mid":"Ella
170
+ no es hermosa, pero yo tampoco lo soy. Tampoco es que sea fea, aunque yo tampoco
171
+ lo soy","post":". No era m\u00e1s que una ni\u00f1a des","rmsdk":{"start":"#pdfloc(4971,24,187,25,4,0,0,1)","end":"#pdfloc(4971,24,195,7,1,0,1,1)"},"pre":"n
172
+ del ej\u00e9rcito el a\u00f1o pasado. "},"comments_count":0,"likes_count":0,"reading":{"id":416468}}},{"highlight":{"id":827410,"position":0.565611,"content":"and
173
+ to curtsey, and speak again.","highlighted_at":"2013-12-16T05:59:44Z","permalink":"9bnkrg","permalink_url":"https://readmill.com/whovian7/reads/mansfield-park/highlights/9bnkrg","user":{"id":152726,"username":"whovian7","firstname":null,"fullname":"whovian7","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/whovian7"},"locators":{"position":0.5656107,"mid":"and
174
+ to curtsey, and speak again.","post":" This was a hard duty, and she","rmsdk":{"start":"OPS/main27.xml#point(/1/4/2/2/6/14/1:475)","end":"OPS/main27.xml#point(/1/4/2/2/6/14/1:507)"},"pre":",
175
+ and forced to be spoken to, "},"comments_count":0,"likes_count":0,"reading":{"id":430600}}},{"highlight":{"id":827409,"position":0.565523,"content":"She
176
+ was introduced here and there by her uncle, and forced to be spoken to,","highlighted_at":"2013-12-16T05:59:36Z","permalink":"rkg02w","permalink_url":"https://readmill.com/whovian7/reads/mansfield-park/highlights/rkg02w","user":{"id":152726,"username":"whovian7","firstname":null,"fullname":"whovian7","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/whovian7"},"locators":{"position":0.5655227,"mid":"She
177
+ was introduced here and there by her uncle, and forced to be spoken to,","post":"
178
+ and to curtsey, and speak aga","rmsdk":{"start":"OPS/main27.xml#point(/1/4/2/2/6/14/1:399)","end":"OPS/main27.xml#point(/1/4/2/2/6/14/1:474)"},"pre":"on
179
+ to endure something worse. "},"comments_count":0,"likes_count":0,"reading":{"id":430600}}}],"status":200}'
180
+ http_version:
181
+ recorded_at: Mon, 16 Dec 2013 06:18:44 GMT
182
+ recorded_with: VCR 2.8.0
@@ -0,0 +1,182 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.readmill.com/v2/highlights
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - Faraday v0.8.8
12
+ Authorization:
13
+ - Client READMILL_CLIENT_ID
14
+ Accept-Encoding:
15
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
16
+ Accept:
17
+ - '*/*'
18
+ response:
19
+ status:
20
+ code: 200
21
+ message: OK
22
+ headers:
23
+ Cache-Control:
24
+ - must-revalidate, private, max-age=0
25
+ Content-Type:
26
+ - application/json; charset=utf-8
27
+ Date:
28
+ - Mon, 16 Dec 2013 06:18:46 GMT
29
+ Etag:
30
+ - '"0f16d46bb9a36427ff9366b60a9a7b97"'
31
+ Server:
32
+ - nginx/1.0.12
33
+ Status:
34
+ - 200 OK
35
+ X-Rack-Cache:
36
+ - miss
37
+ X-Request-Id:
38
+ - 236680e4e207c9a6963ef600b6a8a7bb
39
+ X-Runtime:
40
+ - '0.548315'
41
+ X-Ua-Compatible:
42
+ - IE=Edge,chrome=1
43
+ Content-Length:
44
+ - '24543'
45
+ Connection:
46
+ - keep-alive
47
+ body:
48
+ encoding: UTF-8
49
+ string: '{"pagination":{"next":"https://api.readmill.com/v2/highlights?offset=0&order=highlighted_at&to=2013-12-16+05%3A59%3A00+UTC"},"items":[{"highlight":{"id":827443,"position":0.0967196,"content":"\u0438\u0433\u0440\u0438\u0432\u043e\u0441\u0442\u044c
50
+ \u0438 \u043b\u0435\u0433\u043a\u043e\u043c\u044b\u0441\u043b\u0435\u043d\u043d\u043e\u0435
51
+ \u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u0435 \u043a \u0436\u0438\u0437\u043d\u0438
52
+ \u0438 \u0436\u0435\u043d\u0449\u0438\u043d\u0430\u043c","highlighted_at":"2013-12-16T06:18:43Z","permalink":"gwfnog","permalink_url":"https://readmill.com/koertee1/reads/novaia-zhzhizn-biez-trusov/highlights/gwfnog","user":{"id":209589,"username":"koertee1","firstname":null,"fullname":"koertee1","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/koertee1"},"locators":{"position":0.09671962,"mid":"\u0438\u0433\u0440\u0438\u0432\u043e\u0441\u0442\u044c
53
+ \u0438 \u043b\u0435\u0433\u043a\u043e\u043c\u044b\u0441\u043b\u0435\u043d\u043d\u043e\u0435
54
+ \u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u0435 \u043a \u0436\u0438\u0437\u043d\u0438
55
+ \u0438 \u0436\u0435\u043d\u0449\u0438\u043d\u0430\u043c","post":" \u0434\u0430\u044e\u0442
56
+ \u043c\u0443\u0436\u0447\u0438\u043d\u0435 \u043f\u0440\u0430\u0432\u043e
57
+ \u043d\u0430 \u043f\u043e\u0434\u043e\u0431\u043d\u044b","rmsdk":{"start":"OPS/ch1-4.xhtml#point(/1/4/2/13/60/1:13)","end":"OPS/ch1-4.xhtml#point(/1/4/2/13/60/1:116)"},"pre":"\u0438
58
+ \u043f\u043e\u0434\u043a\u0430\u0431\u043b\u0443\u0447\u043d\u0438\u043a\u043e\u0432
59
+ \u043f\u0438\u043d\u043a\u0430! \u0422\u043e\u043b\u044c\u043a\u043e "},"comments_count":0,"likes_count":0,"reading":{"id":441899}}},{"highlight":{"id":827442,"position":0.0967662,"content":"\u043a
60
+ \u0436\u0438\u0437\u043d\u0438 \u0438 \u0436\u0435\u043d\u0449\u0438\u043d\u0430\u043c","highlighted_at":"2013-12-16T06:18:37Z","permalink":"uq877q","permalink_url":"https://readmill.com/koertee1/reads/novaia-zhzhizn-biez-trusov/highlights/uq877q","user":{"id":209589,"username":"koertee1","firstname":null,"fullname":"koertee1","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/koertee1"},"locators":{"position":0.09676616,"mid":"\u043a
61
+ \u0436\u0438\u0437\u043d\u0438 \u0438 \u0436\u0435\u043d\u0449\u0438\u043d\u0430\u043c","post":"
62
+ \u0434\u0430\u044e\u0442 \u043c\u0443\u0436\u0447\u0438\u043d\u0435 \u043f\u0440\u0430\u0432\u043e
63
+ \u043d\u0430 \u043f\u043e\u0434\u043e\u0431\u043d\u044b","rmsdk":{"start":"OPS/ch1-4.xhtml#point(/1/4/2/13/60/1:83)","end":"OPS/ch1-4.xhtml#point(/1/4/2/13/60/1:116)"},"pre":"\u0442\u044c
64
+ \u0438 \u043b\u0435\u0433\u043a\u043e\u043c\u044b\u0441\u043b\u0435\u043d\u043d\u043e\u0435
65
+ \u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u0435 "},"comments_count":0,"likes_count":0,"reading":{"id":441899}}},{"highlight":{"id":827438,"position":0.973732,"content":"He
66
+ always fell asleep as easily as some great lazing cat, he only had to close
67
+ his eyes and moments later he\u2019d be gone, while my own mind kept on whirring
68
+ round with scattered thoughts and images.","highlighted_at":"2013-12-16T06:17:21Z","permalink":"orbgva","permalink_url":"https://readmill.com/keels223/reads/the-winter-sea/highlights/orbgva","user":{"id":35202,"username":"keels223","firstname":"Keely","fullname":"Keely
69
+ Galgano","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":1,"followings_count":6,"permalink_url":"https://readmill.com/keels223"},"locators":{"position":0.9737325,"mid":"He
70
+ always fell asleep as easily as some great lazing cat, he only had to close
71
+ his eyes and moments later he\u2019d be gone, while my own mind kept on whirring
72
+ round with scattered thoughts and images.","post":" I felt his breathing slow
73
+ aga","rmsdk":{"start":"text/part46.xhtml#point(/1/4/2/3/67/1:47)","end":"text/part46.xhtml#point(/1/4/2/3/67/1:245)"},"pre":"I
74
+ could hear it in his voice. "},"comments_count":0,"likes_count":0,"reading":{"id":439319}}},{"highlight":{"id":827437,"position":0.58398,"content":"that
75
+ the remaining cold pork bones and mustard in William''s plate might but divide
76
+ her feelings with the broken egg-shells in Mr. Crawford''s.","highlighted_at":"2013-12-16T06:15:01Z","permalink":"lo0ivw","permalink_url":"https://readmill.com/whovian7/reads/mansfield-park/highlights/lo0ivw","user":{"id":152726,"username":"whovian7","firstname":null,"fullname":"whovian7","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/whovian7"},"locators":{"position":0.5839799,"mid":"that
77
+ the remaining cold pork bones and mustard in William''s plate might but divide
78
+ her feelings with the broken egg-shells in Mr. Crawford''s.","post":" She
79
+ sat and cried con amore a","rmsdk":{"start":"OPS/main28.xml#point(/1/4/2/2/6/4/1:304)","end":"OPS/main28.xml#point(/1/4/2/2/6/4/1:445)"},"pre":"se
80
+ her tender enthusiasm, and "},"comments_count":0,"likes_count":0,"reading":{"id":430600}}},{"highlight":{"id":827436,"position":0.214665,"content":"It
81
+ is of course equally correct to write the above as two sentences each, replacing
82
+ the semicolons by periods.","highlighted_at":"2013-12-16T06:14:36Z","permalink":"yn38qa","permalink_url":"https://readmill.com/iammai/reads/the-elements-of-style/highlights/yn38qa","user":{"id":210723,"username":"iammai","firstname":"Mai","fullname":"Mai
83
+ D.","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Favatars%252F63c360ff4adb04a5b9b7e615a467a1741cab0b92-original.png&width=50","followers_count":0,"followings_count":4,"permalink_url":"https://readmill.com/iammai"},"locators":{"position":0.2146651,"mid":"It
84
+ is of course equally correct to write the above as two sentences each, replacing
85
+ the semicolons by periods.","post":" Stevenson''s romances are ent","rmsdk":{"start":"OPS/main5.xml#point(/1/4/2/2/4/6/1:0)","end":"OPS/main5.xml#point(/1/4/2/2/4/7:0)"},"pre":"nnot
86
+ reach town before dark. "},"comments_count":0,"likes_count":0,"reading":{"id":443411}}},{"highlight":{"id":827435,"position":0.0890895,"content":"Don\u2019t
87
+ let a job title define you. Do what makes sense, not what process dictates.","highlighted_at":"2013-12-16T06:13:30Z","permalink":"mr1nqw","permalink_url":"https://readmill.com/a_shipley22/reads/the-user-experience-team-of-one/highlights/mr1nqw","user":{"id":208509,"username":"a_shipley22","firstname":"Abriel","fullname":"Abriel
88
+ Shipley","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/a_shipley22"},"locators":{"position":0.08908954,"mid":"Don\u2019t
89
+ let a job title define you. Do what makes sense, not what process dictates.","post":"
90
+ And most of all, never stop p","rmsdk":{"start":"OEBPS/html/pref03.html#point(/1/4/18/1:345)","end":"OEBPS/html/pref03.html#point(/1/4/18/1:428)"},"pre":"of
91
+ seemingly unrelated ideas. "},"comments_count":1,"likes_count":0,"reading":{"id":434744}}},{"highlight":{"id":827434,"position":0.220045,"content":"If
92
+ a conjunction is inserted, the proper mark is a comma","highlighted_at":"2013-12-16T06:12:54Z","permalink":"umaflg","permalink_url":"https://readmill.com/iammai/reads/the-elements-of-style/highlights/umaflg","user":{"id":210723,"username":"iammai","firstname":"Mai","fullname":"Mai
93
+ D.","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Favatars%252F63c360ff4adb04a5b9b7e615a467a1741cab0b92-original.png&width=50","followers_count":0,"followings_count":4,"permalink_url":"https://readmill.com/iammai"},"locators":{"position":0.220045,"mid":"If
94
+ a conjunction is inserted, the proper mark is a comma","post":" (Rule 4).
95
+ Stevenson''s romanc","rmsdk":{"start":"OPS/main5.xml#point(/1/4/2/2/4/10/1:0)","end":"OPS/main5.xml#point(/1/4/2/2/4/10/1:56)"},"pre":"nnot
96
+ reach town before dark. "},"comments_count":0,"likes_count":0,"reading":{"id":443411}}},{"highlight":{"id":827432,"position":0.208073,"content":"If
97
+ two or more clauses, grammatically complete and not joined by a conjunction,
98
+ are to form a single compound sentence, the proper mark of punctuation is
99
+ a semicolon.","highlighted_at":"2013-12-16T06:12:21Z","permalink":"z84-hg","permalink_url":"https://readmill.com/iammai/reads/the-elements-of-style/highlights/z84-hg","user":{"id":210723,"username":"iammai","firstname":"Mai","fullname":"Mai
100
+ D.","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Favatars%252F63c360ff4adb04a5b9b7e615a467a1741cab0b92-original.png&width=50","followers_count":0,"followings_count":4,"permalink_url":"https://readmill.com/iammai"},"locators":{"position":0.2080731,"mid":"If
101
+ two or more clauses, grammatically complete and not joined by a conjunction,
102
+ are to form a single compound sentence, the proper mark of punctuation is
103
+ a semicolon.","post":" Stevenson''s romances are ent","rmsdk":{"start":"OPS/main5.xml#point(/1/4/2/2/4/1:1)","end":"OPS/main5.xml#point(/1/4/2/2/4/2/1:166)"},"pre":"ependent
104
+ clauses by a comma. "},"comments_count":0,"likes_count":0,"reading":{"id":443411}}},{"highlight":{"id":827430,"position":0.141794,"content":"\u201cwhen
105
+ the point of contact between the product and the people becomes a point of
106
+ friction, then the [designer] has failed. On the other hand, if people are
107
+ made safer, more comfortable, more eager to purchase, more efficient\u2014or
108
+ just plain happier\u2014by contact with the product, then the designer has
109
+ succeeded.\u201d","highlighted_at":"2013-12-16T06:11:39Z","permalink":"lhugka","permalink_url":"https://readmill.com/a_shipley22/reads/the-user-experience-team-of-one/highlights/lhugka","user":{"id":208509,"username":"a_shipley22","firstname":"Abriel","fullname":"Abriel
110
+ Shipley","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/a_shipley22"},"locators":{"position":0.1417938,"mid":"\u201cwhen
111
+ the point of contact between the product and the people becomes a point of
112
+ friction, then the [designer] has failed. On the other hand, if people are
113
+ made safer, more comfortable, more eager to purchase, more efficient\u2014or
114
+ just plain happier\u2014by contact with the product, then the designer has
115
+ succeeded.\u201d","post":" FIGURE 1.7Dreyfuss created J","rmsdk":{"start":"OEBPS/html/ch01.html#point(/1/4/82/8:24)","end":"OEBPS/html/ch01.html#point(/1/4/82/8:341)"},"pre":"People,
116
+ Henry Dreyfuss writes "},"comments_count":1,"likes_count":0,"reading":{"id":434744}}},{"highlight":{"id":827429,"position":0.577542,"content":"\"I
117
+ am worn out with civility,\"","highlighted_at":"2013-12-16T06:09:42Z","permalink":"f5kc8q","permalink_url":"https://readmill.com/whovian7/reads/mansfield-park/highlights/f5kc8q","user":{"id":152726,"username":"whovian7","firstname":null,"fullname":"whovian7","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/whovian7"},"locators":{"position":0.5775425,"mid":"\"I
118
+ am worn out with civility,\"","post":" said he. \"I have been talking","rmsdk":{"start":"OPS/main27.xml#point(/1/4/2/2/6/40/1:1716)","end":"OPS/main27.xml#point(/1/4/2/2/6/40/1:1746)"},"pre":"th
119
+ whom it could find repose. "},"comments_count":0,"likes_count":0,"reading":{"id":430600}}},{"highlight":{"id":827428,"position":0.148813,"content":"Similar
120
+ clauses introduced by where and when are similarly punctuated.","highlighted_at":"2013-12-16T06:09:39Z","permalink":"rg-osw","permalink_url":"https://readmill.com/iammai/reads/the-elements-of-style/highlights/rg-osw","user":{"id":210723,"username":"iammai","firstname":"Mai","fullname":"Mai
121
+ D.","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Favatars%252F63c360ff4adb04a5b9b7e615a467a1741cab0b92-original.png&width=50","followers_count":0,"followings_count":4,"permalink_url":"https://readmill.com/iammai"},"locators":{"position":0.1488129,"mid":"Similar
122
+ clauses introduced by where and when are similarly punctuated.","post":" In
123
+ 1769, when Napoleon was b","rmsdk":{"start":"OPS/main3.xml#point(/1/4/2/2/4/17:1)","end":"OPS/main3.xml#point(/1/4/2/2/4/18/5:27)"},"pre":"me
124
+ more and more interested. "},"comments_count":0,"likes_count":0,"reading":{"id":443411}}},{"highlight":{"id":827427,"position":0.1466,"content":"Non-restrictive
125
+ relative clauses are, in accordance with this rule, set off by commas.","highlighted_at":"2013-12-16T06:09:22Z","permalink":"5lposg","permalink_url":"https://readmill.com/iammai/reads/the-elements-of-style/highlights/5lposg","user":{"id":210723,"username":"iammai","firstname":"Mai","fullname":"Mai
126
+ D.","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Favatars%252F63c360ff4adb04a5b9b7e615a467a1741cab0b92-original.png&width=50","followers_count":0,"followings_count":4,"permalink_url":"https://readmill.com/iammai"},"locators":{"position":0.1465996,"mid":"Non-restrictive
127
+ relative clauses are, in accordance with this rule, set off by commas.","post":"
128
+ The audience, which had at f","rmsdk":{"start":"OPS/main3.xml#point(/1/4/2/2/4/13:1)","end":"OPS/main3.xml#point(/1/4/2/2/4/15:0)"},"pre":"ect
129
+ health, is indefensible. "},"comments_count":0,"likes_count":0,"reading":{"id":443411}}},{"highlight":{"id":827426,"position":0.160148,"content":"Restrictive
130
+ relative clauses are not set off by commas.","highlighted_at":"2013-12-16T06:08:18Z","permalink":"bmfv0q","permalink_url":"https://readmill.com/iammai/reads/the-elements-of-style/highlights/bmfv0q","user":{"id":210723,"username":"iammai","firstname":"Mai","fullname":"Mai
131
+ D.","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Favatars%252F63c360ff4adb04a5b9b7e615a467a1741cab0b92-original.png&width=50","followers_count":0,"followings_count":4,"permalink_url":"https://readmill.com/iammai"},"locators":{"position":0.1601478,"mid":"Restrictive
132
+ relative clauses are not set off by commas.","post":" The candidate who best
133
+ meets","rmsdk":{"start":"OPS/main3.xml#point(/1/4/2/2/4/25:1)","end":"OPS/main3.xml#point(/1/4/2/2/4/26/1:55)"},"pre":"
134
+ few miles from Bridgewater. "},"comments_count":0,"likes_count":0,"reading":{"id":443411}}},{"highlight":{"id":827424,"position":0.0530568,"content":"equal
135
+ indifferent abandon.","highlighted_at":"2013-12-16T06:06:10Z","permalink":"fwgy2w","permalink_url":"https://readmill.com/VonBabyDoll/reads/behemoth-1/highlights/fwgy2w","user":{"id":119957,"username":"VonBabyDoll","firstname":"Sever","fullname":"Sever
136
+ Gray","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":1,"followings_count":2,"permalink_url":"https://readmill.com/VonBabyDoll"},"locators":{"position":0.05305676,"mid":"equal
137
+ indifferent abandon.","post":" Of course, in the world she i","rmsdk":{"start":"OPS/main6.xml#point(/1/4/2/2/4/2/1:268)","end":"OPS/main6.xml#point(/1/4/2/2/4/3:0)"},"pre":"nd
138
+ wood and carbon-fibre with "},"comments_count":0,"likes_count":0,"reading":{"id":440291}}},{"highlight":{"id":827421,"position":0.0857921,"content":"\u041d\u0438\u043a\u043e\u0433\u0434\u0430
139
+ \u043d\u0435 \u0441\u043b\u0443\u0448\u0430\u0439, \u0447\u0442\u043e \u0433\u043e\u0432\u043e\u0440\u0438\u0442
140
+ \u0440\u0430\u0437\u0443\u043c \u0436\u0435\u043d\u0449\u0438\u043d\u044b.
141
+ \u0421\u043b\u0443\u0448\u0430\u0439, \u0447\u0442\u043e \u0433\u043e\u0432\u043e\u0440\u0438\u0442
142
+ \u0435\u0435 \u0442\u0435\u043b\u043e.","highlighted_at":"2013-12-16T06:02:52Z","permalink":"8vvygw","permalink_url":"https://readmill.com/koertee1/reads/novaia-zhzhizn-biez-trusov/highlights/8vvygw","user":{"id":209589,"username":"koertee1","firstname":null,"fullname":"koertee1","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/koertee1"},"locators":{"position":0.08579206,"mid":"\u041d\u0438\u043a\u043e\u0433\u0434\u0430
143
+ \u043d\u0435 \u0441\u043b\u0443\u0448\u0430\u0439, \u0447\u0442\u043e \u0433\u043e\u0432\u043e\u0440\u0438\u0442
144
+ \u0440\u0430\u0437\u0443\u043c \u0436\u0435\u043d\u0449\u0438\u043d\u044b.
145
+ \u0421\u043b\u0443\u0448\u0430\u0439, \u0447\u0442\u043e \u0433\u043e\u0432\u043e\u0440\u0438\u0442
146
+ \u0435\u0435 \u0442\u0435\u043b\u043e.","post":" \u0421\u043e\u0431\u043b\u0430\u0437\u043d\u0435\u043d\u0438\u0435
147
+ \u2013 \u044d\u0442\u043e \u0438\u0441\u043a\u0443\u0441\u0441\u0442\u0432\u043e
148
+ ","rmsdk":{"start":"OPS/ch1-4.xhtml#point(/1/4/2/11/18/2/1:14)","end":"OPS/ch1-4.xhtml#point(/1/4/2/11/18/3:0)"},"pre":"
149
+ \u043c\u043d\u0435!\u00bb \u2013 \u0433\u043e\u0432\u043e\u0440\u0438\u0442
150
+ \u043e\u043d\u0430! \u0420\u0415\u0417\u042e\u041c\u0415: "},"comments_count":0,"likes_count":0,"reading":{"id":441899}}},{"highlight":{"id":827415,"position":0.285714,"content":"Once
151
+ we have a corpus we typically want to modify the documents in it, e.g., stemming,
152
+ stopword removal, et cetera. In tm , all this functionality is subsumed into
153
+ the concept of a transformation . Transformations are done via the tm_map()
154
+ function which applies (maps) a function to all elements of the corpus. Basically,
155
+ all transformations work on single text documents and tm_map() just applies
156
+ them to all documents in a corpus","highlighted_at":"2013-12-16T06:00:35Z","permalink":"ft4keq","permalink_url":"https://readmill.com/benoitpointet/reads/introduction-to-the-tm-package-text-mining-in-r/highlights/ft4keq","user":{"id":149062,"username":"benoitpointet","firstname":"Beno\u00eet","fullname":"Beno\u00eet
157
+ Pointet","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Freadmill-assets.s3.amazonaws.com%252Favatars%252Faf9e073ffc8ebfe546aebe4944817885b9c6d189-original.png&width=50","followers_count":1,"followings_count":4,"permalink_url":"https://readmill.com/benoitpointet"},"locators":{"position":0.2857143,"mid":"Once
158
+ we have a corpus we typically want to modify the documents in it, e.g., stemming,
159
+ stopword removal, et cetera. In tm , all this functionality is subsumed into
160
+ the concept of a transformation . Transformations are done via the tm_map()
161
+ function which applies (maps) a function to all elements of the corpus. Basically,
162
+ all transformations work on single text documents and tm_map() just applies
163
+ them to all documents in a corpus","post":". Converting to Plain Text Do","rmsdk":{"start":"#pdfloc(a35a,2,43,0,0,0,0,1)","end":"#pdfloc(a35a,2,73,26,0,0,1,1)"},"pre":"t\"]])
164
+ [1] TRUE Transformations "},"comments_count":0,"likes_count":0,"reading":{"id":442928}}},{"highlight":{"id":827412,"position":0.565918,"content":"epoch.","highlighted_at":"2013-12-16T05:59:59Z","permalink":"ltqmxa","permalink_url":"https://readmill.com/whovian7/reads/mansfield-park/highlights/ltqmxa","user":{"id":152726,"username":"whovian7","firstname":null,"fullname":"whovian7","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/whovian7"},"locators":{"position":0.5659176,"mid":"epoch.","post":"
165
+ The stiffness of the meeting ","rmsdk":{"start":"OPS/main27.xml#point(/1/4/2/2/6/16/1:58)","end":"OPS/main27.xml#point(/1/4/2/2/6/16/1:64)"},"pre":"nd
166
+ Crawfords was a favourable "},"comments_count":0,"likes_count":0,"reading":{"id":430600}}},{"highlight":{"id":827411,"position":0.0659341,"content":"Ella
167
+ no es hermosa, pero yo tampoco lo soy. Tampoco es que sea fea, aunque yo tampoco
168
+ lo soy","highlighted_at":"2013-12-16T05:59:52Z","permalink":"kaq7eq","permalink_url":"https://readmill.com/ortizmendoza1972/reads/mo-han/highlights/kaq7eq","user":{"id":200970,"username":"ortizmendoza1972","firstname":"Francisco","fullname":"Francisco
169
+ Ortiz","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/ortizmendoza1972"},"locators":{"position":0.06593407,"mid":"Ella
170
+ no es hermosa, pero yo tampoco lo soy. Tampoco es que sea fea, aunque yo tampoco
171
+ lo soy","post":". No era m\u00e1s que una ni\u00f1a des","rmsdk":{"start":"#pdfloc(4971,24,187,25,4,0,0,1)","end":"#pdfloc(4971,24,195,7,1,0,1,1)"},"pre":"n
172
+ del ej\u00e9rcito el a\u00f1o pasado. "},"comments_count":0,"likes_count":0,"reading":{"id":416468}}},{"highlight":{"id":827410,"position":0.565611,"content":"and
173
+ to curtsey, and speak again.","highlighted_at":"2013-12-16T05:59:44Z","permalink":"9bnkrg","permalink_url":"https://readmill.com/whovian7/reads/mansfield-park/highlights/9bnkrg","user":{"id":152726,"username":"whovian7","firstname":null,"fullname":"whovian7","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/whovian7"},"locators":{"position":0.5656107,"mid":"and
174
+ to curtsey, and speak again.","post":" This was a hard duty, and she","rmsdk":{"start":"OPS/main27.xml#point(/1/4/2/2/6/14/1:475)","end":"OPS/main27.xml#point(/1/4/2/2/6/14/1:507)"},"pre":",
175
+ and forced to be spoken to, "},"comments_count":0,"likes_count":0,"reading":{"id":430600}}},{"highlight":{"id":827409,"position":0.565523,"content":"She
176
+ was introduced here and there by her uncle, and forced to be spoken to,","highlighted_at":"2013-12-16T05:59:36Z","permalink":"rkg02w","permalink_url":"https://readmill.com/whovian7/reads/mansfield-park/highlights/rkg02w","user":{"id":152726,"username":"whovian7","firstname":null,"fullname":"whovian7","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":0,"followings_count":1,"permalink_url":"https://readmill.com/whovian7"},"locators":{"position":0.5655227,"mid":"She
177
+ was introduced here and there by her uncle, and forced to be spoken to,","post":"
178
+ and to curtsey, and speak aga","rmsdk":{"start":"OPS/main27.xml#point(/1/4/2/2/6/14/1:399)","end":"OPS/main27.xml#point(/1/4/2/2/6/14/1:474)"},"pre":"on
179
+ to endure something worse. "},"comments_count":0,"likes_count":0,"reading":{"id":430600}}}],"status":200}'
180
+ http_version:
181
+ recorded_at: Mon, 16 Dec 2013 06:18:46 GMT
182
+ recorded_with: VCR 2.8.0
@@ -0,0 +1,66 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.readmill.com/v2/readings/439319/highlights
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - Faraday v0.8.8
12
+ Authorization:
13
+ - Client READMILL_CLIENT_ID
14
+ Accept-Encoding:
15
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
16
+ Accept:
17
+ - '*/*'
18
+ response:
19
+ status:
20
+ code: 200
21
+ message: OK
22
+ headers:
23
+ Cache-Control:
24
+ - must-revalidate, private, max-age=0
25
+ Content-Type:
26
+ - application/json; charset=utf-8
27
+ Date:
28
+ - Mon, 16 Dec 2013 06:18:47 GMT
29
+ Etag:
30
+ - '"761a8a5e1668aae462d39a75562821fa"'
31
+ Server:
32
+ - nginx/1.0.12
33
+ Status:
34
+ - 200 OK
35
+ X-Rack-Cache:
36
+ - miss
37
+ X-Request-Id:
38
+ - 5a925498ee2e8ed86c0fcfb2a96ac146
39
+ X-Runtime:
40
+ - '0.202942'
41
+ X-Ua-Compatible:
42
+ - IE=Edge,chrome=1
43
+ Content-Length:
44
+ - '2477'
45
+ Connection:
46
+ - keep-alive
47
+ body:
48
+ encoding: UTF-8
49
+ string: '{"pagination":{"next":null},"items":[{"highlight":{"id":827438,"position":0.973732,"content":"He
50
+ always fell asleep as easily as some great lazing cat, he only had to close
51
+ his eyes and moments later he\u2019d be gone, while my own mind kept on whirring
52
+ round with scattered thoughts and images.","highlighted_at":"2013-12-16T06:17:21Z","permalink":"orbgva","permalink_url":"https://readmill.com/keels223/reads/the-winter-sea/highlights/orbgva","user":{"id":35202,"username":"keels223","firstname":"Keely","fullname":"Keely
53
+ Galgano","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":1,"followings_count":6,"permalink_url":"https://readmill.com/keels223"},"locators":{"position":0.9737325,"mid":"He
54
+ always fell asleep as easily as some great lazing cat, he only had to close
55
+ his eyes and moments later he\u2019d be gone, while my own mind kept on whirring
56
+ round with scattered thoughts and images.","post":" I felt his breathing slow
57
+ aga","rmsdk":{"start":"text/part46.xhtml#point(/1/4/2/3/67/1:47)","end":"text/part46.xhtml#point(/1/4/2/3/67/1:245)"},"pre":"I
58
+ could hear it in his voice. "},"comments_count":0,"likes_count":0,"reading":{"id":439319}}},{"highlight":{"id":826994,"position":0.729259,"content":"\u2018Hope,\u2019
59
+ he told her, \u2018rarely enters into it. \u2019Tis action moves the world.","highlighted_at":"2013-12-16T04:21:17Z","permalink":"kxelzg","permalink_url":"https://readmill.com/keels223/reads/the-winter-sea/highlights/kxelzg","user":{"id":35202,"username":"keels223","firstname":"Keely","fullname":"Keely
60
+ Galgano","avatar_url":"https://d26cmntuippvfl.cloudfront.net/?action=crop&format=png&height=50&origin=https%253A%252F%252Fd15fum6h02z48v.cloudfront.net%252Fassets%252Fdefault-avatar-original-b0c7339fbb5969b50914c1a731503733.png&width=50","followers_count":1,"followings_count":6,"permalink_url":"https://readmill.com/keels223"},"locators":{"position":0.7292588,"mid":"\u2018Hope,\u2019
61
+ he told her, \u2018rarely enters into it. \u2019Tis action moves the world.","post":"
62
+ If ye mind nothing else I\u2019ve ","rmsdk":{"start":"text/part35.xhtml#point(/1/4/2/3/75/1:0)","end":"text/part35.xhtml#point(/1/4/2/3/75/1:81)"},"pre":"afore
63
+ too long.\u2019 \u2018I hope so.\u2019 "},"comments_count":0,"likes_count":0,"reading":{"id":439319}}}],"status":200}'
64
+ http_version:
65
+ recorded_at: Mon, 16 Dec 2013 06:18:47 GMT
66
+ recorded_with: VCR 2.8.0