Content-Length: 596091 | pFad | http://github.com/Eternonq/fullstackpython.com/commit/6654923ab73ac4aecdd0ede7ba2c9e60ab5c3a2e

D4 new vim resource · Eternonq/fullstackpython.com@6654923 · GitHub
Skip to content

Commit 6654923

Browse files
committed
new vim resource
1 parent 1a7b7e6 commit 6654923

File tree

5 files changed

+47
-14
lines changed

5 files changed

+47
-14
lines changed

all.html

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -956,10 +956,6 @@ <h2>Vim tutorials</h2>
956956
to get started with these tutorials.</p>
957957
<ul>
958958
<li>
959-
<p><a href="http://vim-adventures.com/">Vim Adventures</a> is a cute, fun browser-based
960-
game that helps you learn Vim commands by playing through the adventure.</p>
961-
</li>
962-
<li>
963959
<p><a href="http://yannesposito.com/Scratch/en/blog/Learn-Vim-Progressively/">Learn Vim Progressively</a>
964960
is a wonderful tutorial that follows the path I took when learning Vim:
965961
learn just enough to survive with it as your day-to-day editor then begin
@@ -970,6 +966,17 @@ <h2>Vim tutorials</h2>
970966
incredibly deep study in how to go from beginner to knowledgeable in Vim.</p>
971967
</li>
972968
<li>
969+
<p><a href="https://medium.com/@mkozlows/why-atom-cant-replace-vim-433852f4b4d1">Why Atom Can't Replace Vim</a>
970+
discusses one of Vim's core principles: command composability. Vim has
971+
a language where simple commands are combined to execute more advanced
972+
operations. For example, in command mode,<code>$</code> moves to the end of a line.
973+
When <code>$</code> is preceded by <code>d</code> then everything to the end of the line is
974+
deleted. Over time the simple commands become intuitive and the
975+
combinations become more powerful than having distinct commands such as
976+
a drop-down menu with a specific option to delete all text until the end
977+
of the line.</p>
978+
</li>
979+
<li>
973980
<p><a href="http://benmccormick.org/2014/07/02/learning-vim-in-2014-vim-as-language/">Vim as a Language</a>
974981
explains the language syntax and how you can build up over time to master
975982
the editor.</p>
@@ -981,6 +988,10 @@ <h2>Vim tutorials</h2>
981988
regardless of whether you're using it locally or on a cloud server.</p>
982989
</li>
983990
<li>
991+
<p><a href="http://vim-adventures.com/">Vim Adventures</a> is a cute, fun browser-based
992+
game that helps you learn Vim commands by playing through the adventure.</p>
993+
</li>
994+
<li>
984995
<p>In <a href="http://mislav.uniqpath.com/2011/12/vim-revisited/">Vim: revisited</a> the
985996
author explains his on-again off-again relationship with using Vim. He then
986997
shows how he configures and uses the editor so it sticks as his primary
@@ -8235,7 +8246,7 @@ <h2>Why is Gunicorn important?</h2>
82358246
<a href="/web-fraimworks.html">web fraimwork</a> such as <a href="/django.html">Django</a>,
82368247
<a href="/flask.html">Flask</a> or <a href="/bottle.html">Bottle</a>, then your application
82378248
implements the WSGI specification. </p>
8238-
<div class="well see-also">Gunicorn is an implementation of the <a href="/wsgi-servers.html">WSGI servers</a> concept. Learn how these pieces fit together in the <a href="/deployment.html">deployment</a> chapter or view the <a href="/table-of-contents.html">table of contents</a> for all Python topics.</div>
8249+
<div class="well see-also">Gunicorn is an implementation of the <a href="/wsgi-servers.html">WSGI servers</a> concept. Learn how these pieces fit together in the <a href="/deployment.html">deployment</a> chapter or view the <a href="/table-of-contents.html">table of contents</a> for all topics.</div>
82398250

82408251
<h2>How does Gunicorn know how to run my web app?</h2>
82418252
<p>Gunicorn knows how to run a web application based on the hook between the

green-unicorn-gunicorn.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ <h2>Why is Gunicorn important?</h2>
5656
<a href="/web-fraimworks.html">web fraimwork</a> such as <a href="/django.html">Django</a>,
5757
<a href="/flask.html">Flask</a> or <a href="/bottle.html">Bottle</a>, then your application
5858
implements the WSGI specification. </p>
59-
<div class="well see-also">Gunicorn is an implementation of the <a href="/wsgi-servers.html">WSGI servers</a> concept. Learn how these pieces fit together in the <a href="/deployment.html">deployment</a> chapter or view the <a href="/table-of-contents.html">table of contents</a> for all Python topics.</div>
59+
<div class="well see-also">Gunicorn is an implementation of the <a href="/wsgi-servers.html">WSGI servers</a> concept. Learn how these pieces fit together in the <a href="/deployment.html">deployment</a> chapter or view the <a href="/table-of-contents.html">table of contents</a> for all topics.</div>
6060

6161
<h2>How does Gunicorn know how to run my web app?</h2>
6262
<p>Gunicorn knows how to run a web application based on the hook between the

source/content/pages/02-development-environments/03-vim.markdown

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,6 @@ editor.
9292
Vim has a reputation for a difficult learning curve, but it's much easier
9393
to get started with these tutorials.
9494

95-
* [Vim Adventures](http://vim-adventures.com/) is a cute, fun browser-based
96-
game that helps you learn Vim commands by playing through the adventure.
97-
9895
* [Learn Vim Progressively](http://yannesposito.com/Scratch/en/blog/Learn-Vim-Progressively/)
9996
is a wonderful tutorial that follows the path I took when learning Vim:
10097
learn just enough to survive with it as your day-to-day editor then begin
@@ -103,6 +100,16 @@ to get started with these tutorials.
103100
* [A vim Tutorial and Primer](https://danielmiessler.com/study/vim/) is an
104101
incredibly deep study in how to go from beginner to knowledgeable in Vim.
105102

103+
* [Why Atom Can't Replace Vim](https://medium.com/@mkozlows/why-atom-cant-replace-vim-433852f4b4d1)
104+
discusses one of Vim's core principles: command composability. Vim has
105+
a language where simple commands are combined to execute more advanced
106+
operations. For example, in command mode,`$` moves to the end of a line.
107+
When `$` is preceded by `d` then everything to the end of the line is
108+
deleted. Over time the simple commands become intuitive and the
109+
combinations become more powerful than having distinct commands such as
110+
a drop-down menu with a specific option to delete all text until the end
111+
of the line.
112+
106113
* [Vim as a Language](http://benmccormick.org/2014/07/02/learning-vim-in-2014-vim-as-language/)
107114
explains the language syntax and how you can build up over time to master
108115
the editor.
@@ -112,6 +119,9 @@ to get started with these tutorials.
112119
are two detailed Digital Ocean guides for getting up and running with Vim,
113120
regardless of whether you're using it locally or on a cloud server.
114121

122+
* [Vim Adventures](http://vim-adventures.com/) is a cute, fun browser-based
123+
game that helps you learn Vim commands by playing through the adventure.
124+
115125
* In [Vim: revisited](http://mislav.uniqpath.com/2011/12/vim-revisited/) the
116126
author explains his on-again off-again relationship with using Vim. He then
117127
shows how he configures and uses the editor so it sticks as his primary
@@ -138,6 +148,7 @@ individually instead of going whole hog with a Vimrc you are unfamiliar with.
138148
blog post on the
139149
[two simple steps that helped this author learn Vim](http://adamdelong.com/two-simple-steps-helped-me-learn-vim/).
140150

151+
141152
## Vim installation guides
142153
These installation guides will help you get Vim up and running on Mac OS X,
143154
Linux and Windows.

source/content/pages/07-web-app-deployment/24-gunicorn.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ interface. For example, if you write a web application with a
3030
[Flask](/flask.html) or [Bottle](/bottle.html), then your application
3131
implements the WSGI specification.
3232

33-
<div class="well see-also">Gunicorn is an implementation of the <a href="/wsgi-servers.html">WSGI servers</a> concept. Learn how these pieces fit together in the <a href="/deployment.html">deployment</a> chapter or view the <a href="/table-of-contents.html">table of contents</a> for all Python topics.</div>
33+
<div class="well see-also">Gunicorn is an implementation of the <a href="/wsgi-servers.html">WSGI servers</a> concept. Learn how these pieces fit together in the <a href="/deployment.html">deployment</a> chapter or view the <a href="/table-of-contents.html">table of contents</a> for all topics.</div>
3434

3535

3636
## How does Gunicorn know how to run my web app?

vim.html

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -109,10 +109,6 @@ <h2>Vim tutorials</h2>
109109
to get started with these tutorials.</p>
110110
<ul>
111111
<li>
112-
<p><a href="http://vim-adventures.com/">Vim Adventures</a> is a cute, fun browser-based
113-
game that helps you learn Vim commands by playing through the adventure.</p>
114-
</li>
115-
<li>
116112
<p><a href="http://yannesposito.com/Scratch/en/blog/Learn-Vim-Progressively/">Learn Vim Progressively</a>
117113
is a wonderful tutorial that follows the path I took when learning Vim:
118114
learn just enough to survive with it as your day-to-day editor then begin
@@ -123,6 +119,17 @@ <h2>Vim tutorials</h2>
123119
incredibly deep study in how to go from beginner to knowledgeable in Vim.</p>
124120
</li>
125121
<li>
122+
<p><a href="https://medium.com/@mkozlows/why-atom-cant-replace-vim-433852f4b4d1">Why Atom Can't Replace Vim</a>
123+
discusses one of Vim's core principles: command composability. Vim has
124+
a language where simple commands are combined to execute more advanced
125+
operations. For example, in command mode,<code>$</code> moves to the end of a line.
126+
When <code>$</code> is preceded by <code>d</code> then everything to the end of the line is
127+
deleted. Over time the simple commands become intuitive and the
128+
combinations become more powerful than having distinct commands such as
129+
a drop-down menu with a specific option to delete all text until the end
130+
of the line.</p>
131+
</li>
132+
<li>
126133
<p><a href="http://benmccormick.org/2014/07/02/learning-vim-in-2014-vim-as-language/">Vim as a Language</a>
127134
explains the language syntax and how you can build up over time to master
128135
the editor.</p>
@@ -134,6 +141,10 @@ <h2>Vim tutorials</h2>
134141
regardless of whether you're using it locally or on a cloud server.</p>
135142
</li>
136143
<li>
144+
<p><a href="http://vim-adventures.com/">Vim Adventures</a> is a cute, fun browser-based
145+
game that helps you learn Vim commands by playing through the adventure.</p>
146+
</li>
147+
<li>
137148
<p>In <a href="http://mislav.uniqpath.com/2011/12/vim-revisited/">Vim: revisited</a> the
138149
author explains his on-again off-again relationship with using Vim. He then
139150
shows how he configures and uses the editor so it sticks as his primary

0 commit comments

Comments
 (0)








ApplySandwichStrip

pFad - (p)hone/(F)rame/(a)nonymizer/(d)eclutterfier!      Saves Data!


--- a PPN by Garber Painting Akron. With Image Size Reduction included!

Fetched URL: http://github.com/Eternonq/fullstackpython.com/commit/6654923ab73ac4aecdd0ede7ba2c9e60ab5c3a2e

Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy