@cogcoin/client 0.5.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 (289) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +136 -0
  3. package/dist/app-paths.d.ts +38 -0
  4. package/dist/app-paths.js +121 -0
  5. package/dist/art/banner.txt +13 -0
  6. package/dist/art/scroll.txt +13 -0
  7. package/dist/art/train-car.txt +6 -0
  8. package/dist/art/train-smoke.txt +6 -0
  9. package/dist/art/train.txt +6 -0
  10. package/dist/bitcoind/bootstrap/chainstate.d.ts +4 -0
  11. package/dist/bitcoind/bootstrap/chainstate.js +13 -0
  12. package/dist/bitcoind/bootstrap/constants.d.ts +7 -0
  13. package/dist/bitcoind/bootstrap/constants.js +12 -0
  14. package/dist/bitcoind/bootstrap/controller.d.ts +29 -0
  15. package/dist/bitcoind/bootstrap/controller.js +101 -0
  16. package/dist/bitcoind/bootstrap/download.d.ts +2 -0
  17. package/dist/bitcoind/bootstrap/download.js +196 -0
  18. package/dist/bitcoind/bootstrap/headers.d.ts +13 -0
  19. package/dist/bitcoind/bootstrap/headers.js +61 -0
  20. package/dist/bitcoind/bootstrap/paths.d.ts +4 -0
  21. package/dist/bitcoind/bootstrap/paths.js +15 -0
  22. package/dist/bitcoind/bootstrap/snapshot-file.d.ts +7 -0
  23. package/dist/bitcoind/bootstrap/snapshot-file.js +42 -0
  24. package/dist/bitcoind/bootstrap/state.d.ts +40 -0
  25. package/dist/bitcoind/bootstrap/state.js +70 -0
  26. package/dist/bitcoind/bootstrap/types.d.ts +28 -0
  27. package/dist/bitcoind/bootstrap/types.js +1 -0
  28. package/dist/bitcoind/bootstrap.d.ts +8 -0
  29. package/dist/bitcoind/bootstrap.js +7 -0
  30. package/dist/bitcoind/client/factory.d.ts +3 -0
  31. package/dist/bitcoind/client/factory.js +57 -0
  32. package/dist/bitcoind/client/follow-block-times.d.ts +8 -0
  33. package/dist/bitcoind/client/follow-block-times.js +25 -0
  34. package/dist/bitcoind/client/follow-loop.d.ts +10 -0
  35. package/dist/bitcoind/client/follow-loop.js +57 -0
  36. package/dist/bitcoind/client/internal-types.d.ts +63 -0
  37. package/dist/bitcoind/client/internal-types.js +18 -0
  38. package/dist/bitcoind/client/managed-client.d.ts +20 -0
  39. package/dist/bitcoind/client/managed-client.js +197 -0
  40. package/dist/bitcoind/client/rate-tracker.d.ts +2 -0
  41. package/dist/bitcoind/client/rate-tracker.js +24 -0
  42. package/dist/bitcoind/client/sync-engine.d.ts +3 -0
  43. package/dist/bitcoind/client/sync-engine.js +143 -0
  44. package/dist/bitcoind/client.d.ts +1 -0
  45. package/dist/bitcoind/client.js +1 -0
  46. package/dist/bitcoind/errors.d.ts +1 -0
  47. package/dist/bitcoind/errors.js +49 -0
  48. package/dist/bitcoind/index.d.ts +2 -0
  49. package/dist/bitcoind/index.js +1 -0
  50. package/dist/bitcoind/indexer-daemon-main.d.ts +1 -0
  51. package/dist/bitcoind/indexer-daemon-main.js +472 -0
  52. package/dist/bitcoind/indexer-daemon.d.ts +107 -0
  53. package/dist/bitcoind/indexer-daemon.js +391 -0
  54. package/dist/bitcoind/node.d.ts +8 -0
  55. package/dist/bitcoind/node.js +219 -0
  56. package/dist/bitcoind/normalize.d.ts +3 -0
  57. package/dist/bitcoind/normalize.js +47 -0
  58. package/dist/bitcoind/progress/assets.d.ts +10 -0
  59. package/dist/bitcoind/progress/assets.js +90 -0
  60. package/dist/bitcoind/progress/constants.d.ts +48 -0
  61. package/dist/bitcoind/progress/constants.js +53 -0
  62. package/dist/bitcoind/progress/controller.d.ts +28 -0
  63. package/dist/bitcoind/progress/controller.js +188 -0
  64. package/dist/bitcoind/progress/follow-scene.d.ts +40 -0
  65. package/dist/bitcoind/progress/follow-scene.js +367 -0
  66. package/dist/bitcoind/progress/formatting.d.ts +23 -0
  67. package/dist/bitcoind/progress/formatting.js +227 -0
  68. package/dist/bitcoind/progress/quote-scene.d.ts +4 -0
  69. package/dist/bitcoind/progress/quote-scene.js +137 -0
  70. package/dist/bitcoind/progress/train-scene.d.ts +9 -0
  71. package/dist/bitcoind/progress/train-scene.js +92 -0
  72. package/dist/bitcoind/progress/tty-renderer.d.ts +18 -0
  73. package/dist/bitcoind/progress/tty-renderer.js +150 -0
  74. package/dist/bitcoind/progress.d.ts +7 -0
  75. package/dist/bitcoind/progress.js +7 -0
  76. package/dist/bitcoind/quotes.d.ts +24 -0
  77. package/dist/bitcoind/quotes.js +195 -0
  78. package/dist/bitcoind/rpc.d.ts +71 -0
  79. package/dist/bitcoind/rpc.js +322 -0
  80. package/dist/bitcoind/service-paths.d.ts +19 -0
  81. package/dist/bitcoind/service-paths.js +49 -0
  82. package/dist/bitcoind/service.d.ts +40 -0
  83. package/dist/bitcoind/service.js +735 -0
  84. package/dist/bitcoind/testing.d.ts +9 -0
  85. package/dist/bitcoind/testing.js +9 -0
  86. package/dist/bitcoind/types.d.ts +396 -0
  87. package/dist/bitcoind/types.js +3 -0
  88. package/dist/bytes.d.ts +9 -0
  89. package/dist/bytes.js +36 -0
  90. package/dist/cli/commands/follow.d.ts +2 -0
  91. package/dist/cli/commands/follow.js +43 -0
  92. package/dist/cli/commands/mining-admin.d.ts +2 -0
  93. package/dist/cli/commands/mining-admin.js +92 -0
  94. package/dist/cli/commands/mining-read.d.ts +2 -0
  95. package/dist/cli/commands/mining-read.js +173 -0
  96. package/dist/cli/commands/mining-runtime.d.ts +2 -0
  97. package/dist/cli/commands/mining-runtime.js +108 -0
  98. package/dist/cli/commands/status.d.ts +2 -0
  99. package/dist/cli/commands/status.js +31 -0
  100. package/dist/cli/commands/sync.d.ts +2 -0
  101. package/dist/cli/commands/sync.js +52 -0
  102. package/dist/cli/commands/wallet-admin.d.ts +2 -0
  103. package/dist/cli/commands/wallet-admin.js +175 -0
  104. package/dist/cli/commands/wallet-mutation.d.ts +2 -0
  105. package/dist/cli/commands/wallet-mutation.js +681 -0
  106. package/dist/cli/commands/wallet-read.d.ts +2 -0
  107. package/dist/cli/commands/wallet-read.js +265 -0
  108. package/dist/cli/context.d.ts +3 -0
  109. package/dist/cli/context.js +75 -0
  110. package/dist/cli/io.d.ts +3 -0
  111. package/dist/cli/io.js +12 -0
  112. package/dist/cli/mining-format.d.ts +5 -0
  113. package/dist/cli/mining-format.js +156 -0
  114. package/dist/cli/mining-json.d.ts +49 -0
  115. package/dist/cli/mining-json.js +89 -0
  116. package/dist/cli/mutation-command-groups.d.ts +15 -0
  117. package/dist/cli/mutation-command-groups.js +71 -0
  118. package/dist/cli/mutation-json.d.ts +430 -0
  119. package/dist/cli/mutation-json.js +311 -0
  120. package/dist/cli/mutation-resolved-json.d.ts +124 -0
  121. package/dist/cli/mutation-resolved-json.js +129 -0
  122. package/dist/cli/mutation-success.d.ts +20 -0
  123. package/dist/cli/mutation-success.js +47 -0
  124. package/dist/cli/mutation-text-format.d.ts +22 -0
  125. package/dist/cli/mutation-text-format.js +171 -0
  126. package/dist/cli/mutation-text-write.d.ts +13 -0
  127. package/dist/cli/mutation-text-write.js +16 -0
  128. package/dist/cli/output.d.ts +185 -0
  129. package/dist/cli/output.js +1085 -0
  130. package/dist/cli/parse.d.ts +3 -0
  131. package/dist/cli/parse.js +971 -0
  132. package/dist/cli/preview-json.d.ts +416 -0
  133. package/dist/cli/preview-json.js +293 -0
  134. package/dist/cli/prompt.d.ts +3 -0
  135. package/dist/cli/prompt.js +33 -0
  136. package/dist/cli/read-json.d.ts +187 -0
  137. package/dist/cli/read-json.js +675 -0
  138. package/dist/cli/runner.d.ts +2 -0
  139. package/dist/cli/runner.js +129 -0
  140. package/dist/cli/signals.d.ts +3 -0
  141. package/dist/cli/signals.js +63 -0
  142. package/dist/cli/status-format.d.ts +2 -0
  143. package/dist/cli/status-format.js +48 -0
  144. package/dist/cli/types.d.ts +148 -0
  145. package/dist/cli/types.js +2 -0
  146. package/dist/cli/wallet-format.d.ts +29 -0
  147. package/dist/cli/wallet-format.js +637 -0
  148. package/dist/cli/workflow-hints.d.ts +13 -0
  149. package/dist/cli/workflow-hints.js +94 -0
  150. package/dist/cli-runner.d.ts +3 -0
  151. package/dist/cli-runner.js +3 -0
  152. package/dist/cli.d.ts +2 -0
  153. package/dist/cli.js +6 -0
  154. package/dist/client/default-client.d.ts +11 -0
  155. package/dist/client/default-client.js +118 -0
  156. package/dist/client/factory.d.ts +2 -0
  157. package/dist/client/factory.js +15 -0
  158. package/dist/client/initialization.d.ts +6 -0
  159. package/dist/client/initialization.js +30 -0
  160. package/dist/client/persistence.d.ts +5 -0
  161. package/dist/client/persistence.js +28 -0
  162. package/dist/client/store-adapter.d.ts +3 -0
  163. package/dist/client/store-adapter.js +20 -0
  164. package/dist/client.d.ts +2 -0
  165. package/dist/client.js +2 -0
  166. package/dist/index.d.ts +2 -0
  167. package/dist/index.js +1 -0
  168. package/dist/passive-status.d.ts +36 -0
  169. package/dist/passive-status.js +100 -0
  170. package/dist/sqlite/better-sqlite3.d.ts +26 -0
  171. package/dist/sqlite/better-sqlite3.js +4 -0
  172. package/dist/sqlite/checkpoints.d.ts +11 -0
  173. package/dist/sqlite/checkpoints.js +27 -0
  174. package/dist/sqlite/driver.d.ts +17 -0
  175. package/dist/sqlite/driver.js +98 -0
  176. package/dist/sqlite/index.d.ts +4 -0
  177. package/dist/sqlite/index.js +9 -0
  178. package/dist/sqlite/migrate.d.ts +2 -0
  179. package/dist/sqlite/migrate.js +37 -0
  180. package/dist/sqlite/store.d.ts +3 -0
  181. package/dist/sqlite/store.js +122 -0
  182. package/dist/sqlite/tip-meta.d.ts +26 -0
  183. package/dist/sqlite/tip-meta.js +97 -0
  184. package/dist/sqlite/types.d.ts +10 -0
  185. package/dist/sqlite/types.js +1 -0
  186. package/dist/types.d.ts +55 -0
  187. package/dist/types.js +1 -0
  188. package/dist/wallet/archive.d.ts +4 -0
  189. package/dist/wallet/archive.js +39 -0
  190. package/dist/wallet/cogop/constants.d.ts +32 -0
  191. package/dist/wallet/cogop/constants.js +32 -0
  192. package/dist/wallet/cogop/index.d.ts +32 -0
  193. package/dist/wallet/cogop/index.js +213 -0
  194. package/dist/wallet/cogop/numeric.d.ts +3 -0
  195. package/dist/wallet/cogop/numeric.js +24 -0
  196. package/dist/wallet/cogop/scriptpubkey.d.ts +2 -0
  197. package/dist/wallet/cogop/scriptpubkey.js +13 -0
  198. package/dist/wallet/cogop/validate-name.d.ts +2 -0
  199. package/dist/wallet/cogop/validate-name.js +18 -0
  200. package/dist/wallet/fs/atomic.d.ts +6 -0
  201. package/dist/wallet/fs/atomic.js +46 -0
  202. package/dist/wallet/fs/lock.d.ts +19 -0
  203. package/dist/wallet/fs/lock.js +61 -0
  204. package/dist/wallet/fs/status-file.d.ts +1 -0
  205. package/dist/wallet/fs/status-file.js +4 -0
  206. package/dist/wallet/lifecycle.d.ts +193 -0
  207. package/dist/wallet/lifecycle.js +1475 -0
  208. package/dist/wallet/material.d.ts +45 -0
  209. package/dist/wallet/material.js +118 -0
  210. package/dist/wallet/mining/config.d.ts +18 -0
  211. package/dist/wallet/mining/config.js +44 -0
  212. package/dist/wallet/mining/constants.d.ts +24 -0
  213. package/dist/wallet/mining/constants.js +24 -0
  214. package/dist/wallet/mining/control.d.ts +53 -0
  215. package/dist/wallet/mining/control.js +758 -0
  216. package/dist/wallet/mining/coordination.d.ts +40 -0
  217. package/dist/wallet/mining/coordination.js +121 -0
  218. package/dist/wallet/mining/hook-protocol.d.ts +47 -0
  219. package/dist/wallet/mining/hook-protocol.js +161 -0
  220. package/dist/wallet/mining/hook-runner.d.ts +1 -0
  221. package/dist/wallet/mining/hook-runner.js +52 -0
  222. package/dist/wallet/mining/hooks.d.ts +38 -0
  223. package/dist/wallet/mining/hooks.js +520 -0
  224. package/dist/wallet/mining/index.d.ts +8 -0
  225. package/dist/wallet/mining/index.js +6 -0
  226. package/dist/wallet/mining/runner.d.ts +155 -0
  227. package/dist/wallet/mining/runner.js +2574 -0
  228. package/dist/wallet/mining/runtime-artifacts.d.ts +17 -0
  229. package/dist/wallet/mining/runtime-artifacts.js +166 -0
  230. package/dist/wallet/mining/sentences.d.ts +23 -0
  231. package/dist/wallet/mining/sentences.js +281 -0
  232. package/dist/wallet/mining/state.d.ts +9 -0
  233. package/dist/wallet/mining/state.js +75 -0
  234. package/dist/wallet/mining/types.d.ts +141 -0
  235. package/dist/wallet/mining/types.js +1 -0
  236. package/dist/wallet/mining/visualizer.d.ts +19 -0
  237. package/dist/wallet/mining/visualizer.js +134 -0
  238. package/dist/wallet/mining/worker-main.d.ts +1 -0
  239. package/dist/wallet/mining/worker-main.js +17 -0
  240. package/dist/wallet/read/context.d.ts +20 -0
  241. package/dist/wallet/read/context.js +532 -0
  242. package/dist/wallet/read/filter.d.ts +9 -0
  243. package/dist/wallet/read/filter.js +42 -0
  244. package/dist/wallet/read/index.d.ts +4 -0
  245. package/dist/wallet/read/index.js +3 -0
  246. package/dist/wallet/read/project.d.ts +11 -0
  247. package/dist/wallet/read/project.js +300 -0
  248. package/dist/wallet/read/types.d.ts +144 -0
  249. package/dist/wallet/read/types.js +1 -0
  250. package/dist/wallet/runtime.d.ts +26 -0
  251. package/dist/wallet/runtime.js +28 -0
  252. package/dist/wallet/state/crypto.d.ts +31 -0
  253. package/dist/wallet/state/crypto.js +127 -0
  254. package/dist/wallet/state/provider.d.ts +37 -0
  255. package/dist/wallet/state/provider.js +312 -0
  256. package/dist/wallet/state/session.d.ts +12 -0
  257. package/dist/wallet/state/session.js +23 -0
  258. package/dist/wallet/state/storage.d.ts +19 -0
  259. package/dist/wallet/state/storage.js +55 -0
  260. package/dist/wallet/tx/anchor.d.ts +40 -0
  261. package/dist/wallet/tx/anchor.js +1210 -0
  262. package/dist/wallet/tx/cog.d.ts +92 -0
  263. package/dist/wallet/tx/cog.js +1055 -0
  264. package/dist/wallet/tx/common.d.ts +89 -0
  265. package/dist/wallet/tx/common.js +156 -0
  266. package/dist/wallet/tx/confirm.d.ts +15 -0
  267. package/dist/wallet/tx/confirm.js +24 -0
  268. package/dist/wallet/tx/domain-admin.d.ts +105 -0
  269. package/dist/wallet/tx/domain-admin.js +869 -0
  270. package/dist/wallet/tx/domain-market.d.ts +112 -0
  271. package/dist/wallet/tx/domain-market.js +1365 -0
  272. package/dist/wallet/tx/field.d.ts +101 -0
  273. package/dist/wallet/tx/field.js +1853 -0
  274. package/dist/wallet/tx/identity-selector.d.ts +12 -0
  275. package/dist/wallet/tx/identity-selector.js +52 -0
  276. package/dist/wallet/tx/index.d.ts +7 -0
  277. package/dist/wallet/tx/index.js +7 -0
  278. package/dist/wallet/tx/journal.d.ts +5 -0
  279. package/dist/wallet/tx/journal.js +31 -0
  280. package/dist/wallet/tx/register.d.ts +68 -0
  281. package/dist/wallet/tx/register.js +952 -0
  282. package/dist/wallet/tx/reputation.d.ts +72 -0
  283. package/dist/wallet/tx/reputation.js +693 -0
  284. package/dist/wallet/tx/targets.d.ts +7 -0
  285. package/dist/wallet/tx/targets.js +122 -0
  286. package/dist/wallet/types.d.ts +249 -0
  287. package/dist/wallet/types.js +1 -0
  288. package/dist/writing_quotes.json +1654 -0
  289. package/package.json +78 -0
@@ -0,0 +1,1654 @@
1
+ [
2
+ {
3
+ "quote": "Easy reading is damn hard writing.",
4
+ "author": "Nathaniel Hawthorne"
5
+ },
6
+ {
7
+ "quote": "The first draft of anything is shit.",
8
+ "author": "Ernest Hemingway"
9
+ },
10
+ {
11
+ "quote": "I didn't have time to write a short letter, so I wrote a long one.",
12
+ "author": "Blaise Pascal"
13
+ },
14
+ {
15
+ "quote": "Substitute 'damn' every time you're inclined to write 'very;' your editor will delete it and the writing will be just as it should be.",
16
+ "author": "Mark Twain"
17
+ },
18
+ {
19
+ "quote": "The road to hell is paved with adverbs.",
20
+ "author": "Stephen King"
21
+ },
22
+ {
23
+ "quote": "Not that the story need be long, but it will take a long while to make it short.",
24
+ "author": "Henry David Thoreau"
25
+ },
26
+ {
27
+ "quote": "Vigorous writing is concise.",
28
+ "author": "William Strunk Jr."
29
+ },
30
+ {
31
+ "quote": "If it sounds like writing, I rewrite it.",
32
+ "author": "Elmore Leonard"
33
+ },
34
+ {
35
+ "quote": "Any word you have to hunt for in a thesaurus is the wrong word.",
36
+ "author": "Stephen King"
37
+ },
38
+ {
39
+ "quote": "Strip every sentence to its cleanest components.",
40
+ "author": "William Zinsser"
41
+ },
42
+ {
43
+ "quote": "There's not much to be said about the period except that most writers don't reach it soon enough.",
44
+ "author": "William Zinsser"
45
+ },
46
+ {
47
+ "quote": "The most valuable of all talents is that of never using two words when one will do.",
48
+ "author": "Thomas Jefferson"
49
+ },
50
+ {
51
+ "quote": "Omit needless words.",
52
+ "author": "William Strunk Jr."
53
+ },
54
+ {
55
+ "quote": "One day I will find the right words, and they will be simple.",
56
+ "author": "Jack Kerouac"
57
+ },
58
+ {
59
+ "quote": "The difference between the right word and the almost right word is the difference between lightning and a lightning bug.",
60
+ "author": "Mark Twain"
61
+ },
62
+ {
63
+ "quote": "A word after a word after a word is power.",
64
+ "author": "Margaret Atwood"
65
+ },
66
+ {
67
+ "quote": "For your born writer, nothing is so healing as the realization that he has come upon the right word.",
68
+ "author": "Catherine Drinker Bowen"
69
+ },
70
+ {
71
+ "quote": "Writing is easy. All you do is cross out the wrong words.",
72
+ "author": "Mark Twain"
73
+ },
74
+ {
75
+ "quote": "Words are a lens to focus one's mind.",
76
+ "author": "Ayn Rand"
77
+ },
78
+ {
79
+ "quote": "A writer is someone for whom writing is more difficult than it is for other people.",
80
+ "author": "Thomas Mann"
81
+ },
82
+ {
83
+ "quote": "The pen is the tongue of the mind.",
84
+ "author": "Miguel de Cervantes"
85
+ },
86
+ {
87
+ "quote": "Words are, of course, the most powerful drug used by mankind.",
88
+ "author": "Rudyard Kipling"
89
+ },
90
+ {
91
+ "quote": "I know nothing in the world that has as much power as a word.",
92
+ "author": "Emily Dickinson"
93
+ },
94
+ {
95
+ "quote": "All I need is a sheet of paper and something to write with, and then I can turn the world upside down.",
96
+ "author": "Friedrich Nietzsche"
97
+ },
98
+ {
99
+ "quote": "Start writing, no matter what. The water does not flow until the faucet is turned on.",
100
+ "author": "Louis L'Amour"
101
+ },
102
+ {
103
+ "quote": "You can always edit a bad page. You can't edit a blank page.",
104
+ "author": "Jodi Picoult"
105
+ },
106
+ {
107
+ "quote": "The first draft is just you telling yourself the story.",
108
+ "author": "Terry Pratchett"
109
+ },
110
+ {
111
+ "quote": "You don't start out writing good stuff. You start out writing crap and thinking it's good stuff, and then gradually you get better at it.",
112
+ "author": "Octavia E. Butler"
113
+ },
114
+ {
115
+ "quote": "I only write when I'm inspired, so I see to it that I'm inspired every morning at nine o'clock.",
116
+ "author": "Peter De Vries"
117
+ },
118
+ {
119
+ "quote": "There is nothing to writing. All you do is sit down at a typewriter and bleed.",
120
+ "author": "Ernest Hemingway"
121
+ },
122
+ {
123
+ "quote": "No tears in the writer, no tears in the reader. No surprise in the writer, no surprise in the reader.",
124
+ "author": "Robert Frost"
125
+ },
126
+ {
127
+ "quote": "Kill your darlings, kill your darlings, even when it breaks your egocentric little scribbler's heart, kill your darlings.",
128
+ "author": "Stephen King"
129
+ },
130
+ {
131
+ "quote": "You must stay drunk on writing so reality cannot destroy you.",
132
+ "author": "Ray Bradbury"
133
+ },
134
+ {
135
+ "quote": "If there's a book that you want to read, but it hasn't been written yet, then you must write it.",
136
+ "author": "Toni Morrison"
137
+ },
138
+ {
139
+ "quote": "There is no greater agony than bearing an untold story inside you.",
140
+ "author": "Maya Angelou"
141
+ },
142
+ {
143
+ "quote": "I write to discover what I know.",
144
+ "author": "Flannery O'Connor"
145
+ },
146
+ {
147
+ "quote": "The role of a writer is not to say what we can all say, but what we are unable to say.",
148
+ "author": "Anais Nin"
149
+ },
150
+ {
151
+ "quote": "I write entirely to find out what I'm thinking, what I'm looking at, what I see and what it means.",
152
+ "author": "Joan Didion"
153
+ },
154
+ {
155
+ "quote": "A professional writer is an amateur who didn't quit.",
156
+ "author": "Richard Bach"
157
+ },
158
+ {
159
+ "quote": "There are three rules for writing a novel. Unfortunately, no one knows what they are.",
160
+ "author": "W. Somerset Maugham"
161
+ },
162
+ {
163
+ "quote": "Most writers regard the truth as their most valuable possession, and therefore are most economical in its use.",
164
+ "author": "Mark Twain"
165
+ },
166
+ {
167
+ "quote": "Imagination is like a muscle. I found out that the more I wrote, the bigger it got.",
168
+ "author": "Philip Jose Farmer"
169
+ },
170
+ {
171
+ "quote": "I can shake off everything as I write; my sorrows disappear, my courage is reborn.",
172
+ "author": "Anne Frank"
173
+ },
174
+ {
175
+ "quote": "You fail only if you stop writing.",
176
+ "author": "Ray Bradbury"
177
+ },
178
+ {
179
+ "quote": "It took me fifteen years to discover I had no talent for writing, but I couldn't give it up because by that time I was too famous.",
180
+ "author": "Robert Benchley"
181
+ },
182
+ {
183
+ "quote": "A writer who waits for ideal conditions under which to work will die without putting a word on paper.",
184
+ "author": "E.B. White"
185
+ },
186
+ {
187
+ "quote": "When asked, 'How do you write?' I invariably answer, 'One word at a time.'",
188
+ "author": "Stephen King"
189
+ },
190
+ {
191
+ "quote": "Write regularly, whether you feel like writing or not, and whether you think what you're writing is any good or not.",
192
+ "author": "Anne Lamott"
193
+ },
194
+ {
195
+ "quote": "Write hard and clear about what hurts.",
196
+ "author": "Ernest Hemingway"
197
+ },
198
+ {
199
+ "quote": "The purpose of a storyteller is not to tell you how to think, but to give you questions to think upon.",
200
+ "author": "Brandon Sanderson"
201
+ },
202
+ {
203
+ "quote": "To defend what you've written is a sign that you are alive.",
204
+ "author": "William Zinsser"
205
+ },
206
+ {
207
+ "quote": "Writing is a form of therapy; sometimes I wonder how all those who do not write, compose, or paint can manage to escape the madness.",
208
+ "author": "Graham Greene"
209
+ },
210
+ {
211
+ "quote": "We write to taste life twice, in the moment and in retrospect.",
212
+ "author": "Anais Nin"
213
+ },
214
+ {
215
+ "quote": "Writing is its own reward.",
216
+ "author": "Henry Miller"
217
+ },
218
+ {
219
+ "quote": "If you don't have time to read, you don't have the time or the tools to write.",
220
+ "author": "Stephen King"
221
+ },
222
+ {
223
+ "quote": "The greatest part of a writer's time is spent in reading, in order to write; a man will turn over half a library to make one book.",
224
+ "author": "Samuel Johnson"
225
+ },
226
+ {
227
+ "quote": "Read, read, read. Read everything.",
228
+ "author": "William Faulkner"
229
+ },
230
+ {
231
+ "quote": "You should write because you love the shape of stories and sentences and the creation of different words on a page.",
232
+ "author": "Annie Proulx"
233
+ },
234
+ {
235
+ "quote": "A good writer possesses not only his own spirit but also the spirit of his friends.",
236
+ "author": "Friedrich Nietzsche"
237
+ },
238
+ {
239
+ "quote": "Everybody walks past a thousand story ideas every day. The good writers are the ones who see five or six of them.",
240
+ "author": "Orson Scott Card"
241
+ },
242
+ {
243
+ "quote": "Good story ideas seem to come quite literally from nowhere, sailing at you right out of the empty sky.",
244
+ "author": "Stephen King"
245
+ },
246
+ {
247
+ "quote": "I'm writing a first draft and reminding myself that I'm simply shoveling sand into a box so that later I can build castles.",
248
+ "author": "Shannon Hale"
249
+ },
250
+ {
251
+ "quote": "A storyteller makes up things to help other people; a liar makes up things to help himself.",
252
+ "author": "Daniel Wallace"
253
+ },
254
+ {
255
+ "quote": "Put down everything that comes into your head and then you're a writer. But an author is one who can judge his own stuff's worth, without pity, and destroy most of it.",
256
+ "author": "Colette"
257
+ },
258
+ {
259
+ "quote": "Writing is an act of faith, not a trick of grammar.",
260
+ "author": "E.B. White"
261
+ },
262
+ {
263
+ "quote": "Writing is a socially acceptable form of schizophrenia.",
264
+ "author": "E.L. Doctorow"
265
+ },
266
+ {
267
+ "quote": "If I had not existed, someone else would have written me, Hemingway, Dostoevsky, all of us.",
268
+ "author": "William Faulkner"
269
+ },
270
+ {
271
+ "quote": "Forget your generalized audience. Sometimes it helps to pick out one person and write to that one.",
272
+ "author": "John Steinbeck"
273
+ },
274
+ {
275
+ "quote": "The author, in his work, must be like God in the universe, present everywhere and visible nowhere.",
276
+ "author": "Gustave Flaubert"
277
+ },
278
+ {
279
+ "quote": "Writing and reading decrease our sense of isolation. They deepen and widen and expand our sense of life.",
280
+ "author": "Anne Lamott"
281
+ },
282
+ {
283
+ "quote": "My own experience is that once a story has been written, one has to cross out the beginning and the end. It is there that we authors do most of our lying.",
284
+ "author": "Anton Chekhov"
285
+ },
286
+ {
287
+ "quote": "There's no such thing as writer's block. That was invented by people in California who couldn't write.",
288
+ "author": "Terry Pratchett"
289
+ },
290
+ {
291
+ "quote": "Writing is a way of talking without being interrupted.",
292
+ "author": "Jules Renard"
293
+ },
294
+ {
295
+ "quote": "The first sentence can't be written until the final sentence is written.",
296
+ "author": "Joyce Carol Oates"
297
+ },
298
+ {
299
+ "quote": "I would advise anyone who aspires to a writing career that before developing his talent he would be wise to develop a thick hide.",
300
+ "author": "Harper Lee"
301
+ },
302
+ {
303
+ "quote": "Every secret of a writer's soul, every experience of his life, every quality of his mind, is written large in his works.",
304
+ "author": "Virginia Woolf"
305
+ },
306
+ {
307
+ "quote": "Writing is thinking. To write well is to think clearly. That's why it's so hard.",
308
+ "author": "David McCullough"
309
+ },
310
+ {
311
+ "quote": "If you can tell stories, create characters, devise incidents, and have sincerity and passion, it doesn't matter a damn how you write.",
312
+ "author": "W. Somerset Maugham"
313
+ },
314
+ {
315
+ "quote": "You have to write the book that wants to be written. And if the book will be too difficult for grown-ups, then you write it for children.",
316
+ "author": "Madeleine L'Engle"
317
+ },
318
+ {
319
+ "quote": "Close the door. Write with no one looking over your shoulder. Don't try to figure out what other people want to hear from you; figure out what you have to say.",
320
+ "author": "Barbara Kingsolver"
321
+ },
322
+ {
323
+ "quote": "To produce a mighty book, you must choose a mighty theme.",
324
+ "author": "Herman Melville"
325
+ },
326
+ {
327
+ "quote": "Either write something worth reading or do something worth writing.",
328
+ "author": "Benjamin Franklin"
329
+ },
330
+ {
331
+ "quote": "I have been successful probably because I have always realized that I knew nothing about writing and have merely tried to tell an interesting story entertainingly.",
332
+ "author": "Edgar Rice Burroughs"
333
+ },
334
+ {
335
+ "quote": "The true alchemists do not change lead into gold; they change the world into words.",
336
+ "author": "William H. Gass"
337
+ },
338
+ {
339
+ "quote": "Words can be like X-rays if you use them properly -- they'll go through anything.",
340
+ "author": "Aldous Huxley"
341
+ },
342
+ {
343
+ "quote": "Don't bend; don't water it down; don't try to make it logical; don't edit your own soul according to the fashion. Rather, follow your most intense obsessions mercilessly.",
344
+ "author": "Franz Kafka"
345
+ },
346
+ {
347
+ "quote": "After nourishment, shelter and companionship, stories are the thing we need most in the world.",
348
+ "author": "Philip Pullman"
349
+ },
350
+ {
351
+ "quote": "There is no such thing as a moral or an immoral book. Books are well written, or badly written. That is all.",
352
+ "author": "Oscar Wilde"
353
+ },
354
+ {
355
+ "quote": "You never have to change anything you got up in the middle of the night to write.",
356
+ "author": "Saul Bellow"
357
+ },
358
+ {
359
+ "quote": "Fill your paper with the breathings of your heart.",
360
+ "author": "William Wordsworth"
361
+ },
362
+ {
363
+ "quote": "The writer is an explorer. Every step is an advance into a new land.",
364
+ "author": "Ralph Waldo Emerson"
365
+ },
366
+ {
367
+ "quote": "The art of writing is the art of discovering what you believe.",
368
+ "author": "Gustave Flaubert"
369
+ },
370
+ {
371
+ "quote": "Words are sacred. They deserve respect. If you get the right ones, in the right order, you can nudge the world a little.",
372
+ "author": "Tom Stoppard"
373
+ },
374
+ {
375
+ "quote": "The secret of it all is to write without waiting for a fit time or place.",
376
+ "author": "Walt Whitman"
377
+ },
378
+ {
379
+ "quote": "No one else sees the world the way you do, so no one else can tell the stories that you have to tell.",
380
+ "author": "Charles de Lint"
381
+ },
382
+ {
383
+ "quote": "Successful writing is one part inspiration and two parts sheer stubbornness.",
384
+ "author": "Gillian Flynn"
385
+ },
386
+ {
387
+ "quote": "As a writer, you should not judge. You should understand.",
388
+ "author": "Ernest Hemingway"
389
+ },
390
+ {
391
+ "quote": "If you don't see the book you want on the shelf, write it.",
392
+ "author": "Beverly Cleary"
393
+ },
394
+ {
395
+ "quote": "The ability of writers to imagine what is not the self, to familiarize the strange and mystify the familiar, is the test of their power.",
396
+ "author": "Toni Morrison"
397
+ },
398
+ {
399
+ "quote": "If I waited for perfection, I would never write a word.",
400
+ "author": "Margaret Atwood"
401
+ },
402
+ {
403
+ "quote": "I write only because there is a voice within me that will not be stilled.",
404
+ "author": "Sylvia Plath"
405
+ },
406
+ {
407
+ "quote": "There are significant moments in everyone's day that can make literature. That's what you ought to write about.",
408
+ "author": "Raymond Carver"
409
+ },
410
+ {
411
+ "quote": "Plot is no more than footprints left in the snow after your characters have run by on their way to incredible destinations.",
412
+ "author": "Ray Bradbury"
413
+ },
414
+ {
415
+ "quote": "It is only by writing, not dreaming about it, that we develop our own style.",
416
+ "author": "P.D. James"
417
+ },
418
+ {
419
+ "quote": "Read a thousand books, and your words will flow like a river.",
420
+ "author": "Lisa See"
421
+ },
422
+ {
423
+ "quote": "If you fall in love with the vision and not your words, the rewriting will become easier.",
424
+ "author": "Nora DeLoach"
425
+ },
426
+ {
427
+ "quote": "Be willing and unafraid to write badly, because often the bad stuff clears the way for good.",
428
+ "author": "Jennifer Egan"
429
+ },
430
+ {
431
+ "quote": "Good writers are those who keep the language efficient.",
432
+ "author": "Ezra Pound"
433
+ },
434
+ {
435
+ "quote": "Only a mediocre writer is always at his best.",
436
+ "author": "W. Somerset Maugham"
437
+ },
438
+ {
439
+ "quote": "If a writer has to rob his mother, he will not hesitate; the Ode on a Grecian Urn is worth any number of old ladies.",
440
+ "author": "William Faulkner"
441
+ },
442
+ {
443
+ "quote": "The only end of writing is to enable readers better to enjoy life or better to endure it.",
444
+ "author": "Samuel Johnson"
445
+ },
446
+ {
447
+ "quote": "People should be interested in books, not their authors.",
448
+ "author": "Agatha Christie"
449
+ },
450
+ {
451
+ "quote": "The finest language is mostly made up of simple unimposing words.",
452
+ "author": "George Eliot"
453
+ },
454
+ {
455
+ "quote": "The chief virtue that language can have is clearness, and nothing detracts from it so much as the use of unfamiliar words.",
456
+ "author": "Hippocrates"
457
+ },
458
+ {
459
+ "quote": "The great enemy of clear language is insincerity.",
460
+ "author": "George Orwell"
461
+ },
462
+ {
463
+ "quote": "Think like a wise man but communicate in the language of the people.",
464
+ "author": "William Butler Yeats"
465
+ },
466
+ {
467
+ "quote": "Use the smallest word that does the job.",
468
+ "author": "E.B. White"
469
+ },
470
+ {
471
+ "quote": "The most important lesson in the writing trade is that any manuscript is improved if you cut away the fat.",
472
+ "author": "Robert Heinlein"
473
+ },
474
+ {
475
+ "quote": "Indeed, learning to write may be part of learning to read. For all I know, writing comes out of a superior devotion to reading.",
476
+ "author": "Eudora Welty"
477
+ },
478
+ {
479
+ "quote": "Writers aren't people exactly. Or, if they're any good, they're a whole lot of people trying so hard to be one person.",
480
+ "author": "F. Scott Fitzgerald"
481
+ },
482
+ {
483
+ "quote": "Examine every word you put on paper. You'll find a surprising number that don't serve any purpose.",
484
+ "author": "William Zinsser"
485
+ },
486
+ {
487
+ "quote": "Writing is not simply a matter of expressing pre-existing thoughts clearly. It's the process through which ideas are produced and refined.",
488
+ "author": "Steven Mintz"
489
+ },
490
+ {
491
+ "quote": "The impulse to write things down is a peculiarly compulsive one, inexplicable to those who do not share it.",
492
+ "author": "Joan Didion"
493
+ },
494
+ {
495
+ "quote": "I always was a writer. Perhaps not published, but always a writer.",
496
+ "author": "Ursula K. Le Guin"
497
+ },
498
+ {
499
+ "quote": "The pages are still blank, but there is a miraculous feeling of the words being there, written in invisible ink and clamoring to become visible.",
500
+ "author": "Vladimir Nabokov"
501
+ },
502
+ {
503
+ "quote": "I do not over-intellectualize the production process. I try to keep it simple: tell the damned story.",
504
+ "author": "Tom Clancy"
505
+ },
506
+ {
507
+ "quote": "Literature is strewn with the wreckage of those who have minded beyond reason the opinion of others.",
508
+ "author": "Virginia Woolf"
509
+ },
510
+ {
511
+ "quote": "A blank piece of paper is God's way of telling us how hard it is to be God.",
512
+ "author": "Sidney Sheldon"
513
+ },
514
+ {
515
+ "quote": "How vain it is to sit down to write when you have not stood up to live.",
516
+ "author": "Henry David Thoreau"
517
+ },
518
+ {
519
+ "quote": "History will be kind to me for I intend to write it.",
520
+ "author": "Winston Churchill"
521
+ },
522
+ {
523
+ "quote": "I kept always two books in my pocket, one to read, one to write in.",
524
+ "author": "Robert Louis Stevenson"
525
+ },
526
+ {
527
+ "quote": "Tomorrow may be hell, but today was a good writing day, and on the good writing days nothing else matters.",
528
+ "author": "Neil Gaiman"
529
+ },
530
+ {
531
+ "quote": "I can fix a bad page. I can't fix a blank page.",
532
+ "author": "Nora Roberts"
533
+ },
534
+ {
535
+ "quote": "Writing a novel is like driving a car at night. You can only see as far as your headlights, but you can make the whole trip that way.",
536
+ "author": "E.L. Doctorow"
537
+ },
538
+ {
539
+ "quote": "Almost all good writing begins with terrible first efforts. You need to start somewhere.",
540
+ "author": "Anne Lamott"
541
+ },
542
+ {
543
+ "quote": "The desire to write grows with writing.",
544
+ "author": "Erasmus"
545
+ },
546
+ {
547
+ "quote": "There is no real ending. It's just the place where you stop the story.",
548
+ "author": "Frank Herbert"
549
+ },
550
+ {
551
+ "quote": "I love writing. I love the swirl and swing of words as they tangle with human emotions.",
552
+ "author": "James Michener"
553
+ },
554
+ {
555
+ "quote": "If you want to be a writer, you must do two things above all others: read a lot and write a lot.",
556
+ "author": "Stephen King"
557
+ },
558
+ {
559
+ "quote": "Write what should not be forgotten.",
560
+ "author": "Isabel Allende"
561
+ },
562
+ {
563
+ "quote": "A writer is a world trapped in a person.",
564
+ "author": "Victor Hugo"
565
+ },
566
+ {
567
+ "quote": "You don't write because you want to say something, you write because you have something to say.",
568
+ "author": "F. Scott Fitzgerald"
569
+ },
570
+ {
571
+ "quote": "Every writer I know has trouble writing.",
572
+ "author": "Joseph Heller"
573
+ },
574
+ {
575
+ "quote": "The pen is mightier than the sword.",
576
+ "author": "Edward Bulwer-Lytton"
577
+ },
578
+ {
579
+ "quote": "Any man who keeps working is not a failure. He may not be a great writer, but if he applies the old-fashioned virtues of hard, constant labor, he'll eventually make some kind of career for himself as a writer.",
580
+ "author": "Ray Bradbury"
581
+ },
582
+ {
583
+ "quote": "No passion in the world is equal to the passion to alter someone else's draft.",
584
+ "author": "H.G. Wells"
585
+ },
586
+ {
587
+ "quote": "I try to leave out the parts that people skip.",
588
+ "author": "Elmore Leonard"
589
+ },
590
+ {
591
+ "quote": "You must write for yourself, above all. That is your only hope of creating something beautiful.",
592
+ "author": "Gustave Flaubert"
593
+ },
594
+ {
595
+ "quote": "Writing is like breathing, it's possible to learn to do it well, but the point is to do it at all.",
596
+ "author": "Julia Cameron"
597
+ },
598
+ {
599
+ "quote": "My aim is to put down on paper what I see and what I feel in the best and simplest way.",
600
+ "author": "Ernest Hemingway"
601
+ },
602
+ {
603
+ "quote": "First, find out what your hero wants, then just follow him.",
604
+ "author": "Ray Bradbury"
605
+ },
606
+ {
607
+ "quote": "A sentence should contain no unnecessary words, a paragraph no unnecessary sentences.",
608
+ "author": "William Strunk Jr."
609
+ },
610
+ {
611
+ "quote": "I am irritated by my own writing. I am like a violinist whose ear is true, but whose fingers refuse to reproduce precisely the sound he hears within.",
612
+ "author": "Gustave Flaubert"
613
+ },
614
+ {
615
+ "quote": "All good books are alike in that they are truer than if they had really happened.",
616
+ "author": "Ernest Hemingway"
617
+ },
618
+ {
619
+ "quote": "There is nothing more powerful than a story well told.",
620
+ "author": "Gabriel Garcia Marquez"
621
+ },
622
+ {
623
+ "quote": "The writer must believe that what he is doing is the most important thing in the world. And he must hold to this illusion even when he knows it is not true.",
624
+ "author": "John Steinbeck"
625
+ },
626
+ {
627
+ "quote": "What I like in a good author is not what he says but what he whispers.",
628
+ "author": "Logan Pearsall Smith"
629
+ },
630
+ {
631
+ "quote": "Description begins in the writer's imagination, but should finish in the reader's.",
632
+ "author": "Stephen King"
633
+ },
634
+ {
635
+ "quote": "Literature is the art of discovering something extraordinary about ordinary people, and saying with ordinary words something extraordinary.",
636
+ "author": "Boris Pasternak"
637
+ },
638
+ {
639
+ "quote": "I think I did pretty well, considering I started out with nothing but a bunch of blank paper.",
640
+ "author": "Steve Martin"
641
+ },
642
+ {
643
+ "quote": "Tears are words that need to be written.",
644
+ "author": "Paulo Coelho"
645
+ },
646
+ {
647
+ "quote": "I am a galley slave to pen and ink.",
648
+ "author": "Honore de Balzac"
649
+ },
650
+ {
651
+ "quote": "In writing, you must kill all your darlings.",
652
+ "author": "William Faulkner"
653
+ },
654
+ {
655
+ "quote": "I was working on the proof of one of my poems all the morning, and took out a comma. In the afternoon I put it back again.",
656
+ "author": "Oscar Wilde"
657
+ },
658
+ {
659
+ "quote": "The only writer to whom you should compare yourself is the writer you were yesterday.",
660
+ "author": "David Schlosser"
661
+ },
662
+ {
663
+ "quote": "Prose is architecture, not interior decoration.",
664
+ "author": "Ernest Hemingway"
665
+ },
666
+ {
667
+ "quote": "Science fiction is the most important literature in the history of the world, because it's the history of ideas, the history of our civilization birthing itself.",
668
+ "author": "Ray Bradbury"
669
+ },
670
+ {
671
+ "quote": "Every man's memory is his private literature.",
672
+ "author": "Aldous Huxley"
673
+ },
674
+ {
675
+ "quote": "Being a writer is a very peculiar sort of a job. It's always you versus a blank sheet of paper, and quite often the blank sheet wins.",
676
+ "author": "Neil Gaiman"
677
+ },
678
+ {
679
+ "quote": "There is no surer foundation for a beautiful friendship than a mutual taste in literature.",
680
+ "author": "P.G. Wodehouse"
681
+ },
682
+ {
683
+ "quote": "The unread story is not a story; it is little black marks on wood pulp. The reader, reading it, makes it live.",
684
+ "author": "Ursula K. Le Guin"
685
+ },
686
+ {
687
+ "quote": "Better to write for yourself and have no public, than to write for the public and have no self.",
688
+ "author": "Cyril Connolly"
689
+ },
690
+ {
691
+ "quote": "I can't write five words but that I change seven.",
692
+ "author": "Dorothy Parker"
693
+ },
694
+ {
695
+ "quote": "Always be a poet, even in prose.",
696
+ "author": "Charles Baudelaire"
697
+ },
698
+ {
699
+ "quote": "Writing is utter solitude, the descent into the cold abyss of oneself.",
700
+ "author": "Franz Kafka"
701
+ },
702
+ {
703
+ "quote": "One must be drenched in words, literally soaked in them, to have the right ones form themselves into the proper pattern at the right moment.",
704
+ "author": "Hart Crane"
705
+ },
706
+ {
707
+ "quote": "Writing is both mask and unveiling.",
708
+ "author": "E.B. White"
709
+ },
710
+ {
711
+ "quote": "I do not like to write -- I like to have written.",
712
+ "author": "Gloria Steinem"
713
+ },
714
+ {
715
+ "quote": "The best style is the style you don't notice.",
716
+ "author": "W. Somerset Maugham"
717
+ },
718
+ {
719
+ "quote": "Writing gives you the illusion of control, and then you realize it's just an illusion, that people are going to bring their own stuff into it.",
720
+ "author": "David Sedaris"
721
+ },
722
+ {
723
+ "quote": "A poet is, before anything else, a person who is passionately in love with language.",
724
+ "author": "W.H. Auden"
725
+ },
726
+ {
727
+ "quote": "Poetry is nearer to vital truth than history.",
728
+ "author": "Plato"
729
+ },
730
+ {
731
+ "quote": "A poem begins as a lump in the throat, a sense of wrong, a homesickness, a lovesickness.",
732
+ "author": "Robert Frost"
733
+ },
734
+ {
735
+ "quote": "Prose is words in their best order; poetry is the best words in the best order.",
736
+ "author": "Samuel Taylor Coleridge"
737
+ },
738
+ {
739
+ "quote": "Go in fear of abstractions.",
740
+ "author": "Ezra Pound"
741
+ },
742
+ {
743
+ "quote": "Publishing a volume of verse is like dropping a rose-petal down the Grand Canyon and waiting for the echo.",
744
+ "author": "Don Marquis"
745
+ },
746
+ {
747
+ "quote": "I try to create sympathy for my characters, then turn the monsters loose.",
748
+ "author": "Stephen King"
749
+ },
750
+ {
751
+ "quote": "There is only one plot -- things are not what they seem.",
752
+ "author": "Jim Thompson"
753
+ },
754
+ {
755
+ "quote": "You don't write about the horrors of war. No. You write about a kid's burnt socks lying in the road.",
756
+ "author": "Richard Price"
757
+ },
758
+ {
759
+ "quote": "Do not hoard what seems good for a later place in the book, or for another book; give it, give it all, give it now.",
760
+ "author": "Annie Dillard"
761
+ },
762
+ {
763
+ "quote": "No author dislikes to be edited as much as he dislikes not to be published.",
764
+ "author": "Russell Lynes"
765
+ },
766
+ {
767
+ "quote": "Anyone who says writing is easy isn't doing it right.",
768
+ "author": "Amy Joy"
769
+ },
770
+ {
771
+ "quote": "A critic can only review the book he has read, not the one which the writer wrote.",
772
+ "author": "Mignon McLaughlin"
773
+ },
774
+ {
775
+ "quote": "A great writer reveals the truth even when he or she does not wish to.",
776
+ "author": "Tom Bissell"
777
+ },
778
+ {
779
+ "quote": "Writing is the only profession where no one considers you ridiculous if you earn no money.",
780
+ "author": "Jules Renard"
781
+ },
782
+ {
783
+ "quote": "To be the kind of writer you want to be, you must first be the kind of thinker you want to be.",
784
+ "author": "Ayn Rand"
785
+ },
786
+ {
787
+ "quote": "I need about one hundred fifty drafts of a poem to get it right, and fifty more to make it sound spontaneous.",
788
+ "author": "James Dickey"
789
+ },
790
+ {
791
+ "quote": "Poetry lifts the veil from the hidden beauty of the world, and makes familiar objects be as if they were not familiar.",
792
+ "author": "Percy Bysshe Shelley"
793
+ },
794
+ {
795
+ "quote": "Revision is one of the exquisite pleasures of writing.",
796
+ "author": "Bernard Malamud"
797
+ },
798
+ {
799
+ "quote": "My aim in constructing sentences is to make the sentence utterly easy to understand, writing what I call transparent prose.",
800
+ "author": "Ken Follett"
801
+ },
802
+ {
803
+ "quote": "The writer writes in order to teach himself, to understand himself, to satisfy himself.",
804
+ "author": "Alfred Kazin"
805
+ },
806
+ {
807
+ "quote": "Becoming a writer means being creative enough to find the time and the place in your life for writing.",
808
+ "author": "Heather Sellers"
809
+ },
810
+ {
811
+ "quote": "The only thing I was fit for was to be a writer, and this notion rested solely on my suspicion that I would never be fit for real work.",
812
+ "author": "Russell Baker"
813
+ },
814
+ {
815
+ "quote": "Poetry is the journal of a sea animal living on land, wanting to fly in the air.",
816
+ "author": "Carl Sandburg"
817
+ },
818
+ {
819
+ "quote": "Poetry is when an emotion has found its thought and the thought has found words.",
820
+ "author": "Robert Frost"
821
+ },
822
+ {
823
+ "quote": "If I feel physically as if the top of my head were taken off, I know that is poetry.",
824
+ "author": "Emily Dickinson"
825
+ },
826
+ {
827
+ "quote": "You write your first draft with your heart. You rewrite with your head.",
828
+ "author": "Finding Forrester"
829
+ },
830
+ {
831
+ "quote": "The wastebasket is a writer's best friend.",
832
+ "author": "Isaac Bashevis Singer"
833
+ },
834
+ {
835
+ "quote": "Sleep on your writing; take a walk over it; scrutinize it of a morning; review it of an afternoon; digest it after a meal; let it sleep in your drawer a twelvemonth; never venture a whisper about it to your friend, if he be an author especially.",
836
+ "author": "A. Bronson Alcott"
837
+ },
838
+ {
839
+ "quote": "A writer who is afraid to overreach himself is as useless as a general who is afraid to be wrong.",
840
+ "author": "Raymond Chandler"
841
+ },
842
+ {
843
+ "quote": "I try to pull the reader into the story and make him forget, as much as possible, that he's reading a story.",
844
+ "author": "Elmore Leonard"
845
+ },
846
+ {
847
+ "quote": "The skill of writing is to create a context in which other people can think.",
848
+ "author": "Edwin Schlossberg"
849
+ },
850
+ {
851
+ "quote": "Good writing is supposed to evoke sensation in the reader -- not the fact that it is raining, but the feeling of being rained upon.",
852
+ "author": "E.L. Doctorow"
853
+ },
854
+ {
855
+ "quote": "When your story is ready for rewrite, cut it to the bone. Get rid of every ounce of excess fat.",
856
+ "author": "Stephen King"
857
+ },
858
+ {
859
+ "quote": "Writing is the painting of the voice.",
860
+ "author": "Voltaire"
861
+ },
862
+ {
863
+ "quote": "A good essay must have this permanent quality about it; it must draw its curtain round us, but it must be a curtain that shuts us in, not out.",
864
+ "author": "Virginia Woolf"
865
+ },
866
+ {
867
+ "quote": "Every story would be another story, and unrecognizable if it took up its characters and plot and happened somewhere else.",
868
+ "author": "Eudora Welty"
869
+ },
870
+ {
871
+ "quote": "The most essential gift for a good writer is a built-in, shockproof, shit detector.",
872
+ "author": "Ernest Hemingway"
873
+ },
874
+ {
875
+ "quote": "We do not write as we want but as we can.",
876
+ "author": "W. Somerset Maugham"
877
+ },
878
+ {
879
+ "quote": "I believe the road to hell is paved with adverbs, and I will shout it from the rooftops.",
880
+ "author": "Stephen King"
881
+ },
882
+ {
883
+ "quote": "Literature is the most agreeable way of ignoring life.",
884
+ "author": "Fernando Pessoa"
885
+ },
886
+ {
887
+ "quote": "A writer's job is to turn his worst moments into money.",
888
+ "author": "J.P. Donleavy"
889
+ },
890
+ {
891
+ "quote": "There is creative reading as well as creative writing.",
892
+ "author": "Ralph Waldo Emerson"
893
+ },
894
+ {
895
+ "quote": "There is something delicious about writing the first words of a story. You never quite know where they'll take you.",
896
+ "author": "Beatrix Potter"
897
+ },
898
+ {
899
+ "quote": "The act of writing is the act of discovering what you believe.",
900
+ "author": "David Hare"
901
+ },
902
+ {
903
+ "quote": "I have never started a poem yet whose end I knew. Writing a poem is discovering.",
904
+ "author": "Robert Frost"
905
+ },
906
+ {
907
+ "quote": "A sentence should read as if its author, had he held a plough instead of a pen, could have drawn a furrow deep and straight to the end.",
908
+ "author": "Henry David Thoreau"
909
+ },
910
+ {
911
+ "quote": "Half my life is an act of revision.",
912
+ "author": "John Irving"
913
+ },
914
+ {
915
+ "quote": "We are lonesome animals. We spend all our life trying to be less lonesome. One of our ancient methods is to tell a story begging the listener to say -- and to feel -- yes, that's the way it is, or at least that's the way I feel it. You're not as alone as you thought.",
916
+ "author": "John Steinbeck"
917
+ },
918
+ {
919
+ "quote": "What really knocks me out is a book that, when you're all done reading it, you wish the author that wrote it was a terrific friend of yours and you could call him up on the phone.",
920
+ "author": "J.D. Salinger"
921
+ },
922
+ {
923
+ "quote": "I am a man, and alive. For this reason I am a novelist. And, being a novelist, I consider myself superior to the saint, the scientist, the philosopher, and the poet, who are all great masters of different bits of man alive, but never get the whole hog.",
924
+ "author": "D.H. Lawrence"
925
+ },
926
+ {
927
+ "quote": "Writing is something you do alone. It's a profession for introverts who want to tell you a story but don't want to make eye contact while doing it.",
928
+ "author": "John Green"
929
+ },
930
+ {
931
+ "quote": "We don't need a list of rights and wrongs, tables of dos and don'ts: we need books, time, and silence.",
932
+ "author": "Philip Pullman"
933
+ },
934
+ {
935
+ "quote": "Quantity produces quality. If you only write a few things, you're doomed.",
936
+ "author": "Ray Bradbury"
937
+ },
938
+ {
939
+ "quote": "I never desire to converse with a man who has written more than he has read.",
940
+ "author": "Samuel Johnson"
941
+ },
942
+ {
943
+ "quote": "Rewriting is when writing really gets to be fun. In baseball you only get three swings and you're out. In rewriting, you get almost as many swings as you want.",
944
+ "author": "Neil Simon"
945
+ },
946
+ {
947
+ "quote": "The difference between fiction and reality is that fiction has to make sense.",
948
+ "author": "Tom Clancy"
949
+ },
950
+ {
951
+ "quote": "When I write, I feel like an armless, legless man with a crayon in his mouth.",
952
+ "author": "Kurt Vonnegut"
953
+ },
954
+ {
955
+ "quote": "The art of art, the glory of expression and the sunshine of the light of letters, is simplicity.",
956
+ "author": "Walt Whitman"
957
+ },
958
+ {
959
+ "quote": "What lasts in the reader's mind is not the phrase but the effect the phrase created.",
960
+ "author": "Isaac Bashevis Singer"
961
+ },
962
+ {
963
+ "quote": "I love words. I love to sing them and speak them and even now, I must admit, I have fallen into the joy of writing them.",
964
+ "author": "Anne Rice"
965
+ },
966
+ {
967
+ "quote": "Books aren't written -- they're rewritten. Including your own. It is one of the hardest things to accept, especially after the seventh rewrite hasn't quite done it.",
968
+ "author": "Michael Crichton"
969
+ },
970
+ {
971
+ "quote": "A writer without interest or sympathy for the foibles of his fellow man is not conceivable as a writer.",
972
+ "author": "Joseph Conrad"
973
+ },
974
+ {
975
+ "quote": "There is no rule on how to write. Sometimes it comes easily and perfectly; sometimes it's like drilling rock and then blasting it out with charges.",
976
+ "author": "Ernest Hemingway"
977
+ },
978
+ {
979
+ "quote": "Style means the right word. The rest matters little.",
980
+ "author": "Jules Renard"
981
+ },
982
+ {
983
+ "quote": "Writing, I think, is not apart from living. Writing is a kind of double living.",
984
+ "author": "Catherine Drinker Bowen"
985
+ },
986
+ {
987
+ "quote": "Be obscure clearly.",
988
+ "author": "E.B. White"
989
+ },
990
+ {
991
+ "quote": "If you have other things in your life -- family, friends, good productive day work -- these can interact with your writing and the sum will be all the richer.",
992
+ "author": "David Brin"
993
+ },
994
+ {
995
+ "quote": "A story has no beginning or end; arbitrarily one chooses that moment of experience from which to look back or from which to look ahead.",
996
+ "author": "Graham Greene"
997
+ },
998
+ {
999
+ "quote": "People say, 'What advice do you have for people who want to be writers?' I say, they don't really need advice, they know they want to be writers, and they're gonna do it.",
1000
+ "author": "R.L. Stine"
1001
+ },
1002
+ {
1003
+ "quote": "Poetry is the synthesis of hyacinths and biscuits.",
1004
+ "author": "Carl Sandburg"
1005
+ },
1006
+ {
1007
+ "quote": "I would hurl words into this darkness and wait for an echo, and if an echo sounded, no matter how faintly, I would send other words to tell, to march, to fight.",
1008
+ "author": "Richard Wright"
1009
+ },
1010
+ {
1011
+ "quote": "All good writing is swimming under water and holding your breath.",
1012
+ "author": "F. Scott Fitzgerald"
1013
+ },
1014
+ {
1015
+ "quote": "Cut out all these exclamation points. An exclamation point is like laughing at your own joke.",
1016
+ "author": "F. Scott Fitzgerald"
1017
+ },
1018
+ {
1019
+ "quote": "I hate writing, I love having written.",
1020
+ "author": "Dorothy Parker"
1021
+ },
1022
+ {
1023
+ "quote": "You can make anything by writing.",
1024
+ "author": "C.S. Lewis"
1025
+ },
1026
+ {
1027
+ "quote": "All you have to do is write one true sentence. Write the truest sentence that you know.",
1028
+ "author": "Ernest Hemingway"
1029
+ },
1030
+ {
1031
+ "quote": "The last thing one discovers in composing a work is what to put first.",
1032
+ "author": "Blaise Pascal"
1033
+ },
1034
+ {
1035
+ "quote": "If it can be cut out, then cut it out. Everything non-essential that you can eliminate strengthens what's left.",
1036
+ "author": "Isaac Babel"
1037
+ },
1038
+ {
1039
+ "quote": "Let the reader find that he cannot afford to omit any line of your writing because you have omitted every word that he can spare.",
1040
+ "author": "Ralph Waldo Emerson"
1041
+ },
1042
+ {
1043
+ "quote": "If you want to change the world, pick up your pen and write.",
1044
+ "author": "Martin Luther"
1045
+ },
1046
+ {
1047
+ "quote": "All that I hope to say in books, all that I ever hope to say, is that I love the world.",
1048
+ "author": "E.B. White"
1049
+ },
1050
+ {
1051
+ "quote": "Let me live, love, and say it well in good sentences.",
1052
+ "author": "Sylvia Plath"
1053
+ },
1054
+ {
1055
+ "quote": "Exercise the writing muscle every day, even if it is only a letter, notes, a title list, a character sketch, a journal entry.",
1056
+ "author": "Jane Yolen"
1057
+ },
1058
+ {
1059
+ "quote": "The purpose of a writer is to keep civilization from destroying itself.",
1060
+ "author": "Albert Camus"
1061
+ },
1062
+ {
1063
+ "quote": "So the writer who breeds more words than he needs is making a chore for the reader who reads.",
1064
+ "author": "Dr. Seuss"
1065
+ },
1066
+ {
1067
+ "quote": "The Six Golden Rules of Writing: Read, read, read, and write, write, write.",
1068
+ "author": "Ernest Gaines"
1069
+ },
1070
+ {
1071
+ "quote": "It's none of their business that you have to learn to write. Let them think you were born that way.",
1072
+ "author": "Ernest Hemingway"
1073
+ },
1074
+ {
1075
+ "quote": "Stories are the only enchantment possible, for when we begin to see our suffering as a story, we are saved.",
1076
+ "author": "Anais Nin"
1077
+ },
1078
+ {
1079
+ "quote": "There are only two or three human stories, and they go on repeating themselves as fiercely as if they had never happened before.",
1080
+ "author": "Willa Cather"
1081
+ },
1082
+ {
1083
+ "quote": "Writing, to me, is simply thinking through my fingers.",
1084
+ "author": "Isaac Asimov"
1085
+ },
1086
+ {
1087
+ "quote": "There is no greater power on this earth than story.",
1088
+ "author": "Libba Bray"
1089
+ },
1090
+ {
1091
+ "quote": "Stories aren't made of language: they're made of something else, perhaps they're made of life.",
1092
+ "author": "Philip Pullman"
1093
+ },
1094
+ {
1095
+ "quote": "Tell the readers a story! Because without a story, you are merely using words to prove you can string them together in logical sentences.",
1096
+ "author": "Anne McCaffrey"
1097
+ },
1098
+ {
1099
+ "quote": "Never write anything that does not give you great pleasure. Emotion is easily transferred from the writer to the reader.",
1100
+ "author": "Joseph Joubert"
1101
+ },
1102
+ {
1103
+ "quote": "It is a writer's greatest pleasure to hear that someone was kept up until the unholy hours reading one of his books.",
1104
+ "author": "Brandon Sanderson"
1105
+ },
1106
+ {
1107
+ "quote": "Don't take anyone's writing advice too seriously.",
1108
+ "author": "Lev Grossman"
1109
+ },
1110
+ {
1111
+ "quote": "If I had to give young writers advice, I would say don't listen to writers talking about writing or themselves.",
1112
+ "author": "Lillian Hellman"
1113
+ },
1114
+ {
1115
+ "quote": "The main thing I try to do is write as clearly as I can.",
1116
+ "author": "E.B. White"
1117
+ },
1118
+ {
1119
+ "quote": "Nothing in my life is worth writing about. I know that story. I write books to answer questions.",
1120
+ "author": "Toni Morrison"
1121
+ },
1122
+ {
1123
+ "quote": "Finish your first draft and then we'll talk.",
1124
+ "author": "Michael Korda"
1125
+ },
1126
+ {
1127
+ "quote": "I write to find what I have to say. I edit to figure out how to say it right.",
1128
+ "author": "Cheryl Strayed"
1129
+ },
1130
+ {
1131
+ "quote": "If the book is true, it will find an audience that is meant to read it.",
1132
+ "author": "Wally Lamb"
1133
+ },
1134
+ {
1135
+ "quote": "The first thing a writer has to do is find another source of income.",
1136
+ "author": "Ellen Gilchrist"
1137
+ },
1138
+ {
1139
+ "quote": "Writing is an exploration. You start from nothing and learn as you go.",
1140
+ "author": "E.L. Doctorow"
1141
+ },
1142
+ {
1143
+ "quote": "It is perfectly okay to write garbage -- as long as you edit brilliantly.",
1144
+ "author": "C.J. Cherryh"
1145
+ },
1146
+ {
1147
+ "quote": "An author in his book must be like God in the universe, present everywhere and visible nowhere.",
1148
+ "author": "Gustave Flaubert"
1149
+ },
1150
+ {
1151
+ "quote": "I don't care if a reader hates one of my stories, just as long as he finishes the book.",
1152
+ "author": "Roald Dahl"
1153
+ },
1154
+ {
1155
+ "quote": "A scrupulous writer, in every sentence that he writes, will ask himself at least four questions.",
1156
+ "author": "George Orwell"
1157
+ },
1158
+ {
1159
+ "quote": "The hard part about writing a novel is finishing it.",
1160
+ "author": "Ernest Hemingway"
1161
+ },
1162
+ {
1163
+ "quote": "The writer's only responsibility is to his art.",
1164
+ "author": "William Faulkner"
1165
+ },
1166
+ {
1167
+ "quote": "If you have any young friends who aspire to become writers, the second greatest favor you can do them is to present them with copies of The Elements of Style.",
1168
+ "author": "Dorothy Parker"
1169
+ },
1170
+ {
1171
+ "quote": "We do not write in order to be understood; we write in order to understand.",
1172
+ "author": "Cecil Day-Lewis"
1173
+ },
1174
+ {
1175
+ "quote": "For me, a page of good prose is where one hears the rain and the noise of battle.",
1176
+ "author": "John Cheever"
1177
+ },
1178
+ {
1179
+ "quote": "Writing free verse is like playing tennis with the net down.",
1180
+ "author": "Robert Frost"
1181
+ },
1182
+ {
1183
+ "quote": "A good novel tells us the truth about its hero; but a bad novel tells us the truth about its author.",
1184
+ "author": "G.K. Chesterton"
1185
+ },
1186
+ {
1187
+ "quote": "I would write ads for deodorants or labels for catsup bottles if I had to.",
1188
+ "author": "Kurt Vonnegut"
1189
+ },
1190
+ {
1191
+ "quote": "Every fine story must leave in the mind of the sensitive reader an intangible residuum of pleasure.",
1192
+ "author": "Willa Cather"
1193
+ },
1194
+ {
1195
+ "quote": "No man should ever publish a book until he has first read it to a woman.",
1196
+ "author": "Van Wyck Brooks"
1197
+ },
1198
+ {
1199
+ "quote": "What I had to face, the very bitter lesson that everyone who wants to write has got to learn, was that a thing may in itself be the finest piece of writing one has ever done, and yet have absolutely no place in the manuscript one hopes to publish.",
1200
+ "author": "Thomas Wolfe"
1201
+ },
1202
+ {
1203
+ "quote": "When something can be read without effort, great effort has gone into its writing.",
1204
+ "author": "Enrique Jardiel Poncela"
1205
+ },
1206
+ {
1207
+ "quote": "A good style should show no signs of effort. What is written should seem a happy accident.",
1208
+ "author": "W. Somerset Maugham"
1209
+ },
1210
+ {
1211
+ "quote": "Write with the door closed, rewrite with the door open.",
1212
+ "author": "Stephen King"
1213
+ },
1214
+ {
1215
+ "quote": "Every writer is a frustrated actor who recites his lines in the hidden auditorium of his skull.",
1216
+ "author": "Rod Serling"
1217
+ },
1218
+ {
1219
+ "quote": "I have been correcting the proofs of my poems. In the morning, after hard work, I took a comma out of one sentence. In the afternoon, I put it back again.",
1220
+ "author": "Oscar Wilde"
1221
+ },
1222
+ {
1223
+ "quote": "Writing a book is a horrible, exhausting struggle, like a long bout of some painful illness.",
1224
+ "author": "George Orwell"
1225
+ },
1226
+ {
1227
+ "quote": "Long patience and application saturated with your heart's blood -- you will either write or you will not -- and the only way to find out whether you will or not is to try.",
1228
+ "author": "Jim Tully"
1229
+ },
1230
+ {
1231
+ "quote": "People on the outside think there's something magical about writing, that you go up in the attic at midnight and cast the bones and come down in the morning with a story, but it isn't like that. You sit in back of the typewriter and you work.",
1232
+ "author": "Harlan Ellison"
1233
+ },
1234
+ {
1235
+ "quote": "What no wife of a writer can ever understand is that a writer is working when he's staring out of the window.",
1236
+ "author": "Burton Rascoe"
1237
+ },
1238
+ {
1239
+ "quote": "There's nothing to writing. All you do is sit down at a typewriter and open a vein.",
1240
+ "author": "Red Smith"
1241
+ },
1242
+ {
1243
+ "quote": "If writers wrote as carelessly as some people talk, then adhasdh asjlkdh fkal;jd.",
1244
+ "author": "Lemony Snicket"
1245
+ },
1246
+ {
1247
+ "quote": "The beautiful part of writing is that you don't have to get it right the first time, unlike, say, a brain surgeon.",
1248
+ "author": "Robert Cormier"
1249
+ },
1250
+ {
1251
+ "quote": "A synonym is a word you use when you can't spell the other one.",
1252
+ "author": "Baltasar Gracian"
1253
+ },
1254
+ {
1255
+ "quote": "Great writing is not about the number of words, but about the depth of the ideas.",
1256
+ "author": "Franz Kafka"
1257
+ },
1258
+ {
1259
+ "quote": "A novel is a mirror carried along a main road.",
1260
+ "author": "Stendhal"
1261
+ },
1262
+ {
1263
+ "quote": "Every writer is a narcissist. This does not mean that he is vain; it only means that he is hopelessly self-absorbed.",
1264
+ "author": "Leo Rosten"
1265
+ },
1266
+ {
1267
+ "quote": "Outside of a dog, a book is man's best friend. Inside of a dog it's too dark to read.",
1268
+ "author": "Groucho Marx"
1269
+ },
1270
+ {
1271
+ "quote": "In six pages I can't even say hello.",
1272
+ "author": "James Michener"
1273
+ },
1274
+ {
1275
+ "quote": "Get black on white.",
1276
+ "author": "Guy de Maupassant"
1277
+ },
1278
+ {
1279
+ "quote": "Sit down and put down everything that comes into your head and then you're a writer. But an author is one who can judge his own stuff's worth, without pity, and destroy most of it.",
1280
+ "author": "Colette"
1281
+ },
1282
+ {
1283
+ "quote": "I can't understand how a person can write without wishing to mend the world.",
1284
+ "author": "Leo Tolstoy"
1285
+ },
1286
+ {
1287
+ "quote": "Only the very weak-minded refuse to be influenced by literature and poetry.",
1288
+ "author": "Cassandra Clare"
1289
+ },
1290
+ {
1291
+ "quote": "In the writing process, the more a story cooks, the better.",
1292
+ "author": "Doris Lessing"
1293
+ },
1294
+ {
1295
+ "quote": "You learn by writing short stories. Keep writing short stories. The money is in novels, but writing short stories keeps your writing lean and pointed.",
1296
+ "author": "Larry Niven"
1297
+ },
1298
+ {
1299
+ "quote": "I think the single most important thing for any writer is to read voraciously.",
1300
+ "author": "Karen Thompson Walker"
1301
+ },
1302
+ {
1303
+ "quote": "When in doubt, have a man come through a door with a gun in his hand.",
1304
+ "author": "Raymond Chandler"
1305
+ },
1306
+ {
1307
+ "quote": "Writing is like driving at night in the fog. You can only see as far as your headlights, but you can make the whole trip that way.",
1308
+ "author": "E.L. Doctorow"
1309
+ },
1310
+ {
1311
+ "quote": "Cheat your landlord if you can and must, but do not try to shortchange the Muse.",
1312
+ "author": "William S. Burroughs"
1313
+ },
1314
+ {
1315
+ "quote": "Writing is a job, a talent, but it's also the place to go in your head. It is the imaginary friend you drink your tea with in the afternoon.",
1316
+ "author": "Ann Patchett"
1317
+ },
1318
+ {
1319
+ "quote": "You have to resign yourself to wasting lots of trees before you write anything really good.",
1320
+ "author": "Chet Atkins"
1321
+ },
1322
+ {
1323
+ "quote": "The real importance of reading is that it creates an ease and intimacy with the process of writing.",
1324
+ "author": "Stephen King"
1325
+ },
1326
+ {
1327
+ "quote": "Every book has an intrinsic impossibility, which its writer discovers as soon as his first excitement dwindles.",
1328
+ "author": "Annie Dillard"
1329
+ },
1330
+ {
1331
+ "quote": "I want the reader to feel something is astonishing -- not the what happens but the way everything happens.",
1332
+ "author": "Alice Munro"
1333
+ },
1334
+ {
1335
+ "quote": "You can fix anything but a blank page.",
1336
+ "author": "Nora Roberts"
1337
+ },
1338
+ {
1339
+ "quote": "Discipline allows magic. To be a writer is to be the very best of assassins. You do not sit down and write every day to force the Muse to show up. You sit down and write every day so that when she shows up, you have the maximum chance of catching her, pinning her down, and begging her to stay for a while.",
1340
+ "author": "Lili St. Crow"
1341
+ },
1342
+ {
1343
+ "quote": "It ain't whatcha write, it's the way atcha write it.",
1344
+ "author": "Jack Kerouac"
1345
+ },
1346
+ {
1347
+ "quote": "The role of the writer is not to say what we all can say, but what we are unable to say.",
1348
+ "author": "Anais Nin"
1349
+ },
1350
+ {
1351
+ "quote": "As for my next book, I am going to hold myself from writing it till I have it impending in me: grown heavy in my mind like a ripe pear, pendant, gravid, asking to be cut or it will fall.",
1352
+ "author": "Virginia Woolf"
1353
+ },
1354
+ {
1355
+ "quote": "In plain English: what gets you to the desk and keeps you there and how does the story take shape? I think it's different for all writers.",
1356
+ "author": "Hilary Mantel"
1357
+ },
1358
+ {
1359
+ "quote": "If you write one story, it may be bad; if you write a hundred, you have the odds in your favor.",
1360
+ "author": "Edgar Rice Burroughs"
1361
+ },
1362
+ {
1363
+ "quote": "A good writer is basically a storyteller, not a scholar or a redeemer of mankind.",
1364
+ "author": "Isaac Bashevis Singer"
1365
+ },
1366
+ {
1367
+ "quote": "One ought only to write when one leaves a piece of one's own flesh in the inkpot, each time one dips one's pen.",
1368
+ "author": "Leo Tolstoy"
1369
+ },
1370
+ {
1371
+ "quote": "The most original authors are not so because they advance what is new, but because they put what they have to say as if it had never been said before.",
1372
+ "author": "Johann Wolfgang von Goethe"
1373
+ },
1374
+ {
1375
+ "quote": "There is only one way to defeat the enemy, and that is to write as well as one can.",
1376
+ "author": "Saul Bellow"
1377
+ },
1378
+ {
1379
+ "quote": "If you are pointing out one of the things a story is about, then you are very probably right; if you are pointing out THE thing a story is about you are very probably wrong.",
1380
+ "author": "Neil Gaiman"
1381
+ },
1382
+ {
1383
+ "quote": "The writer must wade into life as into the sea, but only up to the navel.",
1384
+ "author": "Gustave Flaubert"
1385
+ },
1386
+ {
1387
+ "quote": "Don't be 'a writer.' Be writing.",
1388
+ "author": "William Faulkner"
1389
+ },
1390
+ {
1391
+ "quote": "You get ideas from daydreaming. You get ideas from being bored. You get ideas all the time. The only difference between writers and other people is we notice when we're doing it.",
1392
+ "author": "Neil Gaiman"
1393
+ },
1394
+ {
1395
+ "quote": "Good writing is clear thinking made visible.",
1396
+ "author": "Bill Wheeler"
1397
+ },
1398
+ {
1399
+ "quote": "I shall live badly if I do not write, and I shall write badly if I do not live.",
1400
+ "author": "Francoise Sagan"
1401
+ },
1402
+ {
1403
+ "quote": "Bad writers are nearly always haunted by the notion that Latin or Greek phrases look a tremendous lot better.",
1404
+ "author": "Stephen King"
1405
+ },
1406
+ {
1407
+ "quote": "I am by calling a dealer in words, and words are, of course, the most powerful drug used by mankind.",
1408
+ "author": "Rudyard Kipling"
1409
+ },
1410
+ {
1411
+ "quote": "I can write better than anybody who can write faster, and I can write faster than anybody who can write better.",
1412
+ "author": "A.J. Liebling"
1413
+ },
1414
+ {
1415
+ "quote": "A blank page is no empty space. It is brimming with potential.",
1416
+ "author": "Katerina Stoykova Klemer"
1417
+ },
1418
+ {
1419
+ "quote": "Only write from your own passion, your own truth. That's the only thing you really know about, and anything else leads you away from the pulse.",
1420
+ "author": "Marianne Williamson"
1421
+ },
1422
+ {
1423
+ "quote": "If the stories come to you, care for them. And learn to give them away where they are needed.",
1424
+ "author": "Barry Lopez"
1425
+ },
1426
+ {
1427
+ "quote": "When I am working on a book or a story I write every morning as soon after first light as possible.",
1428
+ "author": "Ernest Hemingway"
1429
+ },
1430
+ {
1431
+ "quote": "Tis the good reader that makes the good book.",
1432
+ "author": "Ralph Waldo Emerson"
1433
+ },
1434
+ {
1435
+ "quote": "I do a lot of revising. Novels are not written, they are rewritten. This is one of the hardest things to accept, especially after your first draft.",
1436
+ "author": "Michael Crichton"
1437
+ },
1438
+ {
1439
+ "quote": "A word is dead when it is said, some say. I say it just begins to live that day.",
1440
+ "author": "Emily Dickinson"
1441
+ },
1442
+ {
1443
+ "quote": "Think before you speak. Read before you think.",
1444
+ "author": "Fran Lebowitz"
1445
+ },
1446
+ {
1447
+ "quote": "The writer's job is not to judge, but to seek to understand.",
1448
+ "author": "Ernest Hemingway"
1449
+ },
1450
+ {
1451
+ "quote": "You see, in my view a writer is a writer not because she writes well and easily, because she has amazing talent, or because everything she does is golden. A writer is a writer because, even when there is no hope, even when nothing you do shows any sign of promise, you keep writing anyway.",
1452
+ "author": "Junot Diaz"
1453
+ },
1454
+ {
1455
+ "quote": "Write to please just one person. If you open a window and make love to the world, your story will get pneumonia.",
1456
+ "author": "Kurt Vonnegut"
1457
+ },
1458
+ {
1459
+ "quote": "I am so clever that sometimes I don't understand a single word of what I am saying.",
1460
+ "author": "Oscar Wilde"
1461
+ },
1462
+ {
1463
+ "quote": "A great book should leave you with many experiences, and slightly exhausted at the end. You live several lives while reading.",
1464
+ "author": "William Styron"
1465
+ },
1466
+ {
1467
+ "quote": "I would rather be attacked than unnoticed. For the worst thing you can do to an author is to be silent as to his works.",
1468
+ "author": "Samuel Johnson"
1469
+ },
1470
+ {
1471
+ "quote": "Literature adds to reality, it does not simply describe it. It enriches the necessary competencies that daily life requires and provides.",
1472
+ "author": "C.S. Lewis"
1473
+ },
1474
+ {
1475
+ "quote": "The pen is an instrument of discovery rather than just a means of recording.",
1476
+ "author": "Billy Collins"
1477
+ },
1478
+ {
1479
+ "quote": "I have only made this letter longer because I have not had the time to make it shorter.",
1480
+ "author": "Blaise Pascal"
1481
+ },
1482
+ {
1483
+ "quote": "There's no money in poetry, but then there's no poetry in money, either.",
1484
+ "author": "Robert Graves"
1485
+ },
1486
+ {
1487
+ "quote": "In a good bookroom you feel in some mysterious way that you are absorbing the wisdom contained in all the books through your skin, without even opening them.",
1488
+ "author": "Mark Twain"
1489
+ },
1490
+ {
1491
+ "quote": "What lasts is what is written. We look to writing as the test of truth.",
1492
+ "author": "Joan Didion"
1493
+ },
1494
+ {
1495
+ "quote": "Writing is applied daydreaming.",
1496
+ "author": "Stephen King"
1497
+ },
1498
+ {
1499
+ "quote": "To write means more than putting pretty words on a page; the writer must also intensify the reader's experience of life.",
1500
+ "author": "Lee Child"
1501
+ },
1502
+ {
1503
+ "quote": "The beautiful thing about writing is that you can do it anywhere. All you need is your mind.",
1504
+ "author": "Walter Mosley"
1505
+ },
1506
+ {
1507
+ "quote": "The writer's real enemy is not a lack of talent but a surplus of sloppiness.",
1508
+ "author": "William Zinsser"
1509
+ },
1510
+ {
1511
+ "quote": "In matters of grave importance, style, not sincerity, is the vital thing.",
1512
+ "author": "Oscar Wilde"
1513
+ },
1514
+ {
1515
+ "quote": "No one ever committed suicide while reading a good book, but many have tried while trying to write one.",
1516
+ "author": "Robert Byrne"
1517
+ },
1518
+ {
1519
+ "quote": "If people cannot write well, they cannot think well, and if they cannot think well, others will do their thinking for them.",
1520
+ "author": "George Orwell"
1521
+ },
1522
+ {
1523
+ "quote": "All words are pegs to hang ideas on.",
1524
+ "author": "Henry Ward Beecher"
1525
+ },
1526
+ {
1527
+ "quote": "To survive, you must tell stories.",
1528
+ "author": "Umberto Eco"
1529
+ },
1530
+ {
1531
+ "quote": "Learn as much by writing as by reading.",
1532
+ "author": "Lord Acton"
1533
+ },
1534
+ {
1535
+ "quote": "Writing has laws of perspective, of light and shade just as painting does, or music. If you are born knowing them, fine. If not, learn them. Then rearrange the rules to suit yourself.",
1536
+ "author": "Truman Capote"
1537
+ },
1538
+ {
1539
+ "quote": "I put a piece of paper under my pillow, and when I could not sleep I wrote in the dark.",
1540
+ "author": "Henry David Thoreau"
1541
+ },
1542
+ {
1543
+ "quote": "We live and breathe words.",
1544
+ "author": "Cassandra Clare"
1545
+ },
1546
+ {
1547
+ "quote": "I write because I don't know what I think until I read what I say.",
1548
+ "author": "Flannery O'Connor"
1549
+ },
1550
+ {
1551
+ "quote": "One should use common words to say uncommon things.",
1552
+ "author": "Arthur Schopenhauer"
1553
+ },
1554
+ {
1555
+ "quote": "The trouble with writing fiction is that it has to make sense, whereas real life doesn't.",
1556
+ "author": "Iain M. Banks"
1557
+ },
1558
+ {
1559
+ "quote": "An author is a fool who, not content with boring those he lives with, insists on boring future generations.",
1560
+ "author": "Charles de Montesquieu"
1561
+ },
1562
+ {
1563
+ "quote": "The best time for planning a book is while you're doing the dishes.",
1564
+ "author": "Agatha Christie"
1565
+ },
1566
+ {
1567
+ "quote": "Poetry is what gets lost in translation.",
1568
+ "author": "Robert Frost"
1569
+ },
1570
+ {
1571
+ "quote": "A great deal of writing is not unlike bricklaying. The trowel spreads the mortar. The bricks are set on top of one another, row upon row.",
1572
+ "author": "John McPhee"
1573
+ },
1574
+ {
1575
+ "quote": "Writing, at its best, is a lonely life.",
1576
+ "author": "Ernest Hemingway"
1577
+ },
1578
+ {
1579
+ "quote": "Let's have some new cliches.",
1580
+ "author": "Samuel Goldwyn"
1581
+ },
1582
+ {
1583
+ "quote": "Writing teaches writing.",
1584
+ "author": "Eudora Welty"
1585
+ },
1586
+ {
1587
+ "quote": "A story should have a beginning, a middle, and an end, but not necessarily in that order.",
1588
+ "author": "Jean-Luc Godard"
1589
+ },
1590
+ {
1591
+ "quote": "There are no laws for the novel. There never have been, nor can there ever be.",
1592
+ "author": "Doris Lessing"
1593
+ },
1594
+ {
1595
+ "quote": "You write to communicate to the hearts and minds of others what's burning inside you, and we edit to let the fire show through the smoke.",
1596
+ "author": "Arthur Plotnik"
1597
+ },
1598
+ {
1599
+ "quote": "Talent alone cannot make a writer. There must be a man behind the book.",
1600
+ "author": "Ralph Waldo Emerson"
1601
+ },
1602
+ {
1603
+ "quote": "Write about what makes you different.",
1604
+ "author": "Sandra Cisneros"
1605
+ },
1606
+ {
1607
+ "quote": "A writer needs three things: experience, observation, and imagination -- any two of which, at times any one of which, can supply the lack of the others.",
1608
+ "author": "William Faulkner"
1609
+ },
1610
+ {
1611
+ "quote": "Literature is news that stays news.",
1612
+ "author": "Ezra Pound"
1613
+ },
1614
+ {
1615
+ "quote": "A truly great book should be read in youth, again in maturity and once more in old age.",
1616
+ "author": "Robertson Davies"
1617
+ },
1618
+ {
1619
+ "quote": "Writers live twice.",
1620
+ "author": "Natalie Goldberg"
1621
+ },
1622
+ {
1623
+ "quote": "I write for the same reason I breathe -- because if I didn't, I would die.",
1624
+ "author": "Isaac Asimov"
1625
+ },
1626
+ {
1627
+ "quote": "The man who does not read has no advantage over the man who cannot read.",
1628
+ "author": "Mark Twain"
1629
+ },
1630
+ {
1631
+ "quote": "No writer is ever satisfied with his work. The good ones learn to live with that dissatisfaction.",
1632
+ "author": "Doris Betts"
1633
+ },
1634
+ {
1635
+ "quote": "All the best stories are but one story in reality -- the story of escape. It is the only thing which interests us all and at all times, how to escape.",
1636
+ "author": "Arthur Christopher Benson"
1637
+ },
1638
+ {
1639
+ "quote": "I think all writing is a disease. You can't stop it.",
1640
+ "author": "William Carlos Williams"
1641
+ },
1642
+ {
1643
+ "quote": "The writer's duty is to keep on writing.",
1644
+ "author": "William Styron"
1645
+ },
1646
+ {
1647
+ "quote": "A book must be the axe for the frozen sea within us.",
1648
+ "author": "Franz Kafka"
1649
+ },
1650
+ {
1651
+ "quote": "We tell ourselves stories in order to live.",
1652
+ "author": "Joan Didion"
1653
+ }
1654
+ ]