kindle_highlights 0.0.1 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7548a589b0d642d361c278c5ad3cdd2f89158bfe
4
- data.tar.gz: 232dc31baaa205bf169b5cc4a07e2019fbabaeae
3
+ metadata.gz: e6d6eaabd04ca0ae87f9c2eb41106b6027baec6b
4
+ data.tar.gz: 945740b18cd125a26dc5c28e6b90d150bb25e09e
5
5
  SHA512:
6
- metadata.gz: cf716f762c43b555c1fac6c3610ffd12ab8c32864fb89b18a88f656b3c5d2694ee9ca50e37c5590ded2338f4eb8c031c0306b8b5404fcb417ccd3baacd4232e9
7
- data.tar.gz: 88913728ab3da3b09451bc256ba71c24b52ac9d435e7208c245e623c7c736d8ba89f72640d65510b7fe0c7bd6ecdce3b222a92f2822f31fd5f6af31c4481b234
6
+ metadata.gz: 5089974222bb6bf0bf8244e222ac2e9eb7236040cc8f7bd1949e32ee747faf4e30d86ed16c5243609a047c80e148b49d3683a6d2d0a94320ca6bb97e0b56b186
7
+ data.tar.gz: f4e0989ca211679e43ab1c05e76252bf22d71ba270d1a0016f7eb50a58890c7a5233abc6e1719a522021a2a9c315eda026668ca7af9a0ad374af97cd10a93536
data/.gitignore CHANGED
@@ -20,3 +20,5 @@ tmp
20
20
  *.o
21
21
  *.a
22
22
  mkmf.log
23
+ vendor/bundle
24
+ .DS_Store
data/Gemfile CHANGED
@@ -2,3 +2,12 @@ source 'https://rubygems.org'
2
2
 
3
3
  # Specify your gem's dependencies in kindle_highlights.gemspec
4
4
  gemspec
5
+
6
+ group :development, :test do
7
+ gem 'mocha'
8
+ gem 'fakeweb'
9
+ gem 'pry'
10
+ gem 'pry-debugger'
11
+ gem 'pry-rescue'
12
+ gem 'pry-stack_explorer'
13
+ end
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
- # KindleHighlights
1
+ # Kindle Highlights API
2
2
 
3
- TODO: Write a gem description
3
+ A wrapper that helps fetch highlights from Amazon Kindle and play around with them.
4
4
 
5
5
  ## Installation
6
6
 
@@ -18,11 +18,55 @@ Or install it yourself as:
18
18
 
19
19
  ## Usage
20
20
 
21
- TODO: Write usage instructions here
21
+ ```ruby
22
+ require 'kindle_highlights'
23
+
24
+ fetcher = KindleHighlights::Fetcher.new("yourusername@gmail.com", "somepassword")
25
+
26
+ books = fetcher.fetch
27
+
28
+ books.count # =>
29
+ 19
30
+
31
+ books.map(&:title) # =>
32
+ [
33
+ "Smalltalk Best Practice Patterns",
34
+ "Drawing on the Right Side of the Brain: The Definitive, 4th Edition",
35
+ "Benjamin Franklin: An American Life",
36
+ "Mucusless Diet Healing System",
37
+ "Crucial Conversations Tools for Talking When Stakes Are High, Second Edition",
38
+ "The War of Art",
39
+ "A Short History of Nearly Everything",
40
+ "Einstein: His Life and Universe",
41
+ "Turn the Ship Around!: A True Story of Turning Followers into Leaders",
42
+ "The 5 Elements of Effective Thinking",
43
+ ...
44
+ ]
45
+
46
+ books.first.title # =>
47
+ "Smalltalk Best Practice Patterns"
48
+
49
+ books.first.highlights # =>
50
+ [
51
+ "If you are trying to explain why code should be different, it is much more satisfying for you and the learner to be able to discuss the pattern and how it applies to the particular situation.",
52
+ "I’m constantly amazed at how even a little help cleaning up small problems reveals the source and solution of much bigger problems.",
53
+ "If you’re programming along, doing nicely, and all of a sudden your program gets balky, makes things hard for you, it’s talking. It’s telling you there is something important missing.",
54
+ "The problems in the construction of objects are universal. You have to name classes, relate classes via inheritance and delegation, relate methods in the same class and different classes, name variables, and so on. Patterns record these problems and how to approach solving them.",
55
+ "Keep all of the operations in a method at the same level of abstraction.",
56
+ "Any time you are sending two or more messages from one object to another in a single method, you may be able to create a Composed Method in the receiver that combines those messages.",
57
+ "There is probably no coding decision with more effect on the quality of your code than names you give your classes.",
58
+ "The first thing readers will look at when they look at your code is the names of the classes. Those names will go beyond your code. Insidiously, they leak into everyday conversation—and not just for developers. Ten years down the road, you will hear users who know nothing about programming using the class names you chose.",
59
+ "Unfortunately, many people get all formal when they go to name a superclass. Just calling it what it is isn’t enough. They have to tack on a flowery, computer science-y, impressive sounding, but ultimately meaningless word, like Object, Thing, Component, Part, Manager, Entity, or Item. You’re creating a vocabulary, not writing a program. Be a poet for a moment. The simple, the punchy, the easily remembered will be far more effective in the long run than some long name that says it all, but in such a way that no one wants to say it at all.",
60
+ "• Name a superclass with a single word that conveys its purpose in the design.",
61
+ "if I am using inheritance strictly for code sharing, but the role of the subclass is different than the role of the superclass, I go back to Simple Superclass Name."
62
+ ...
63
+ ]
64
+
65
+ ```
22
66
 
23
67
  ## Contributing
24
68
 
25
- 1. Fork it ( https://github.com/[my-github-username]/kindle_highlights/fork )
69
+ 1. Fork it ( https://github.com/gauravmc/kindle_highlights/fork )
26
70
  2. Create your feature branch (`git checkout -b my-new-feature`)
27
71
  3. Commit your changes (`git commit -am 'Add some feature'`)
28
72
  4. Push to the branch (`git push origin my-new-feature`)
data/Rakefile CHANGED
@@ -1,2 +1,16 @@
1
1
  require "bundler/gem_tasks"
2
+ require "rake/testtask"
2
3
 
4
+ desc 'run all tests'
5
+ Rake::TestTask.new(:test) do |t|
6
+ t.libs << "test"
7
+ t.test_files = FileList["test/**/*_test.rb"]
8
+ t.verbose = true
9
+ end
10
+
11
+ desc 'run kindle_highlights console'
12
+ task :console do
13
+ exec 'pry -I lib -r kindle_highlights'
14
+ end
15
+
16
+ task default: :test
@@ -18,5 +18,6 @@ Gem::Specification.new do |spec|
18
18
  spec.require_paths = ["lib"]
19
19
 
20
20
  spec.add_development_dependency "bundler", "~> 1.6"
21
- spec.add_development_dependency "rake"
21
+ spec.add_development_dependency "rake", "~> 0"
22
+ spec.add_development_dependency "mechanize", "~> 0"
22
23
  end
@@ -1,5 +1,8 @@
1
1
  require "kindle_highlights/version"
2
+ require "logger"
2
3
 
3
4
  module KindleHighlights
4
- # Your code goes here...
5
5
  end
6
+
7
+ require_relative 'kindle_highlights/book'
8
+ require_relative 'kindle_highlights/fetcher'
@@ -0,0 +1,19 @@
1
+ module KindleHighlights
2
+ class Book
3
+ def initialize(page)
4
+ @page = page
5
+ end
6
+
7
+ def self.from_page(page)
8
+ Book.new(page)
9
+ end
10
+
11
+ def title
12
+ @title ||= @page.search("span[class=title] a text()").first.content
13
+ end
14
+
15
+ def highlights
16
+ @highlights ||= @page.search("span[class=highlight] text()").map(&:content)
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,51 @@
1
+ require 'mechanize'
2
+
3
+ module KindleHighlights
4
+ class Fetcher
5
+ def initialize(email, password)
6
+ @email, @password = email, password
7
+ end
8
+
9
+ def fetch
10
+ fetch_all_books
11
+ end
12
+
13
+ private
14
+
15
+ def fetch_all_books
16
+ page = get_highlights_page
17
+
18
+ Array.new.tap do |books|
19
+ while next_book_link = page.link(id: 'nextBookLink') do
20
+ books << Book.from_page(page)
21
+ page = next_book_link.click
22
+ end
23
+ end
24
+ end
25
+
26
+ def get_highlights_page
27
+ kindle_home_page = login_to_amazon_kindle
28
+ kindle_home_page.link(href: "/your_highlights").click
29
+ end
30
+
31
+ def login_to_amazon_kindle
32
+ login_page = agent.get("https://kindle.amazon.com/login")
33
+
34
+ login_page.form_with(name: 'signIn') do |form|
35
+ form['email'] = @email
36
+ form['password'] = @password
37
+ end.submit
38
+ end
39
+
40
+ def agent
41
+ @agent ||= Mechanize.new do |a|
42
+ a.user_agent = 'Individueller User-Agent'
43
+ a.user_agent_alias = 'Mac Safari'
44
+ a.open_timeout = 10
45
+ a.read_timeout = 10
46
+ a.ssl_version = 'SSLv3'
47
+ a.verify_mode = OpenSSL::SSL::VERIFY_NONE
48
+ end
49
+ end
50
+ end
51
+ end
@@ -1,3 +1,3 @@
1
1
  module KindleHighlights
2
- VERSION = "0.0.1"
2
+ VERSION = "0.1.0"
3
3
  end
data/test/book_test.rb ADDED
@@ -0,0 +1,26 @@
1
+ require 'test_helper'
2
+
3
+ module KindleHighlights
4
+ class BookTest < MiniTest::Unit::TestCase
5
+ def test_from_page_creates_a_book_from_the_page
6
+ expectation = {
7
+ title: "Drawing on the Right Side of the Brain: The Definitive, 4th Edition",
8
+ highlight: "learning to draw, without doubt, causes new connections in the brain that can be useful over a lifetime for general thinking. Learning to see in a different way requires that you use your brain differently."
9
+ }
10
+
11
+ page = create_page_from_fixture(:highlights_page_1)
12
+ book = Book.from_page(page)
13
+
14
+ assert_equal expectation[:title], book.title
15
+ assert book.highlights.include?(expectation[:highlight])
16
+ end
17
+
18
+ private
19
+
20
+ def create_page_from_fixture(filename)
21
+ body = File.open("#{TEST_ROOT}/fixtures/html/#{filename.to_s}.html").read
22
+ mech = Mechanize.new
23
+ Mechanize::Page.new(nil, nil, body, nil, mech)
24
+ end
25
+ end
26
+ end
@@ -0,0 +1,23 @@
1
+ require 'test_helper'
2
+
3
+ module KindleHighlights
4
+ class FetcherTest < MiniTest::Unit::TestCase
5
+ def test_fetch_returns_an_array_of_all_the_books
6
+ fetcher = Fetcher.new('some@email.com', 'password')
7
+
8
+ books = fetcher.fetch
9
+
10
+ expected_books = [
11
+ "Drawing on the Right Side of the Brain: The Definitive, 4th Edition",
12
+ "Mucusless Diet Healing System",
13
+ "Crucial Conversations Tools for Talking When Stakes Are High, Second Edition",
14
+ "The War of Art",
15
+ "Smalltalk Best Practice Patterns",
16
+ "A Short History of Nearly Everything"
17
+ ]
18
+
19
+ assert_equal expected_books, books.map(&:title)
20
+ assert_equal 6, books.size
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,1054 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
+ <html xmlns="http://www.w3.org/1999/xhtml"
4
+ xmlns:og="http://opengraphprotocol.org/schema/"
5
+ xmlns:fb="http://www.facebook.com/2008/fbml"
6
+ xml:lang="en-US" lang="en-US">
7
+ <head>
8
+ <title>Amazon Kindle: Your Highlights</title>
9
+
10
+ <link href="https://images-na.ssl-images-amazon.com/images/G/01/nav2/gamma/amazonJQ/amazonJQ-combined-coreCSS-59291._V245478743_.css" media="screen" rel="stylesheet" type="text/css" />
11
+ <link href="https://images-na.ssl-images-amazon.com/images/G/01/reading/stylesheets/site._V377639447_.css" media="screen" rel="stylesheet" type="text/css" />
12
+
13
+ <script>
14
+ var amznJQ;
15
+ (function() {
16
+ function f(x) {return function(){x.push(arguments);}}
17
+ function ch(y) {return String.fromCharCode(y);}
18
+ var a=[],c=[],cs=[],d=[],l=[],o=[],s=[],p=[],t=[];
19
+ amznJQ={
20
+ _timesliceJS: false,
21
+ _a:a,_c:c,_cs:cs,_d:d,_l:l,_o:o,_s:s,_pl:p,
22
+ addLogical:f(l),
23
+ addStyle:f(s),
24
+ addPL:f(p),
25
+ available:f(a),
26
+ chars:{EOL:ch(10), SQUOTE:ch(39), DQUOTE:ch(34), BACKSLASH:ch(92), YEN:ch(165)},
27
+ completedStage:f(cs),
28
+ declareAvailable:f(d),
29
+ onCompletion:f(c),
30
+ onReady:f(o),
31
+ strings:{}
32
+ };
33
+ }());
34
+ </script>
35
+ </head>
36
+ <body>
37
+ <div id="wholePage">
38
+
39
+
40
+ <div id="header" class="cleardiv">
41
+ <div class="userBar">
42
+ <div class="userNav">
43
+
44
+ <div class="greetingNonHover">
45
+ Hello, <a href="/profile/Gaurav/5112906">Gaurav</a>. <img alt="Link" src="https://images-na.ssl-images-amazon.com/images/G/01/reading/images/linkPopOver._V379390863_.png" />
46
+ </div>
47
+ <div class="greeting">
48
+ <div class="box box5_5_1_ffffff_d5deeb_none">
49
+ <div class="partWrapper">
50
+ <div class="top">
51
+ <div class="tl tl_box5_5_1_ffffff_d5deeb_none"></div>
52
+ <div class="tc tc_box5_5_1_ffffff_d5deeb_none"></div>
53
+ <div class="tr tr_box5_5_1_ffffff_d5deeb_none"></div>
54
+ </div>
55
+ <div class="inner inner_box5_5_1_ffffff_d5deeb_none cleardiv">
56
+
57
+ Hello, <a href="/profile/Gaurav/5112906">Gaurav</a>. <img alt="Link" src="https://images-na.ssl-images-amazon.com/images/G/01/reading/images/linkPopOver._V379390863_.png" />
58
+
59
+ </div>
60
+ <div class="bottom">
61
+ <div class="bl bl_box5_5_1_ffffff_d5deeb_none"></div>
62
+ <div class="bc bc_box5_5_1_ffffff_d5deeb_none"></div>
63
+ <div class="br br_box5_5_1_ffffff_d5deeb_none"></div>
64
+ </div>
65
+ </div>
66
+ <div class="clear"></div>
67
+ </div>
68
+ </div>
69
+ <div class="actions">
70
+ <div class="box box5_5_1_ffffff_d5deeb_none">
71
+ <div class="partWrapper">
72
+ <div class="top">
73
+ <div class="tl tl_box5_5_1_ffffff_d5deeb_none"></div>
74
+ <div class="tc tc_box5_5_1_ffffff_d5deeb_none"></div>
75
+ <div class="tr straight straight_box5_5_1_ffffff_d5deeb_none tr_box5_5_1_ffffff_d5deeb_none"></div>
76
+ </div>
77
+ <div class="inner inner_box5_5_1_ffffff_d5deeb_none cleardiv">
78
+
79
+ <ul>
80
+
81
+ <li><a href="/profile/Gaurav/5112906">Your profile</a></li>
82
+ <li><a href="/home/preferences">Preferences</a> </li>
83
+
84
+
85
+ <li><a href="/faq">FAQ</a></li>
86
+
87
+ <li><a href="/feedback/popup" class="feedback noUnderline" title="Leave Us Feedback">Leave us feedback</a></li>
88
+ <li><a href="https://www.amazon.com/manageyourkindle" title="Manage Your Kindle">Manage Your Kindle</a></li>
89
+
90
+ <li><a href="https://kindle.amazon.com/logout" class="signInOut">Sign out</a></li>
91
+
92
+ </ul>
93
+
94
+ </div>
95
+ <div class="bottom">
96
+ <div class="bl bl_box5_5_1_ffffff_d5deeb_none"></div>
97
+ <div class="bc bc_box5_5_1_ffffff_d5deeb_none"></div>
98
+ <div class="br br_box5_5_1_ffffff_d5deeb_none"></div>
99
+ </div>
100
+ </div>
101
+ <div class="clear"></div>
102
+ </div>
103
+ </div>
104
+ </div>
105
+ </div>
106
+ <div class="logo">
107
+ <a href="https://kindle.amazon.com/"><img alt="amazon kindle" class="logoInnards" src="https://images-na.ssl-images-amazon.com/images/G/01/reading/images/logo_kindle2._V379391740_.png" title="" /></a>
108
+ </div>
109
+ <div class="search">
110
+ <form action="/search" method="get">
111
+ <fieldset>
112
+ <input id="keywords" name="keywords" type="text" />
113
+ <input alt="Search" class="searchGoBtn" src="https://images-na.ssl-images-amazon.com/images/G/01/reading/images/btn-search._V379390881_.png" title="Go" type="image" />
114
+ </fieldset>
115
+ </form>
116
+ </div>
117
+ <div class="mainNav">
118
+ <ul>
119
+ <li><a href="/your_reading">Your Books</a></li>
120
+ <li><a href="/refresh">Daily Review</a></li>
121
+ <li><a href="/your_highlights">Your Highlights</a></li>
122
+ <li><a href="/most_popular">Most Popular</a></li>
123
+ </ul>
124
+ </div>
125
+ </div>
126
+
127
+
128
+
129
+ <div id="overallContent">
130
+ <div id="your_highlightsWrapper">
131
+ <div id="singleColumnContent">
132
+
133
+ <h1>Your Highlights <span class="explanation">(Most recently updated first)</span></h1>
134
+
135
+ <div id="allHighlightedBooks">
136
+ <div id="B005GSYXU4_25" class="bookMain yourHighlightsHeader">
137
+ <span class="title"><a href="/work/drawing-right-side-brain-definitive-ebook/B00581YHD2/B005GSYXU4">Drawing on the Right Side of the Brain: The Definitive, 4th Edition</a></span>
138
+
139
+
140
+ <span class="author">
141
+ by Betty Edwards
142
+ </span>
143
+
144
+
145
+ <div class="yourHighlightsStats">
146
+ <div>You have <span class="boldText highlightCountB005GSYXU4">37</span> highlighted passages</div><div>You have <span class="boldText noteCountB005GSYXU4">0</span> notes</div>
147
+ </div>
148
+
149
+ <div class="lastHighlighted">Last annotated on April 17, 2014</div>
150
+
151
+
152
+
153
+
154
+ <span class="hidden upcoming">B000FBJG4U,B0081AKCGS</span>
155
+
156
+ </div>
157
+
158
+ <div class="highlightRow yourHighlight">
159
+
160
+ <span class="highlight">learning to draw, like learning to read, is not dependent on something called “talent,” and that, given proper instruction, every person is able to learn the skill. Furthermore, given proper instruction, people can learn to transfer the basic perceptual components of drawing to other learning and to general thinking. And, as Michael Kimmelman said, learning to draw is a boon to happiness—a panacea for the stultifying and uncreative drudgery of standardized testing that our schools have embraced.</span><a href="kindle://book?action=open&asin=B005GSYXU4&location=176" class="k4pcReadMore readMore linkOut">Read&nbsp;more&nbsp;at&nbsp;location&nbsp;176</a><form action="/user_annotation_relation/delete_highlight" class="deleteHighlightForm" method="post"><div style="margin:0;padding:0"><input name="authenticity_token" type="hidden" value="14ca6ff90bf02b35e8adbdd9b97e969f8260e02b" /></div><input id="asin" name="asin" type="hidden" value="B005GSYXU4" /><input id="annotation_id" name="annotation_id" type="hidden" value="a16036ABLXYCO9" /><span class="deleteHighlight"><button class="textSubmit" name="delete" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Delete&nbsp;this&nbsp;highlight</span></button></span><span class="deleteHighlightUndo hidden"><button class="textSubmit" name="undo" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Undo&nbsp;deletion</span></button></span></form>
161
+
162
+
163
+
164
+
165
+ <p class="editNote " id="editNotea16036ABLXYCO9_">
166
+ <span class="hidden asin">B005GSYXU4</span>
167
+ <span class="hidden annotation_id"></span>
168
+ <span class="hidden end_location">26788</span>
169
+ <span class="yourNote hidden">
170
+ Note:
171
+ </span>
172
+ <span class="noteContent"></span>
173
+
174
+
175
+ <a href="/user_annotation_relation/edit_note_popup?annotation_id=&amp;asin=B005GSYXU4&amp;attached=a16036ABLXYCO9&amp;end_location=26788&amp;note_area_id=editNotea16036ABLXYCO9_&amp;note_text=&amp;return_to=%2Fyour_highlights" class="addEditNote">Add a note</a>
176
+
177
+ </p>
178
+
179
+
180
+ </div>
181
+ <div class="highlightRow yourHighlight">
182
+
183
+ <span class="highlight">Ideally, of course, students should develop rational, orderly thinking processes—left-hemisphere skills that are compatible with investigation, dissection, reduction, examination, summary, and abstraction. If we also teach students right-hemisphere perceptual skills, they will help students “see things in context,” “see the whole picture,” “see things in proportion and in perspective,” and observe and apprehend—in short, to intuit, to understand and bring meaning to the fragmented world of the left hemisphere.</span><a href="kindle://book?action=open&asin=B005GSYXU4&location=275" class="k4pcReadMore readMore linkOut">Read&nbsp;more&nbsp;at&nbsp;location&nbsp;275</a><form action="/user_annotation_relation/delete_highlight" class="deleteHighlightForm" method="post"><div style="margin:0;padding:0"><input name="authenticity_token" type="hidden" value="14ca6ff90bf02b35e8adbdd9b97e969f8260e02b" /></div><input id="asin" name="asin" type="hidden" value="B005GSYXU4" /><input id="annotation_id" name="annotation_id" type="hidden" value="aLMGG8G2M89HV" /><span class="deleteHighlight"><button class="textSubmit" name="delete" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Delete&nbsp;this&nbsp;highlight</span></button></span><span class="deleteHighlightUndo hidden"><button class="textSubmit" name="undo" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Undo&nbsp;deletion</span></button></span></form>
184
+
185
+
186
+
187
+
188
+ <p class="editNote " id="editNoteaLMGG8G2M89HV_">
189
+ <span class="hidden asin">B005GSYXU4</span>
190
+ <span class="hidden annotation_id"></span>
191
+ <span class="hidden end_location">41653</span>
192
+ <span class="yourNote hidden">
193
+ Note:
194
+ </span>
195
+ <span class="noteContent"></span>
196
+
197
+
198
+ <a href="/user_annotation_relation/edit_note_popup?annotation_id=&amp;asin=B005GSYXU4&amp;attached=aLMGG8G2M89HV&amp;end_location=41653&amp;note_area_id=editNoteaLMGG8G2M89HV_&amp;note_text=&amp;return_to=%2Fyour_highlights" class="addEditNote">Add a note</a>
199
+
200
+ </p>
201
+
202
+
203
+ </div>
204
+ <div class="highlightRow yourHighlight">
205
+
206
+ <span class="highlight">In order to gain access to the right hemisphere, it is necessary to present the left hemisphere with a task that it will turn down.</span><a href="kindle://book?action=open&asin=B005GSYXU4&location=357" class="k4pcReadMore readMore linkOut">Read&nbsp;more&nbsp;at&nbsp;location&nbsp;357</a><form action="/user_annotation_relation/delete_highlight" class="deleteHighlightForm" method="post"><div style="margin:0;padding:0"><input name="authenticity_token" type="hidden" value="14ca6ff90bf02b35e8adbdd9b97e969f8260e02b" /></div><input id="asin" name="asin" type="hidden" value="B005GSYXU4" /><input id="annotation_id" name="annotation_id" type="hidden" value="a25SU141BMTGSK" /><span class="deleteHighlight"><button class="textSubmit" name="delete" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Delete&nbsp;this&nbsp;highlight</span></button></span><span class="deleteHighlightUndo hidden"><button class="textSubmit" name="undo" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Undo&nbsp;deletion</span></button></span></form>
207
+
208
+
209
+
210
+
211
+ <p class="editNote " id="editNotea25SU141BMTGSK_">
212
+ <span class="hidden asin">B005GSYXU4</span>
213
+ <span class="hidden annotation_id"></span>
214
+ <span class="hidden end_location">53607</span>
215
+ <span class="yourNote hidden">
216
+ Note:
217
+ </span>
218
+ <span class="noteContent"></span>
219
+
220
+
221
+ <a href="/user_annotation_relation/edit_note_popup?annotation_id=&amp;asin=B005GSYXU4&amp;attached=a25SU141BMTGSK&amp;end_location=53607&amp;note_area_id=editNotea25SU141BMTGSK_&amp;note_text=&amp;return_to=%2Fyour_highlights" class="addEditNote">Add a note</a>
222
+
223
+ </p>
224
+
225
+
226
+ </div>
227
+ <div class="highlightRow yourHighlight">
228
+
229
+ <span class="highlight">people who lose language abilities due to left-brain dementia damage spontaneously develop unusual artistic, musical, and rhyming abilities, including drawing abilities—skills attributed to the right hemisphere. Doidge reports that Miller argues that “the left hemisphere normally acts like a bully, inhibiting and suppressing the right. As the left hemisphere falters, the right’s uninhibited potential can emerge.”</span><a href="kindle://book?action=open&asin=B005GSYXU4&location=366" class="k4pcReadMore readMore linkOut">Read&nbsp;more&nbsp;at&nbsp;location&nbsp;366</a><form action="/user_annotation_relation/delete_highlight" class="deleteHighlightForm" method="post"><div style="margin:0;padding:0"><input name="authenticity_token" type="hidden" value="14ca6ff90bf02b35e8adbdd9b97e969f8260e02b" /></div><input id="asin" name="asin" type="hidden" value="B005GSYXU4" /><input id="annotation_id" name="annotation_id" type="hidden" value="a22LTD4CPME1KY" /><span class="deleteHighlight"><button class="textSubmit" name="delete" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Delete&nbsp;this&nbsp;highlight</span></button></span><span class="deleteHighlightUndo hidden"><button class="textSubmit" name="undo" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Undo&nbsp;deletion</span></button></span></form>
230
+
231
+
232
+
233
+
234
+ <p class="editNote " id="editNotea22LTD4CPME1KY_">
235
+ <span class="hidden asin">B005GSYXU4</span>
236
+ <span class="hidden annotation_id"></span>
237
+ <span class="hidden end_location">55230</span>
238
+ <span class="yourNote hidden">
239
+ Note:
240
+ </span>
241
+ <span class="noteContent"></span>
242
+
243
+
244
+ <a href="/user_annotation_relation/edit_note_popup?annotation_id=&amp;asin=B005GSYXU4&amp;attached=a22LTD4CPME1KY&amp;end_location=55230&amp;note_area_id=editNotea22LTD4CPME1KY_&amp;note_text=&amp;return_to=%2Fyour_highlights" class="addEditNote">Add a note</a>
245
+
246
+ </p>
247
+
248
+
249
+ </div>
250
+ <div class="highlightRow yourHighlight">
251
+
252
+ <span class="highlight">oddly, given the great power and force of the left hemisphere, it can be tricked over and over with the same tricks.</span><a href="kindle://book?action=open&asin=B005GSYXU4&location=431" class="k4pcReadMore readMore linkOut">Read&nbsp;more&nbsp;at&nbsp;location&nbsp;431</a><form action="/user_annotation_relation/delete_highlight" class="deleteHighlightForm" method="post"><div style="margin:0;padding:0"><input name="authenticity_token" type="hidden" value="14ca6ff90bf02b35e8adbdd9b97e969f8260e02b" /></div><input id="asin" name="asin" type="hidden" value="B005GSYXU4" /><input id="annotation_id" name="annotation_id" type="hidden" value="a1WJKWU85OB52Y" /><span class="deleteHighlight"><button class="textSubmit" name="delete" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Delete&nbsp;this&nbsp;highlight</span></button></span><span class="deleteHighlightUndo hidden"><button class="textSubmit" name="undo" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Undo&nbsp;deletion</span></button></span></form>
253
+
254
+
255
+
256
+
257
+ <p class="editNote " id="editNotea1WJKWU85OB52Y_">
258
+ <span class="hidden asin">B005GSYXU4</span>
259
+ <span class="hidden annotation_id"></span>
260
+ <span class="hidden end_location">64693</span>
261
+ <span class="yourNote hidden">
262
+ Note:
263
+ </span>
264
+ <span class="noteContent"></span>
265
+
266
+
267
+ <a href="/user_annotation_relation/edit_note_popup?annotation_id=&amp;asin=B005GSYXU4&amp;attached=a1WJKWU85OB52Y&amp;end_location=64693&amp;note_area_id=editNotea1WJKWU85OB52Y_&amp;note_text=&amp;return_to=%2Fyour_highlights" class="addEditNote">Add a note</a>
268
+
269
+ </p>
270
+
271
+
272
+ </div>
273
+ <div class="highlightRow yourHighlight">
274
+
275
+ <span class="highlight">“Learning to draw is really a matter of learning to see—to see correctly—and that means a good deal more than merely looking with the eye.”</span><a href="kindle://book?action=open&asin=B005GSYXU4&location=456" class="k4pcReadMore readMore linkOut">Read&nbsp;more&nbsp;at&nbsp;location&nbsp;456</a><form action="/user_annotation_relation/delete_highlight" class="deleteHighlightForm" method="post"><div style="margin:0;padding:0"><input name="authenticity_token" type="hidden" value="14ca6ff90bf02b35e8adbdd9b97e969f8260e02b" /></div><input id="asin" name="asin" type="hidden" value="B005GSYXU4" /><input id="annotation_id" name="annotation_id" type="hidden" value="aYKUGOP7EG2K" /><span class="deleteHighlight"><button class="textSubmit" name="delete" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Delete&nbsp;this&nbsp;highlight</span></button></span><span class="deleteHighlightUndo hidden"><button class="textSubmit" name="undo" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Undo&nbsp;deletion</span></button></span></form>
276
+
277
+
278
+
279
+
280
+ <p class="editNote " id="editNoteaYKUGOP7EG2K_">
281
+ <span class="hidden asin">B005GSYXU4</span>
282
+ <span class="hidden annotation_id"></span>
283
+ <span class="hidden end_location">68481</span>
284
+ <span class="yourNote hidden">
285
+ Note:
286
+ </span>
287
+ <span class="noteContent"></span>
288
+
289
+
290
+ <a href="/user_annotation_relation/edit_note_popup?annotation_id=&amp;asin=B005GSYXU4&amp;attached=aYKUGOP7EG2K&amp;end_location=68481&amp;note_area_id=editNoteaYKUGOP7EG2K_&amp;note_text=&amp;return_to=%2Fyour_highlights" class="addEditNote">Add a note</a>
291
+
292
+ </p>
293
+
294
+
295
+ </div>
296
+ <div class="highlightRow yourHighlight">
297
+
298
+ <span class="highlight">learning to draw, without doubt, causes new connections in the brain that can be useful over a lifetime for general thinking. Learning to see in a different way requires that you use your brain differently.</span><a href="kindle://book?action=open&asin=B005GSYXU4&location=486" class="k4pcReadMore readMore linkOut">Read&nbsp;more&nbsp;at&nbsp;location&nbsp;486</a><form action="/user_annotation_relation/delete_highlight" class="deleteHighlightForm" method="post"><div style="margin:0;padding:0"><input name="authenticity_token" type="hidden" value="14ca6ff90bf02b35e8adbdd9b97e969f8260e02b" /></div><input id="asin" name="asin" type="hidden" value="B005GSYXU4" /><input id="annotation_id" name="annotation_id" type="hidden" value="a20379VMVFC7NG" /><span class="deleteHighlight"><button class="textSubmit" name="delete" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Delete&nbsp;this&nbsp;highlight</span></button></span><span class="deleteHighlightUndo hidden"><button class="textSubmit" name="undo" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Undo&nbsp;deletion</span></button></span></form>
299
+
300
+
301
+
302
+
303
+ <p class="editNote " id="editNotea20379VMVFC7NG_">
304
+ <span class="hidden asin">B005GSYXU4</span>
305
+ <span class="hidden annotation_id"></span>
306
+ <span class="hidden end_location">72962</span>
307
+ <span class="yourNote hidden">
308
+ Note:
309
+ </span>
310
+ <span class="noteContent"></span>
311
+
312
+
313
+ <a href="/user_annotation_relation/edit_note_popup?annotation_id=&amp;asin=B005GSYXU4&amp;attached=a20379VMVFC7NG&amp;end_location=72962&amp;note_area_id=editNotea20379VMVFC7NG_&amp;note_text=&amp;return_to=%2Fyour_highlights" class="addEditNote">Add a note</a>
314
+
315
+ </p>
316
+
317
+
318
+ </div>
319
+ <div class="highlightRow yourHighlight">
320
+
321
+ <span class="highlight">“We can chew gum and walk, but we can’t do two cognitively demanding tasks simultaneously.”</span><a href="kindle://book?action=open&asin=B005GSYXU4&location=508" class="k4pcReadMore readMore linkOut">Read&nbsp;more&nbsp;at&nbsp;location&nbsp;508</a><form action="/user_annotation_relation/delete_highlight" class="deleteHighlightForm" method="post"><div style="margin:0;padding:0"><input name="authenticity_token" type="hidden" value="14ca6ff90bf02b35e8adbdd9b97e969f8260e02b" /></div><input id="asin" name="asin" type="hidden" value="B005GSYXU4" /><input id="annotation_id" name="annotation_id" type="hidden" value="a14856BBVYOJN7" /><span class="deleteHighlight"><button class="textSubmit" name="delete" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Delete&nbsp;this&nbsp;highlight</span></button></span><span class="deleteHighlightUndo hidden"><button class="textSubmit" name="undo" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Undo&nbsp;deletion</span></button></span></form>
322
+
323
+
324
+
325
+
326
+ <p class="editNote " id="editNotea14856BBVYOJN7_">
327
+ <span class="hidden asin">B005GSYXU4</span>
328
+ <span class="hidden annotation_id"></span>
329
+ <span class="hidden end_location">76157</span>
330
+ <span class="yourNote hidden">
331
+ Note:
332
+ </span>
333
+ <span class="noteContent"></span>
334
+
335
+
336
+ <a href="/user_annotation_relation/edit_note_popup?annotation_id=&amp;asin=B005GSYXU4&amp;attached=a14856BBVYOJN7&amp;end_location=76157&amp;note_area_id=editNotea14856BBVYOJN7_&amp;note_text=&amp;return_to=%2Fyour_highlights" class="addEditNote">Add a note</a>
337
+
338
+ </p>
339
+
340
+
341
+ </div>
342
+ <div class="highlightRow yourHighlight">
343
+
344
+ <span class="highlight">The drawing state is one of high alertness, engagement, and acute, focused attention. It is also a state without a sense of time passing or awareness of one’s surroundings.</span><a href="kindle://book?action=open&asin=B005GSYXU4&location=521" class="k4pcReadMore readMore linkOut">Read&nbsp;more&nbsp;at&nbsp;location&nbsp;521</a><form action="/user_annotation_relation/delete_highlight" class="deleteHighlightForm" method="post"><div style="margin:0;padding:0"><input name="authenticity_token" type="hidden" value="14ca6ff90bf02b35e8adbdd9b97e969f8260e02b" /></div><input id="asin" name="asin" type="hidden" value="B005GSYXU4" /><input id="annotation_id" name="annotation_id" type="hidden" value="aZHV7980NYMAO" /><span class="deleteHighlight"><button class="textSubmit" name="delete" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Delete&nbsp;this&nbsp;highlight</span></button></span><span class="deleteHighlightUndo hidden"><button class="textSubmit" name="undo" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Undo&nbsp;deletion</span></button></span></form>
345
+
346
+
347
+
348
+
349
+ <p class="editNote " id="editNoteaZHV7980NYMAO_">
350
+ <span class="hidden asin">B005GSYXU4</span>
351
+ <span class="hidden annotation_id"></span>
352
+ <span class="hidden end_location">78235</span>
353
+ <span class="yourNote hidden">
354
+ Note:
355
+ </span>
356
+ <span class="noteContent"></span>
357
+
358
+
359
+ <a href="/user_annotation_relation/edit_note_popup?annotation_id=&amp;asin=B005GSYXU4&amp;attached=aZHV7980NYMAO&amp;end_location=78235&amp;note_area_id=editNoteaZHV7980NYMAO_&amp;note_text=&amp;return_to=%2Fyour_highlights" class="addEditNote">Add a note</a>
360
+
361
+ </p>
362
+
363
+
364
+ </div>
365
+ <div class="highlightRow yourHighlight">
366
+
367
+ <span class="highlight">You might use different mediums, different papers, large or small formats, but for drawing still-life setups, the figure, random objects, portrait drawings, and even imaginary subjects or drawing from memory, it is all the same task, always requiring the same basic component skills—just as it is in reading! Drawing requires that you see what is out there (imaginary subjects and images from memory are “seen” in the “mind’s eye”) and you draw what you see.</span><a href="kindle://book?action=open&asin=B005GSYXU4&location=542" class="k4pcReadMore readMore linkOut">Read&nbsp;more&nbsp;at&nbsp;location&nbsp;542</a><form action="/user_annotation_relation/delete_highlight" class="deleteHighlightForm" method="post"><div style="margin:0;padding:0"><input name="authenticity_token" type="hidden" value="14ca6ff90bf02b35e8adbdd9b97e969f8260e02b" /></div><input id="asin" name="asin" type="hidden" value="B005GSYXU4" /><input id="annotation_id" name="annotation_id" type="hidden" value="a2HUD063KGHCYP" /><span class="deleteHighlight"><button class="textSubmit" name="delete" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Delete&nbsp;this&nbsp;highlight</span></button></span><span class="deleteHighlightUndo hidden"><button class="textSubmit" name="undo" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Undo&nbsp;deletion</span></button></span></form>
368
+
369
+
370
+
371
+
372
+ <p class="editNote " id="editNotea2HUD063KGHCYP_">
373
+ <span class="hidden asin">B005GSYXU4</span>
374
+ <span class="hidden annotation_id"></span>
375
+ <span class="hidden end_location">81663</span>
376
+ <span class="yourNote hidden">
377
+ Note:
378
+ </span>
379
+ <span class="noteContent"></span>
380
+
381
+
382
+ <a href="/user_annotation_relation/edit_note_popup?annotation_id=&amp;asin=B005GSYXU4&amp;attached=a2HUD063KGHCYP&amp;end_location=81663&amp;note_area_id=editNotea2HUD063KGHCYP_&amp;note_text=&amp;return_to=%2Fyour_highlights" class="addEditNote">Add a note</a>
383
+
384
+ </p>
385
+
386
+
387
+ </div>
388
+ <div class="highlightRow yourHighlight">
389
+
390
+ <span class="highlight">“I have learned that what I have not drawn, I have never really seen, and that when I start drawing an ordinary thing, I realize how extraordinary it is, sheer miracle.” —Frederick Franck, The Zen of Seeing, 1973</span><a href="kindle://book?action=open&asin=B005GSYXU4&location=547" class="k4pcReadMore readMore linkOut">Read&nbsp;more&nbsp;at&nbsp;location&nbsp;547</a><form action="/user_annotation_relation/delete_highlight" class="deleteHighlightForm" method="post"><div style="margin:0;padding:0"><input name="authenticity_token" type="hidden" value="14ca6ff90bf02b35e8adbdd9b97e969f8260e02b" /></div><input id="asin" name="asin" type="hidden" value="B005GSYXU4" /><input id="annotation_id" name="annotation_id" type="hidden" value="a3RWU4MEX64PQG" /><span class="deleteHighlight"><button class="textSubmit" name="delete" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Delete&nbsp;this&nbsp;highlight</span></button></span><span class="deleteHighlightUndo hidden"><button class="textSubmit" name="undo" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Undo&nbsp;deletion</span></button></span></form>
391
+
392
+
393
+
394
+
395
+ <p class="editNote " id="editNotea3RWU4MEX64PQG_">
396
+ <span class="hidden asin">B005GSYXU4</span>
397
+ <span class="hidden annotation_id"></span>
398
+ <span class="hidden end_location">82289</span>
399
+ <span class="yourNote hidden">
400
+ Note:
401
+ </span>
402
+ <span class="noteContent"></span>
403
+
404
+
405
+ <a href="/user_annotation_relation/edit_note_popup?annotation_id=&amp;asin=B005GSYXU4&amp;attached=a3RWU4MEX64PQG&amp;end_location=82289&amp;note_area_id=editNotea3RWU4MEX64PQG_&amp;note_text=&amp;return_to=%2Fyour_highlights" class="addEditNote">Add a note</a>
406
+
407
+ </p>
408
+
409
+
410
+ </div>
411
+ <div class="highlightRow yourHighlight">
412
+
413
+ <span class="highlight">A reasonable goal that you might pursue in learning to draw is simply to enhance confidence in your critical thinking ability and your decision making.</span><a href="kindle://book?action=open&asin=B005GSYXU4&location=566" class="k4pcReadMore readMore linkOut">Read&nbsp;more&nbsp;at&nbsp;location&nbsp;566</a><form action="/user_annotation_relation/delete_highlight" class="deleteHighlightForm" method="post"><div style="margin:0;padding:0"><input name="authenticity_token" type="hidden" value="14ca6ff90bf02b35e8adbdd9b97e969f8260e02b" /></div><input id="asin" name="asin" type="hidden" value="B005GSYXU4" /><input id="annotation_id" name="annotation_id" type="hidden" value="aNM98FRVEYLON" /><span class="deleteHighlight"><button class="textSubmit" name="delete" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Delete&nbsp;this&nbsp;highlight</span></button></span><span class="deleteHighlightUndo hidden"><button class="textSubmit" name="undo" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Undo&nbsp;deletion</span></button></span></form>
414
+
415
+
416
+
417
+
418
+ <p class="editNote " id="editNoteaNM98FRVEYLON_">
419
+ <span class="hidden asin">B005GSYXU4</span>
420
+ <span class="hidden annotation_id"></span>
421
+ <span class="hidden end_location">84973</span>
422
+ <span class="yourNote hidden">
423
+ Note:
424
+ </span>
425
+ <span class="noteContent"></span>
426
+
427
+
428
+ <a href="/user_annotation_relation/edit_note_popup?annotation_id=&amp;asin=B005GSYXU4&amp;attached=aNM98FRVEYLON&amp;end_location=84973&amp;note_area_id=editNoteaNM98FRVEYLON_&amp;note_text=&amp;return_to=%2Fyour_highlights" class="addEditNote">Add a note</a>
429
+
430
+ </p>
431
+
432
+
433
+ </div>
434
+ <div class="highlightRow yourHighlight">
435
+
436
+ <span class="highlight">In a letter to his brother, Theo, who had suggested that Vincent become a painter, Vincent van Gogh wrote: “. . . at the time when you spoke of my becoming a painter, I thought it very impractical and would not hear of it. What made me stop doubting was reading a clear book on perspective, Cassange’s Guide to the ABC of Drawing, and a week later I drew the interior of a kitchen with stove, chair, table and window—in their places and on their legs—whereas before it had seemed to me that getting depth and the right perspective into a drawing was witchcraft or pure chance.” —Complete Letters of Vincent van Gogh, Letter 184, p. 331</span><a href="kindle://book?action=open&asin=B005GSYXU4&location=570" class="k4pcReadMore readMore linkOut">Read&nbsp;more&nbsp;at&nbsp;location&nbsp;570</a><form action="/user_annotation_relation/delete_highlight" class="deleteHighlightForm" method="post"><div style="margin:0;padding:0"><input name="authenticity_token" type="hidden" value="14ca6ff90bf02b35e8adbdd9b97e969f8260e02b" /></div><input id="asin" name="asin" type="hidden" value="B005GSYXU4" /><input id="annotation_id" name="annotation_id" type="hidden" value="a2FFSJKHMKM3OV" /><span class="deleteHighlight"><button class="textSubmit" name="delete" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Delete&nbsp;this&nbsp;highlight</span></button></span><span class="deleteHighlightUndo hidden"><button class="textSubmit" name="undo" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Undo&nbsp;deletion</span></button></span></form>
437
+
438
+
439
+
440
+
441
+ <p class="editNote " id="editNotea2FFSJKHMKM3OV_">
442
+ <span class="hidden asin">B005GSYXU4</span>
443
+ <span class="hidden annotation_id"></span>
444
+ <span class="hidden end_location">86324</span>
445
+ <span class="yourNote hidden">
446
+ Note:
447
+ </span>
448
+ <span class="noteContent"></span>
449
+
450
+
451
+ <a href="/user_annotation_relation/edit_note_popup?annotation_id=&amp;asin=B005GSYXU4&amp;attached=a2FFSJKHMKM3OV&amp;end_location=86324&amp;note_area_id=editNotea2FFSJKHMKM3OV_&amp;note_text=&amp;return_to=%2Fyour_highlights" class="addEditNote">Add a note</a>
452
+
453
+ </p>
454
+
455
+
456
+ </div>
457
+ <div class="highlightRow yourHighlight">
458
+
459
+ <span class="highlight">How far you go with these skills will depend on your other traits, such as energy, curiosity, and discipline.</span><a href="kindle://book?action=open&asin=B005GSYXU4&location=579" class="k4pcReadMore readMore linkOut">Read&nbsp;more&nbsp;at&nbsp;location&nbsp;579</a><form action="/user_annotation_relation/delete_highlight" class="deleteHighlightForm" method="post"><div style="margin:0;padding:0"><input name="authenticity_token" type="hidden" value="14ca6ff90bf02b35e8adbdd9b97e969f8260e02b" /></div><input id="asin" name="asin" type="hidden" value="B005GSYXU4" /><input id="annotation_id" name="annotation_id" type="hidden" value="a3NHURPUQJQITJ" /><span class="deleteHighlight"><button class="textSubmit" name="delete" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Delete&nbsp;this&nbsp;highlight</span></button></span><span class="deleteHighlightUndo hidden"><button class="textSubmit" name="undo" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Undo&nbsp;deletion</span></button></span></form>
460
+
461
+
462
+
463
+
464
+ <p class="editNote " id="editNotea3NHURPUQJQITJ_">
465
+ <span class="hidden asin">B005GSYXU4</span>
466
+ <span class="hidden annotation_id"></span>
467
+ <span class="hidden end_location">86954</span>
468
+ <span class="yourNote hidden">
469
+ Note:
470
+ </span>
471
+ <span class="noteContent"></span>
472
+
473
+
474
+ <a href="/user_annotation_relation/edit_note_popup?annotation_id=&amp;asin=B005GSYXU4&amp;attached=a3NHURPUQJQITJ&amp;end_location=86954&amp;note_area_id=editNotea3NHURPUQJQITJ_&amp;note_text=&amp;return_to=%2Fyour_highlights" class="addEditNote">Add a note</a>
475
+
476
+ </p>
477
+
478
+
479
+ </div>
480
+ <div class="highlightRow yourHighlight">
481
+
482
+ <span class="highlight">This training in perceptual skills—how to see and draw what is actually “out there”—is the rock bottom “ABC” of drawing.</span><a href="kindle://book?action=open&asin=B005GSYXU4&location=694" class="k4pcReadMore readMore linkOut">Read&nbsp;more&nbsp;at&nbsp;location&nbsp;694</a><form action="/user_annotation_relation/delete_highlight" class="deleteHighlightForm" method="post"><div style="margin:0;padding:0"><input name="authenticity_token" type="hidden" value="14ca6ff90bf02b35e8adbdd9b97e969f8260e02b" /></div><input id="asin" name="asin" type="hidden" value="B005GSYXU4" /><input id="annotation_id" name="annotation_id" type="hidden" value="a1W1NSUZTVONIW" /><span class="deleteHighlight"><button class="textSubmit" name="delete" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Delete&nbsp;this&nbsp;highlight</span></button></span><span class="deleteHighlightUndo hidden"><button class="textSubmit" name="undo" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Undo&nbsp;deletion</span></button></span></form>
483
+
484
+
485
+
486
+
487
+ <p class="editNote " id="editNotea1W1NSUZTVONIW_">
488
+ <span class="hidden asin">B005GSYXU4</span>
489
+ <span class="hidden annotation_id"></span>
490
+ <span class="hidden end_location">104133</span>
491
+ <span class="yourNote hidden">
492
+ Note:
493
+ </span>
494
+ <span class="noteContent"></span>
495
+
496
+
497
+ <a href="/user_annotation_relation/edit_note_popup?annotation_id=&amp;asin=B005GSYXU4&amp;attached=a1W1NSUZTVONIW&amp;end_location=104133&amp;note_area_id=editNotea1W1NSUZTVONIW_&amp;note_text=&amp;return_to=%2Fyour_highlights" class="addEditNote">Add a note</a>
498
+
499
+ </p>
500
+
501
+
502
+ </div>
503
+ <div class="highlightRow yourHighlight">
504
+
505
+ <span class="highlight">Learning to perceive is the basic skill that the students acquired, not drawing skill.</span><a href="kindle://book?action=open&asin=B005GSYXU4&location=703" class="k4pcReadMore readMore linkOut">Read&nbsp;more&nbsp;at&nbsp;location&nbsp;703</a><form action="/user_annotation_relation/delete_highlight" class="deleteHighlightForm" method="post"><div style="margin:0;padding:0"><input name="authenticity_token" type="hidden" value="14ca6ff90bf02b35e8adbdd9b97e969f8260e02b" /></div><input id="asin" name="asin" type="hidden" value="B005GSYXU4" /><input id="annotation_id" name="annotation_id" type="hidden" value="a1GWPE9TP2HYLL" /><span class="deleteHighlight"><button class="textSubmit" name="delete" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Delete&nbsp;this&nbsp;highlight</span></button></span><span class="deleteHighlightUndo hidden"><button class="textSubmit" name="undo" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Undo&nbsp;deletion</span></button></span></form>
506
+
507
+
508
+
509
+
510
+ <p class="editNote " id="editNotea1GWPE9TP2HYLL_">
511
+ <span class="hidden asin">B005GSYXU4</span>
512
+ <span class="hidden annotation_id"></span>
513
+ <span class="hidden end_location">105534</span>
514
+ <span class="yourNote hidden">
515
+ Note:
516
+ </span>
517
+ <span class="noteContent"></span>
518
+
519
+
520
+ <a href="/user_annotation_relation/edit_note_popup?annotation_id=&amp;asin=B005GSYXU4&amp;attached=a1GWPE9TP2HYLL&amp;end_location=105534&amp;note_area_id=editNotea1GWPE9TP2HYLL_&amp;note_text=&amp;return_to=%2Fyour_highlights" class="addEditNote">Add a note</a>
521
+
522
+ </p>
523
+
524
+
525
+ </div>
526
+ <div class="highlightRow yourHighlight">
527
+
528
+ <span class="highlight">Because of the strength and dominance of the L-mode, the problem we confront is how to “set aside” the L-mode in order to access the R-mode at the conscious level.</span><a href="kindle://book?action=open&asin=B005GSYXU4&location=882" class="k4pcReadMore readMore linkOut">Read&nbsp;more&nbsp;at&nbsp;location&nbsp;882</a><form action="/user_annotation_relation/delete_highlight" class="deleteHighlightForm" method="post"><div style="margin:0;padding:0"><input name="authenticity_token" type="hidden" value="14ca6ff90bf02b35e8adbdd9b97e969f8260e02b" /></div><input id="asin" name="asin" type="hidden" value="B005GSYXU4" /><input id="annotation_id" name="annotation_id" type="hidden" value="a2TU67JHEG5PKU" /><span class="deleteHighlight"><button class="textSubmit" name="delete" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Delete&nbsp;this&nbsp;highlight</span></button></span><span class="deleteHighlightUndo hidden"><button class="textSubmit" name="undo" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Undo&nbsp;deletion</span></button></span></form>
529
+
530
+
531
+
532
+
533
+ <p class="editNote " id="editNotea2TU67JHEG5PKU_">
534
+ <span class="hidden asin">B005GSYXU4</span>
535
+ <span class="hidden annotation_id"></span>
536
+ <span class="hidden end_location">132406</span>
537
+ <span class="yourNote hidden">
538
+ Note:
539
+ </span>
540
+ <span class="noteContent"></span>
541
+
542
+
543
+ <a href="/user_annotation_relation/edit_note_popup?annotation_id=&amp;asin=B005GSYXU4&amp;attached=a2TU67JHEG5PKU&amp;end_location=132406&amp;note_area_id=editNotea2TU67JHEG5PKU_&amp;note_text=&amp;return_to=%2Fyour_highlights" class="addEditNote">Add a note</a>
544
+
545
+ </p>
546
+
547
+
548
+ </div>
549
+ <div class="highlightRow yourHighlight">
550
+
551
+ <span class="highlight">“The main theme to emerge . . . is that there appear to be two modes of thinking, verbal and nonverbal, represented rather separately in left and right hemispheres, respectively, and that our educational system, as well as science in general, tends to neglect the nonverbal form of intellect. What it comes down to is that modern society discriminates against the right hemisphere.” —“Lateral Specialization of Cerebral Function in the Surgically Separated Hemispheres,” Roger W. Sperry. In Neurosciences Third Study Program, F. Schmitt and F. Worden (Eds.), Cambridge, M.I.T. Press, 1974.</span><a href="kindle://book?action=open&asin=B005GSYXU4&location=942" class="k4pcReadMore readMore linkOut">Read&nbsp;more&nbsp;at&nbsp;location&nbsp;942</a><form action="/user_annotation_relation/delete_highlight" class="deleteHighlightForm" method="post"><div style="margin:0;padding:0"><input name="authenticity_token" type="hidden" value="14ca6ff90bf02b35e8adbdd9b97e969f8260e02b" /></div><input id="asin" name="asin" type="hidden" value="B005GSYXU4" /><input id="annotation_id" name="annotation_id" type="hidden" value="a26FC6OO3UP1W6" /><span class="deleteHighlight"><button class="textSubmit" name="delete" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Delete&nbsp;this&nbsp;highlight</span></button></span><span class="deleteHighlightUndo hidden"><button class="textSubmit" name="undo" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Undo&nbsp;deletion</span></button></span></form>
552
+
553
+
554
+
555
+
556
+ <p class="editNote " id="editNotea26FC6OO3UP1W6_">
557
+ <span class="hidden asin">B005GSYXU4</span>
558
+ <span class="hidden annotation_id"></span>
559
+ <span class="hidden end_location">141876</span>
560
+ <span class="yourNote hidden">
561
+ Note:
562
+ </span>
563
+ <span class="noteContent"></span>
564
+
565
+
566
+ <a href="/user_annotation_relation/edit_note_popup?annotation_id=&amp;asin=B005GSYXU4&amp;attached=a26FC6OO3UP1W6&amp;end_location=141876&amp;note_area_id=editNotea26FC6OO3UP1W6_&amp;note_text=&amp;return_to=%2Fyour_highlights" class="addEditNote">Add a note</a>
567
+
568
+ </p>
569
+
570
+
571
+ </div>
572
+ <div class="highlightRow yourHighlight">
573
+
574
+ <span class="highlight">the right-hemisphere mode: the intuitive, subjective, relational, holistic, time-free, reality-seeing mode.</span><a href="kindle://book?action=open&asin=B005GSYXU4&location=1006" class="k4pcReadMore readMore linkOut">Read&nbsp;more&nbsp;at&nbsp;location&nbsp;1006</a><form action="/user_annotation_relation/delete_highlight" class="deleteHighlightForm" method="post"><div style="margin:0;padding:0"><input name="authenticity_token" type="hidden" value="14ca6ff90bf02b35e8adbdd9b97e969f8260e02b" /></div><input id="asin" name="asin" type="hidden" value="B005GSYXU4" /><input id="annotation_id" name="annotation_id" type="hidden" value="aZ2QFY0TDYB38" /><span class="deleteHighlight"><button class="textSubmit" name="delete" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Delete&nbsp;this&nbsp;highlight</span></button></span><span class="deleteHighlightUndo hidden"><button class="textSubmit" name="undo" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Undo&nbsp;deletion</span></button></span></form>
575
+
576
+
577
+
578
+
579
+ <p class="editNote " id="editNoteaZ2QFY0TDYB38_">
580
+ <span class="hidden asin">B005GSYXU4</span>
581
+ <span class="hidden annotation_id"></span>
582
+ <span class="hidden end_location">150917</span>
583
+ <span class="yourNote hidden">
584
+ Note:
585
+ </span>
586
+ <span class="noteContent"></span>
587
+
588
+
589
+ <a href="/user_annotation_relation/edit_note_popup?annotation_id=&amp;asin=B005GSYXU4&amp;attached=aZ2QFY0TDYB38&amp;end_location=150917&amp;note_area_id=editNoteaZ2QFY0TDYB38_&amp;note_text=&amp;return_to=%2Fyour_highlights" class="addEditNote">Add a note</a>
590
+
591
+ </p>
592
+
593
+
594
+ </div>
595
+ <div class="highlightRow yourHighlight">
596
+
597
+ <span class="highlight">“American education up through graduate school probably ablated the right hemisphere.”</span><a href="kindle://book?action=open&asin=B005GSYXU4&location=1009" class="k4pcReadMore readMore linkOut">Read&nbsp;more&nbsp;at&nbsp;location&nbsp;1009</a><form action="/user_annotation_relation/delete_highlight" class="deleteHighlightForm" method="post"><div style="margin:0;padding:0"><input name="authenticity_token" type="hidden" value="14ca6ff90bf02b35e8adbdd9b97e969f8260e02b" /></div><input id="asin" name="asin" type="hidden" value="B005GSYXU4" /><input id="annotation_id" name="annotation_id" type="hidden" value="a1BH2BPCO2YQXV" /><span class="deleteHighlight"><button class="textSubmit" name="delete" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Delete&nbsp;this&nbsp;highlight</span></button></span><span class="deleteHighlightUndo hidden"><button class="textSubmit" name="undo" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Undo&nbsp;deletion</span></button></span></form>
598
+
599
+
600
+
601
+
602
+ <p class="editNote " id="editNotea1BH2BPCO2YQXV_">
603
+ <span class="hidden asin">B005GSYXU4</span>
604
+ <span class="hidden annotation_id"></span>
605
+ <span class="hidden end_location">151324</span>
606
+ <span class="yourNote hidden">
607
+ Note:
608
+ </span>
609
+ <span class="noteContent"></span>
610
+
611
+
612
+ <a href="/user_annotation_relation/edit_note_popup?annotation_id=&amp;asin=B005GSYXU4&amp;attached=a1BH2BPCO2YQXV&amp;end_location=151324&amp;note_area_id=editNotea1BH2BPCO2YQXV_&amp;note_text=&amp;return_to=%2Fyour_highlights" class="addEditNote">Add a note</a>
613
+
614
+ </p>
615
+
616
+
617
+ </div>
618
+ <div class="highlightRow yourHighlight">
619
+
620
+ <span class="highlight">One definition of a creative person is someone who can combine information directly at hand—the ordinary sensory data available to all of us—in new, socially productive ways. A writer uses words, a musician notes, an artist visual perceptions, and all need some knowledge of the techniques of their crafts.</span><a href="kindle://book?action=open&asin=B005GSYXU4&location=1012" class="k4pcReadMore readMore linkOut">Read&nbsp;more&nbsp;at&nbsp;location&nbsp;1012</a><form action="/user_annotation_relation/delete_highlight" class="deleteHighlightForm" method="post"><div style="margin:0;padding:0"><input name="authenticity_token" type="hidden" value="14ca6ff90bf02b35e8adbdd9b97e969f8260e02b" /></div><input id="asin" name="asin" type="hidden" value="B005GSYXU4" /><input id="annotation_id" name="annotation_id" type="hidden" value="a612MFBNNOASB" /><span class="deleteHighlight"><button class="textSubmit" name="delete" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Delete&nbsp;this&nbsp;highlight</span></button></span><span class="deleteHighlightUndo hidden"><button class="textSubmit" name="undo" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Undo&nbsp;deletion</span></button></span></form>
621
+
622
+
623
+
624
+
625
+ <p class="editNote " id="editNotea612MFBNNOASB_">
626
+ <span class="hidden asin">B005GSYXU4</span>
627
+ <span class="hidden annotation_id"></span>
628
+ <span class="hidden end_location">151975</span>
629
+ <span class="yourNote hidden">
630
+ Note:
631
+ </span>
632
+ <span class="noteContent"></span>
633
+
634
+
635
+ <a href="/user_annotation_relation/edit_note_popup?annotation_id=&amp;asin=B005GSYXU4&amp;attached=a612MFBNNOASB&amp;end_location=151975&amp;note_area_id=editNotea612MFBNNOASB_&amp;note_text=&amp;return_to=%2Fyour_highlights" class="addEditNote">Add a note</a>
636
+
637
+ </p>
638
+
639
+
640
+ </div>
641
+ <div class="highlightRow yourHighlight">
642
+
643
+ <span class="highlight">Hand preference is probably genetically determined, and forcing a change works against natural brain organization.</span><a href="kindle://book?action=open&asin=B005GSYXU4&location=1042" class="k4pcReadMore readMore linkOut">Read&nbsp;more&nbsp;at&nbsp;location&nbsp;1042</a><form action="/user_annotation_relation/delete_highlight" class="deleteHighlightForm" method="post"><div style="margin:0;padding:0"><input name="authenticity_token" type="hidden" value="14ca6ff90bf02b35e8adbdd9b97e969f8260e02b" /></div><input id="asin" name="asin" type="hidden" value="B005GSYXU4" /><input id="annotation_id" name="annotation_id" type="hidden" value="a17X3MAQ9TXW6B" /><span class="deleteHighlight"><button class="textSubmit" name="delete" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Delete&nbsp;this&nbsp;highlight</span></button></span><span class="deleteHighlightUndo hidden"><button class="textSubmit" name="undo" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Undo&nbsp;deletion</span></button></span></form>
644
+
645
+
646
+
647
+
648
+ <p class="editNote " id="editNotea17X3MAQ9TXW6B_">
649
+ <span class="hidden asin">B005GSYXU4</span>
650
+ <span class="hidden annotation_id"></span>
651
+ <span class="hidden end_location">156316</span>
652
+ <span class="yourNote hidden">
653
+ Note:
654
+ </span>
655
+ <span class="noteContent"></span>
656
+
657
+
658
+ <a href="/user_annotation_relation/edit_note_popup?annotation_id=&amp;asin=B005GSYXU4&amp;attached=a17X3MAQ9TXW6B&amp;end_location=156316&amp;note_area_id=editNotea17X3MAQ9TXW6B_&amp;note_text=&amp;return_to=%2Fyour_highlights" class="addEditNote">Add a note</a>
659
+
660
+ </p>
661
+
662
+
663
+ </div>
664
+ <div class="highlightRow yourHighlight">
665
+
666
+ <span class="highlight">the control question may be decided mainly in two ways. One is speed: which hemisphere gets to the job the quickest? A second way is motivation: which hemisphere cares most or likes the task the best? And conversely: which hemisphere cares least and likes the job the least?</span><a href="kindle://book?action=open&asin=B005GSYXU4&location=1132" class="k4pcReadMore readMore linkOut">Read&nbsp;more&nbsp;at&nbsp;location&nbsp;1132</a><form action="/user_annotation_relation/delete_highlight" class="deleteHighlightForm" method="post"><div style="margin:0;padding:0"><input name="authenticity_token" type="hidden" value="14ca6ff90bf02b35e8adbdd9b97e969f8260e02b" /></div><input id="asin" name="asin" type="hidden" value="B005GSYXU4" /><input id="annotation_id" name="annotation_id" type="hidden" value="a1DQJXNLC4QBFY" /><span class="deleteHighlight"><button class="textSubmit" name="delete" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Delete&nbsp;this&nbsp;highlight</span></button></span><span class="deleteHighlightUndo hidden"><button class="textSubmit" name="undo" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Undo&nbsp;deletion</span></button></span></form>
667
+
668
+
669
+
670
+
671
+ <p class="editNote " id="editNotea1DQJXNLC4QBFY_">
672
+ <span class="hidden asin">B005GSYXU4</span>
673
+ <span class="hidden annotation_id"></span>
674
+ <span class="hidden end_location">170048</span>
675
+ <span class="yourNote hidden">
676
+ Note:
677
+ </span>
678
+ <span class="noteContent"></span>
679
+
680
+
681
+ <a href="/user_annotation_relation/edit_note_popup?annotation_id=&amp;asin=B005GSYXU4&amp;attached=a1DQJXNLC4QBFY&amp;end_location=170048&amp;note_area_id=editNotea1DQJXNLC4QBFY_&amp;note_text=&amp;return_to=%2Fyour_highlights" class="addEditNote">Add a note</a>
682
+
683
+ </p>
684
+
685
+
686
+ </div>
687
+ <div class="highlightRow yourHighlight">
688
+
689
+ <span class="highlight">The split brain studies indicated that the dominant L-mode prefers not to relinquish tasks to its mute partner unless it really dislikes the job—either because the job takes too much time or is too detailed or slow, or because the left brain is simply unable to accomplish the task.</span><a href="kindle://book?action=open&asin=B005GSYXU4&location=1136" class="k4pcReadMore readMore linkOut">Read&nbsp;more&nbsp;at&nbsp;location&nbsp;1136</a><form action="/user_annotation_relation/delete_highlight" class="deleteHighlightForm" method="post"><div style="margin:0;padding:0"><input name="authenticity_token" type="hidden" value="14ca6ff90bf02b35e8adbdd9b97e969f8260e02b" /></div><input id="asin" name="asin" type="hidden" value="B005GSYXU4" /><input id="annotation_id" name="annotation_id" type="hidden" value="a3M128TI48YIR2" /><span class="deleteHighlight"><button class="textSubmit" name="delete" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Delete&nbsp;this&nbsp;highlight</span></button></span><span class="deleteHighlightUndo hidden"><button class="textSubmit" name="undo" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Undo&nbsp;deletion</span></button></span></form>
690
+
691
+
692
+
693
+
694
+ <p class="editNote " id="editNotea3M128TI48YIR2_">
695
+ <span class="hidden asin">B005GSYXU4</span>
696
+ <span class="hidden annotation_id"></span>
697
+ <span class="hidden end_location">170650</span>
698
+ <span class="yourNote hidden">
699
+ Note:
700
+ </span>
701
+ <span class="noteContent"></span>
702
+
703
+
704
+ <a href="/user_annotation_relation/edit_note_popup?annotation_id=&amp;asin=B005GSYXU4&amp;attached=a3M128TI48YIR2&amp;end_location=170650&amp;note_area_id=editNotea3M128TI48YIR2_&amp;note_text=&amp;return_to=%2Fyour_highlights" class="addEditNote">Add a note</a>
705
+
706
+ </p>
707
+
708
+
709
+ </div>
710
+ <div class="highlightRow yourHighlight">
711
+
712
+ <span class="highlight">athletes and dancers, for instance, seem to perform best by quieting their verbal system during performances, often called being “in the zone.”</span><a href="kindle://book?action=open&asin=B005GSYXU4&location=1254" class="k4pcReadMore readMore linkOut">Read&nbsp;more&nbsp;at&nbsp;location&nbsp;1254</a><form action="/user_annotation_relation/delete_highlight" class="deleteHighlightForm" method="post"><div style="margin:0;padding:0"><input name="authenticity_token" type="hidden" value="14ca6ff90bf02b35e8adbdd9b97e969f8260e02b" /></div><input id="asin" name="asin" type="hidden" value="B005GSYXU4" /><input id="annotation_id" name="annotation_id" type="hidden" value="a3D091JQ2BE22L" /><span class="deleteHighlight"><button class="textSubmit" name="delete" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Delete&nbsp;this&nbsp;highlight</span></button></span><span class="deleteHighlightUndo hidden"><button class="textSubmit" name="undo" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Undo&nbsp;deletion</span></button></span></form>
713
+
714
+
715
+
716
+
717
+ <p class="editNote " id="editNotea3D091JQ2BE22L_">
718
+ <span class="hidden asin">B005GSYXU4</span>
719
+ <span class="hidden annotation_id"></span>
720
+ <span class="hidden end_location">188220</span>
721
+ <span class="yourNote hidden">
722
+ Note:
723
+ </span>
724
+ <span class="noteContent"></span>
725
+
726
+
727
+ <a href="/user_annotation_relation/edit_note_popup?annotation_id=&amp;asin=B005GSYXU4&amp;attached=a3D091JQ2BE22L&amp;end_location=188220&amp;note_area_id=editNotea3D091JQ2BE22L_&amp;note_text=&amp;return_to=%2Fyour_highlights" class="addEditNote">Add a note</a>
728
+
729
+ </p>
730
+
731
+
732
+ </div>
733
+ <div class="highlightRow yourHighlight">
734
+
735
+ <span class="highlight">shifting to the R-mode releases you for a time from the verbal, symbolic domination of the L-mode, and that is a welcome relief. The pleasure may come from resting the left hemisphere, stopping its chatter, keeping it quiet for a change. This yearning to quiet the L-mode may partially explain centuries-old practices such as meditation and self-induced altered states of consciousness achieved through fasting, chanting, drugs, or alcohol. Drawing induces a focused, alert state of consciousness that can last for hours, bringing significant satisfaction, and, unlike some self-induced altered states, is productive in terms of work output.</span><a href="kindle://book?action=open&asin=B005GSYXU4&location=1398" class="k4pcReadMore readMore linkOut">Read&nbsp;more&nbsp;at&nbsp;location&nbsp;1398</a><form action="/user_annotation_relation/delete_highlight" class="deleteHighlightForm" method="post"><div style="margin:0;padding:0"><input name="authenticity_token" type="hidden" value="14ca6ff90bf02b35e8adbdd9b97e969f8260e02b" /></div><input id="asin" name="asin" type="hidden" value="B005GSYXU4" /><input id="annotation_id" name="annotation_id" type="hidden" value="a2K8N36XD90H5Z" /><span class="deleteHighlight"><button class="textSubmit" name="delete" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Delete&nbsp;this&nbsp;highlight</span></button></span><span class="deleteHighlightUndo hidden"><button class="textSubmit" name="undo" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Undo&nbsp;deletion</span></button></span></form>
736
+
737
+
738
+
739
+
740
+ <p class="editNote " id="editNotea2K8N36XD90H5Z_">
741
+ <span class="hidden asin">B005GSYXU4</span>
742
+ <span class="hidden annotation_id"></span>
743
+ <span class="hidden end_location">210192</span>
744
+ <span class="yourNote hidden">
745
+ Note:
746
+ </span>
747
+ <span class="noteContent"></span>
748
+
749
+
750
+ <a href="/user_annotation_relation/edit_note_popup?annotation_id=&amp;asin=B005GSYXU4&amp;attached=a2K8N36XD90H5Z&amp;end_location=210192&amp;note_area_id=editNotea2K8N36XD90H5Z_&amp;note_text=&amp;return_to=%2Fyour_highlights" class="addEditNote">Add a note</a>
751
+
752
+ </p>
753
+
754
+
755
+ </div>
756
+ <div class="highlightRow yourHighlight">
757
+
758
+ <span class="highlight">An expert in children’s art, Miriam Lindstrom of the San Francisco Art Museum, described the crisis in early adolescent art: “Discontented with his own accomplishments and extremely anxious to please others with his art, he tends to give up original creation and personal expression. . . . Further development of his visualizing powers and even his capacity for original thought and for relating himself through personal feelings to his environment may be blocked at this point. It is a crucial stage beyond which many adults have not advanced.”</span><a href="kindle://book?action=open&asin=B005GSYXU4&location=1434" class="k4pcReadMore readMore linkOut">Read&nbsp;more&nbsp;at&nbsp;location&nbsp;1434</a><form action="/user_annotation_relation/delete_highlight" class="deleteHighlightForm" method="post"><div style="margin:0;padding:0"><input name="authenticity_token" type="hidden" value="14ca6ff90bf02b35e8adbdd9b97e969f8260e02b" /></div><input id="asin" name="asin" type="hidden" value="B005GSYXU4" /><input id="annotation_id" name="annotation_id" type="hidden" value="a3K6E05M9KEX09" /><span class="deleteHighlight"><button class="textSubmit" name="delete" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Delete&nbsp;this&nbsp;highlight</span></button></span><span class="deleteHighlightUndo hidden"><button class="textSubmit" name="undo" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Undo&nbsp;deletion</span></button></span></form>
759
+
760
+
761
+
762
+
763
+ <p class="editNote " id="editNotea3K6E05M9KEX09_">
764
+ <span class="hidden asin">B005GSYXU4</span>
765
+ <span class="hidden annotation_id"></span>
766
+ <span class="hidden end_location">215710</span>
767
+ <span class="yourNote hidden">
768
+ Note:
769
+ </span>
770
+ <span class="noteContent"></span>
771
+
772
+
773
+ <a href="/user_annotation_relation/edit_note_popup?annotation_id=&amp;asin=B005GSYXU4&amp;attached=a3K6E05M9KEX09&amp;end_location=215710&amp;note_area_id=editNotea3K6E05M9KEX09_&amp;note_text=&amp;return_to=%2Fyour_highlights" class="addEditNote">Add a note</a>
774
+
775
+ </p>
776
+
777
+
778
+ </div>
779
+ <div class="highlightRow yourHighlight">
780
+
781
+ <span class="highlight">drawing is not considered a vital skill for survival in our culture, whereas speech and reading are. Therefore, hardly anyone seems to notice that most children give up drawing at age nine or ten.</span><a href="kindle://book?action=open&asin=B005GSYXU4&location=1462" class="k4pcReadMore readMore linkOut">Read&nbsp;more&nbsp;at&nbsp;location&nbsp;1462</a><form action="/user_annotation_relation/delete_highlight" class="deleteHighlightForm" method="post"><div style="margin:0;padding:0"><input name="authenticity_token" type="hidden" value="14ca6ff90bf02b35e8adbdd9b97e969f8260e02b" /></div><input id="asin" name="asin" type="hidden" value="B005GSYXU4" /><input id="annotation_id" name="annotation_id" type="hidden" value="a25LYV6FFIQX19" /><span class="deleteHighlight"><button class="textSubmit" name="delete" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Delete&nbsp;this&nbsp;highlight</span></button></span><span class="deleteHighlightUndo hidden"><button class="textSubmit" name="undo" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Undo&nbsp;deletion</span></button></span></form>
782
+
783
+
784
+
785
+
786
+ <p class="editNote " id="editNotea25LYV6FFIQX19_">
787
+ <span class="hidden asin">B005GSYXU4</span>
788
+ <span class="hidden annotation_id"></span>
789
+ <span class="hidden end_location">219359</span>
790
+ <span class="yourNote hidden">
791
+ Note:
792
+ </span>
793
+ <span class="noteContent"></span>
794
+
795
+
796
+ <a href="/user_annotation_relation/edit_note_popup?annotation_id=&amp;asin=B005GSYXU4&amp;attached=a25LYV6FFIQX19&amp;end_location=219359&amp;note_area_id=editNotea25LYV6FFIQX19_&amp;note_text=&amp;return_to=%2Fyour_highlights" class="addEditNote">Add a note</a>
797
+
798
+ </p>
799
+
800
+
801
+ </div>
802
+ <div class="highlightRow yourHighlight">
803
+
804
+ <span class="highlight">“The scribblings of any child clearly indicate how thoroughly immersed he is in the sensation of moving his hand and crayon aimlessly over a surface, depositing a line in his path. There must be some quantity of magic in this alone.” —Edward Hill, The Language of Drawing, 1966</span><a href="kindle://book?action=open&asin=B005GSYXU4&location=1471" class="k4pcReadMore readMore linkOut">Read&nbsp;more&nbsp;at&nbsp;location&nbsp;1471</a><form action="/user_annotation_relation/delete_highlight" class="deleteHighlightForm" method="post"><div style="margin:0;padding:0"><input name="authenticity_token" type="hidden" value="14ca6ff90bf02b35e8adbdd9b97e969f8260e02b" /></div><input id="asin" name="asin" type="hidden" value="B005GSYXU4" /><input id="annotation_id" name="annotation_id" type="hidden" value="a10G7ZFUKGQFOK" /><span class="deleteHighlight"><button class="textSubmit" name="delete" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Delete&nbsp;this&nbsp;highlight</span></button></span><span class="deleteHighlightUndo hidden"><button class="textSubmit" name="undo" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Undo&nbsp;deletion</span></button></span></form>
805
+
806
+
807
+
808
+
809
+ <p class="editNote " id="editNotea10G7ZFUKGQFOK_">
810
+ <span class="hidden asin">B005GSYXU4</span>
811
+ <span class="hidden annotation_id"></span>
812
+ <span class="hidden end_location">220903</span>
813
+ <span class="yourNote hidden">
814
+ Note:
815
+ </span>
816
+ <span class="noteContent"></span>
817
+
818
+
819
+ <a href="/user_annotation_relation/edit_note_popup?annotation_id=&amp;asin=B005GSYXU4&amp;attached=a10G7ZFUKGQFOK&amp;end_location=220903&amp;note_area_id=editNotea10G7ZFUKGQFOK_&amp;note_text=&amp;return_to=%2Fyour_highlights" class="addEditNote">Add a note</a>
820
+
821
+ </p>
822
+
823
+
824
+ </div>
825
+ <div class="highlightRow yourHighlight">
826
+
827
+ <span class="highlight">to protect the ego from further damage, children react defensively, and understandably so: they seldom ever attempt to draw again.</span><a href="kindle://book?action=open&asin=B005GSYXU4&location=1483" class="k4pcReadMore readMore linkOut">Read&nbsp;more&nbsp;at&nbsp;location&nbsp;1483</a><form action="/user_annotation_relation/delete_highlight" class="deleteHighlightForm" method="post"><div style="margin:0;padding:0"><input name="authenticity_token" type="hidden" value="14ca6ff90bf02b35e8adbdd9b97e969f8260e02b" /></div><input id="asin" name="asin" type="hidden" value="B005GSYXU4" /><input id="annotation_id" name="annotation_id" type="hidden" value="a38WD5DPMFOEUK" /><span class="deleteHighlight"><button class="textSubmit" name="delete" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Delete&nbsp;this&nbsp;highlight</span></button></span><span class="deleteHighlightUndo hidden"><button class="textSubmit" name="undo" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Undo&nbsp;deletion</span></button></span></form>
828
+
829
+
830
+
831
+
832
+ <p class="editNote " id="editNotea38WD5DPMFOEUK_">
833
+ <span class="hidden asin">B005GSYXU4</span>
834
+ <span class="hidden annotation_id"></span>
835
+ <span class="hidden end_location">222511</span>
836
+ <span class="yourNote hidden">
837
+ Note:
838
+ </span>
839
+ <span class="noteContent"></span>
840
+
841
+
842
+ <a href="/user_annotation_relation/edit_note_popup?annotation_id=&amp;asin=B005GSYXU4&amp;attached=a38WD5DPMFOEUK&amp;end_location=222511&amp;note_area_id=editNotea38WD5DPMFOEUK_&amp;note_text=&amp;return_to=%2Fyour_highlights" class="addEditNote">Add a note</a>
843
+
844
+ </p>
845
+
846
+
847
+ </div>
848
+ <div class="highlightRow yourHighlight">
849
+
850
+ <span class="highlight">By around age five or six, children have developed a set of symbols to create a landscape. Again, by a process of trial and error, children usually settle on a single version of a symbolic landscape, which is endlessly repeated. Perhaps you can remember the landscape you drew around age five or six.</span><a href="kindle://book?action=open&asin=B005GSYXU4&location=1557" class="k4pcReadMore readMore linkOut">Read&nbsp;more&nbsp;at&nbsp;location&nbsp;1557</a><form action="/user_annotation_relation/delete_highlight" class="deleteHighlightForm" method="post"><div style="margin:0;padding:0"><input name="authenticity_token" type="hidden" value="14ca6ff90bf02b35e8adbdd9b97e969f8260e02b" /></div><input id="asin" name="asin" type="hidden" value="B005GSYXU4" /><input id="annotation_id" name="annotation_id" type="hidden" value="a14W63OW2JO2D6" /><span class="deleteHighlight"><button class="textSubmit" name="delete" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Delete&nbsp;this&nbsp;highlight</span></button></span><span class="deleteHighlightUndo hidden"><button class="textSubmit" name="undo" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Undo&nbsp;deletion</span></button></span></form>
851
+
852
+
853
+
854
+
855
+ <p class="editNote " id="editNotea14W63OW2JO2D6_">
856
+ <span class="hidden asin">B005GSYXU4</span>
857
+ <span class="hidden annotation_id"></span>
858
+ <span class="hidden end_location">233778</span>
859
+ <span class="yourNote hidden">
860
+ Note:
861
+ </span>
862
+ <span class="noteContent"></span>
863
+
864
+
865
+ <a href="/user_annotation_relation/edit_note_popup?annotation_id=&amp;asin=B005GSYXU4&amp;attached=a14W63OW2JO2D6&amp;end_location=233778&amp;note_area_id=editNotea14W63OW2JO2D6_&amp;note_text=&amp;return_to=%2Fyour_highlights" class="addEditNote">Add a note</a>
866
+
867
+ </p>
868
+
869
+
870
+ </div>
871
+ <div class="highlightRow yourHighlight">
872
+
873
+ <span class="highlight">the child must draw unsquare shapes to draw a square cube, and the child must accept this paradox, this illogical process that conflicts with verbal, conceptual knowledge. (Perhaps this is one meaning of Picasso’s famous 1923 statement that “Art is a lie that makes us realize the truth.”)</span><a href="kindle://book?action=open&asin=B005GSYXU4&location=1640" class="k4pcReadMore readMore linkOut">Read&nbsp;more&nbsp;at&nbsp;location&nbsp;1640</a><form action="/user_annotation_relation/delete_highlight" class="deleteHighlightForm" method="post"><div style="margin:0;padding:0"><input name="authenticity_token" type="hidden" value="14ca6ff90bf02b35e8adbdd9b97e969f8260e02b" /></div><input id="asin" name="asin" type="hidden" value="B005GSYXU4" /><input id="annotation_id" name="annotation_id" type="hidden" value="a1U4NVPO767ED9" /><span class="deleteHighlight"><button class="textSubmit" name="delete" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Delete&nbsp;this&nbsp;highlight</span></button></span><span class="deleteHighlightUndo hidden"><button class="textSubmit" name="undo" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Undo&nbsp;deletion</span></button></span></form>
874
+
875
+
876
+
877
+
878
+ <p class="editNote " id="editNotea1U4NVPO767ED9_">
879
+ <span class="hidden asin">B005GSYXU4</span>
880
+ <span class="hidden annotation_id"></span>
881
+ <span class="hidden end_location">246153</span>
882
+ <span class="yourNote hidden">
883
+ Note:
884
+ </span>
885
+ <span class="noteContent"></span>
886
+
887
+
888
+ <a href="/user_annotation_relation/edit_note_popup?annotation_id=&amp;asin=B005GSYXU4&amp;attached=a1U4NVPO767ED9&amp;end_location=246153&amp;note_area_id=editNotea1U4NVPO767ED9_&amp;note_text=&amp;return_to=%2Fyour_highlights" class="addEditNote">Add a note</a>
889
+
890
+ </p>
891
+
892
+
893
+ </div>
894
+ <div class="highlightRow yourHighlight">
895
+
896
+ <span class="highlight">The left hemisphere has no patience with detailed, complicated, and paradoxical perception and says, in effect, “It’s a cube, I tell you. That’s enough to know. You don’t need to look at it, because we know it is square. Here, I have a symbol for that; add a few details if you want, but don’t bother me with this looking-real business.”</span><a href="kindle://book?action=open&asin=B005GSYXU4&location=1677" class="k4pcReadMore readMore linkOut">Read&nbsp;more&nbsp;at&nbsp;location&nbsp;1677</a><form action="/user_annotation_relation/delete_highlight" class="deleteHighlightForm" method="post"><div style="margin:0;padding:0"><input name="authenticity_token" type="hidden" value="14ca6ff90bf02b35e8adbdd9b97e969f8260e02b" /></div><input id="asin" name="asin" type="hidden" value="B005GSYXU4" /><input id="annotation_id" name="annotation_id" type="hidden" value="a1USTIVP6VWGF1" /><span class="deleteHighlight"><button class="textSubmit" name="delete" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Delete&nbsp;this&nbsp;highlight</span></button></span><span class="deleteHighlightUndo hidden"><button class="textSubmit" name="undo" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Undo&nbsp;deletion</span></button></span></form>
897
+
898
+
899
+
900
+
901
+ <p class="editNote " id="editNotea1USTIVP6VWGF1_">
902
+ <span class="hidden asin">B005GSYXU4</span>
903
+ <span class="hidden annotation_id"></span>
904
+ <span class="hidden end_location">251767</span>
905
+ <span class="yourNote hidden">
906
+ Note:
907
+ </span>
908
+ <span class="noteContent"></span>
909
+
910
+
911
+ <a href="/user_annotation_relation/edit_note_popup?annotation_id=&amp;asin=B005GSYXU4&amp;attached=a1USTIVP6VWGF1&amp;end_location=251767&amp;note_area_id=editNotea1USTIVP6VWGF1_&amp;note_text=&amp;return_to=%2Fyour_highlights" class="addEditNote">Add a note</a>
912
+
913
+ </p>
914
+
915
+
916
+ </div>
917
+ <div class="highlightRow yourHighlight">
918
+
919
+ <span class="highlight">drawing requires that you look at something for a long time, perceiving lots of details and how they fit together to form wholes, registering as much information as possible—ideally, everything, as did Albrecht Dürer in his drawing of a hare.</span><a href="kindle://book?action=open&asin=B005GSYXU4&location=1700" class="k4pcReadMore readMore linkOut">Read&nbsp;more&nbsp;at&nbsp;location&nbsp;1700</a><form action="/user_annotation_relation/delete_highlight" class="deleteHighlightForm" method="post"><div style="margin:0;padding:0"><input name="authenticity_token" type="hidden" value="14ca6ff90bf02b35e8adbdd9b97e969f8260e02b" /></div><input id="asin" name="asin" type="hidden" value="B005GSYXU4" /><input id="annotation_id" name="annotation_id" type="hidden" value="a14FNYEXMZDJ5" /><span class="deleteHighlight"><button class="textSubmit" name="delete" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Delete&nbsp;this&nbsp;highlight</span></button></span><span class="deleteHighlightUndo hidden"><button class="textSubmit" name="undo" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Undo&nbsp;deletion</span></button></span></form>
920
+
921
+
922
+
923
+
924
+ <p class="editNote " id="editNotea14FNYEXMZDJ5_">
925
+ <span class="hidden asin">B005GSYXU4</span>
926
+ <span class="hidden annotation_id"></span>
927
+ <span class="hidden end_location">255141</span>
928
+ <span class="yourNote hidden">
929
+ Note:
930
+ </span>
931
+ <span class="noteContent"></span>
932
+
933
+
934
+ <a href="/user_annotation_relation/edit_note_popup?annotation_id=&amp;asin=B005GSYXU4&amp;attached=a14FNYEXMZDJ5&amp;end_location=255141&amp;note_area_id=editNotea14FNYEXMZDJ5_&amp;note_text=&amp;return_to=%2Fyour_highlights" class="addEditNote">Add a note</a>
935
+
936
+ </p>
937
+
938
+
939
+ </div>
940
+ <div class="highlightRow yourHighlight">
941
+
942
+ <span class="highlight">Brilliantly, Nicolaides also insisted that his students keep their eyes on the subject of the drawing most of the time, not on the drawing itself.</span><a href="kindle://book?action=open&asin=B005GSYXU4&location=1750" class="k4pcReadMore readMore linkOut">Read&nbsp;more&nbsp;at&nbsp;location&nbsp;1750</a><form action="/user_annotation_relation/delete_highlight" class="deleteHighlightForm" method="post"><div style="margin:0;padding:0"><input name="authenticity_token" type="hidden" value="14ca6ff90bf02b35e8adbdd9b97e969f8260e02b" /></div><input id="asin" name="asin" type="hidden" value="B005GSYXU4" /><input id="annotation_id" name="annotation_id" type="hidden" value="a1KHHSV0XP7BG5" /><span class="deleteHighlight"><button class="textSubmit" name="delete" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Delete&nbsp;this&nbsp;highlight</span></button></span><span class="deleteHighlightUndo hidden"><button class="textSubmit" name="undo" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Undo&nbsp;deletion</span></button></span></form>
943
+
944
+
945
+
946
+
947
+ <p class="editNote " id="editNotea1KHHSV0XP7BG5_">
948
+ <span class="hidden asin">B005GSYXU4</span>
949
+ <span class="hidden annotation_id"></span>
950
+ <span class="hidden end_location">262543</span>
951
+ <span class="yourNote hidden">
952
+ Note:
953
+ </span>
954
+ <span class="noteContent"></span>
955
+
956
+
957
+ <a href="/user_annotation_relation/edit_note_popup?annotation_id=&amp;asin=B005GSYXU4&amp;attached=a1KHHSV0XP7BG5&amp;end_location=262543&amp;note_area_id=editNotea1KHHSV0XP7BG5_&amp;note_text=&amp;return_to=%2Fyour_highlights" class="addEditNote">Add a note</a>
958
+
959
+ </p>
960
+
961
+
962
+ </div>
963
+ <div class="highlightRow yourHighlight">
964
+
965
+ <span class="highlight">this is the exercise that revives childhood wonder and the sense of beauty found in ordinary things.</span><a href="kindle://book?action=open&asin=B005GSYXU4&location=1760" class="k4pcReadMore readMore linkOut">Read&nbsp;more&nbsp;at&nbsp;location&nbsp;1760</a><form action="/user_annotation_relation/delete_highlight" class="deleteHighlightForm" method="post"><div style="margin:0;padding:0"><input name="authenticity_token" type="hidden" value="14ca6ff90bf02b35e8adbdd9b97e969f8260e02b" /></div><input id="asin" name="asin" type="hidden" value="B005GSYXU4" /><input id="annotation_id" name="annotation_id" type="hidden" value="a116BFDC9Y0UEA" /><span class="deleteHighlight"><button class="textSubmit" name="delete" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Delete&nbsp;this&nbsp;highlight</span></button></span><span class="deleteHighlightUndo hidden"><button class="textSubmit" name="undo" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Undo&nbsp;deletion</span></button></span></form>
966
+
967
+
968
+
969
+
970
+ <p class="editNote " id="editNotea116BFDC9Y0UEA_">
971
+ <span class="hidden asin">B005GSYXU4</span>
972
+ <span class="hidden annotation_id"></span>
973
+ <span class="hidden end_location">264099</span>
974
+ <span class="yourNote hidden">
975
+ Note:
976
+ </span>
977
+ <span class="noteContent"></span>
978
+
979
+
980
+ <a href="/user_annotation_relation/edit_note_popup?annotation_id=&amp;asin=B005GSYXU4&amp;attached=a116BFDC9Y0UEA&amp;end_location=264099&amp;note_area_id=editNotea116BFDC9Y0UEA_&amp;note_text=&amp;return_to=%2Fyour_highlights" class="addEditNote">Add a note</a>
981
+
982
+ </p>
983
+
984
+
985
+ </div>
986
+ <div class="highlightRow yourHighlight">
987
+
988
+ <span class="highlight">Pure Contour Drawing is so effective at producing this strong cognitive shift that some artists routinely begin work with a short session of this or some similar practice, in order to start the process of entering working mode.</span><a href="kindle://book?action=open&asin=B005GSYXU4&location=1802" class="k4pcReadMore readMore linkOut">Read&nbsp;more&nbsp;at&nbsp;location&nbsp;1802</a><form action="/user_annotation_relation/delete_highlight" class="deleteHighlightForm" method="post"><div style="margin:0;padding:0"><input name="authenticity_token" type="hidden" value="14ca6ff90bf02b35e8adbdd9b97e969f8260e02b" /></div><input id="asin" name="asin" type="hidden" value="B005GSYXU4" /><input id="annotation_id" name="annotation_id" type="hidden" value="aWIBKV7T4RCBT" /><span class="deleteHighlight"><button class="textSubmit" name="delete" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Delete&nbsp;this&nbsp;highlight</span></button></span><span class="deleteHighlightUndo hidden"><button class="textSubmit" name="undo" type="submit"><span class="bullet">&nbsp;&nbsp;&nbsp;&#8226;&nbsp;</span><span class="underline">Undo&nbsp;deletion</span></button></span></form>
989
+
990
+
991
+
992
+
993
+ <p class="editNote " id="editNoteaWIBKV7T4RCBT_">
994
+ <span class="hidden asin">B005GSYXU4</span>
995
+ <span class="hidden annotation_id"></span>
996
+ <span class="hidden end_location">270507</span>
997
+ <span class="yourNote hidden">
998
+ Note:
999
+ </span>
1000
+ <span class="noteContent"></span>
1001
+
1002
+
1003
+ <a href="/user_annotation_relation/edit_note_popup?annotation_id=&amp;asin=B005GSYXU4&amp;attached=aWIBKV7T4RCBT&amp;end_location=270507&amp;note_area_id=editNoteaWIBKV7T4RCBT_&amp;note_text=&amp;return_to=%2Fyour_highlights" class="addEditNote">Add a note</a>
1004
+
1005
+ </p>
1006
+
1007
+
1008
+ </div>
1009
+
1010
+
1011
+ </div>
1012
+
1013
+ <div id="stillLoadingBooks" class="hidden">
1014
+ <img alt="Loading..." src="https://images-na.ssl-images-amazon.com/images/G/01/reading/images/loadIndicator-label._V379390748_.gif" />
1015
+ </div>
1016
+ <a href="/your_highlights?current_offset=25&amp;upcoming_asins%5B%5D=B000FBJG4U&amp;upcoming_asins%5B%5D=B0081AKCGS&amp;used_asins%5B%5D=B005GSYXU4" id="nextBookLink">Next Book</a>
1017
+
1018
+
1019
+ </div>
1020
+ </div>
1021
+ </div>
1022
+ <div id="footer">
1023
+ <div class="footerLeft">&copy; 2013, <a href="http://www.amazon.com/">Amazon.com</a>, Inc. or its affiliates</div>
1024
+ <div class="footerRight">
1025
+ <a href="https://kindle.amazon.com/privacy">Privacy Notice</a> <span class="welcomeDots">&middot;</span>
1026
+ <a href="https://kindle.amazon.com/conditions_of_use">Conditions of Use</a>
1027
+ </div>
1028
+ </div>
1029
+
1030
+ <script type="text/javascript">
1031
+ //<![CDATA[
1032
+
1033
+ var AUTH_TOKEN = "14ca6ff90bf02b35e8adbdd9b97e969f8260e02b";
1034
+
1035
+ //]]>
1036
+ </script>
1037
+ <script src="https://images-na.ssl-images-amazon.com/images/G/01/javascripts/lib/jquery/jquery-1.2.6.min.js" type="text/javascript"></script>
1038
+ <script src="https://images-na.ssl-images-amazon.com/images/G/01/browser-scripts/amazonJQ/amazonJQ-debug-981618277.js.js" type="text/javascript"></script>
1039
+ <script>
1040
+ /* reset window.$ since amznJQ clears it out with noConflict(). */
1041
+ window.$=amznJQ.jQuery||window.jQuery;
1042
+ </script>
1043
+ <script src="https://images-na.ssl-images-amazon.com/images/G/01/reading/javascripts/libraries._V379391573_.js" type="text/javascript"></script>
1044
+ <script src="https://images-na.ssl-images-amazon.com/images/G/01/nav2/gamma/amazonShoveler/amazonShoveler-amazonShoveler-61946.js" type="text/javascript"></script>
1045
+ <script src="https://images-na.ssl-images-amazon.com/images/G/01/nav2/gamma/amazonJQ/amazonJQ-amzPopover-30626.js" type="text/javascript"></script>
1046
+ <script src="https://kindleweb.s3.amazonaws.com/app/KindleReader-min.js" type="text/javascript"></script>
1047
+ <script src="https://images-na.ssl-images-amazon.com/images/G/01/reading/javascripts/site._V377639441_.js" type="text/javascript"></script>
1048
+
1049
+
1050
+
1051
+
1052
+ </div>
1053
+ </body>
1054
+ </html>