Skip to content

Commit 4ac72b8

Browse files
committed
working on what full stack means page
1 parent e73437f commit 4ac72b8

File tree

4 files changed

+47
-30
lines changed

4 files changed

+47
-30
lines changed

all.html

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4552,17 +4552,23 @@ <h1>What "full stack" means</h1>
45524552
<p>The terms "full stack" and "Full Stack Python" are ambiguous but I am using
45534553
a specific definition here on this site. These term can be defined for a
45544554
web stack either to mean</p>
4555-
<ul>
4556-
<li>Python code interacts with code written in other languages such as C and
4557-
JavaScript to provide a complete web stack</li>
4558-
</ul>
4559-
<p>or</p>
4560-
<ul>
4561-
<li>Every layer, from the machine code up to the browser, are written in Python </li>
4562-
</ul>
4563-
<p>I named this site for the first definition. Python is just one language among
4564-
many that allows our computers to execute software and communicate with each
4565-
other. </p>
4555+
<ol>
4556+
<li>
4557+
<p>Every layer, from the machine code up to the browser, are written in Python </p>
4558+
</li>
4559+
<li>
4560+
<p>Python code interacts with code written in other languages such as C and
4561+
JavaScript to provide a complete web stack</p>
4562+
</li>
4563+
</ol>
4564+
<p>I named this site specifically for the second definition: Python is one
4565+
programming language among many that are used to build your application
4566+
stack. </p>
4567+
<p>Some folks took the title of the site to mean Python runs everything from
4568+
the web browser on down. That's simply not practical or possible. While Python
4569+
is an amazing programming language, there are many tasks it does not do well.</p>
4570+
<p>Python is just one language among many that allows our computers to execute
4571+
software and communicate with each other. </p>
45664572
<p>For beginners, learning the syntax and libraries in Python necessary to
45674573
build a web application or web API is a major undertaking. Even intermediate
45684574
and advanced Python software developers need to constantly program and learn

feeds/all.atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2014-12-24T18:09:25Z</updated></feed>
2+
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2014-12-24T18:14:27Z</updated></feed>

source/content/pages/11-misc/1106-what-full-stack-means.markdown

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,21 @@ The terms "full stack" and "Full Stack Python" are ambiguous but I am using
2121
a specific definition here on this site. These term can be defined for a
2222
web stack either to mean
2323

24-
* Python code interacts with code written in other languages such as C and
25-
JavaScript to provide a complete web stack
24+
1. Every layer, from the machine code up to the browser, are written in Python
2625

27-
or
26+
1. Python code interacts with code written in other languages such as C and
27+
JavaScript to provide a complete web stack
2828

29-
* Every layer, from the machine code up to the browser, are written in Python
29+
I named this site specifically for the second definition: Python is one
30+
programming language among many that are used to build your application
31+
stack.
3032

31-
I named this site for the first definition. Python is just one language among
32-
many that allows our computers to execute software and communicate with each
33-
other.
33+
Some folks took the title of the site to mean Python runs everything from
34+
the web browser on down. That's simply not practical or possible. While Python
35+
is an amazing programming language, there are many tasks it does not do well.
36+
37+
Python is just one language among many that allows our computers to execute
38+
software and communicate with each other.
3439

3540
For beginners, learning the syntax and libraries in Python necessary to
3641
build a web application or web API is a major undertaking. Even intermediate

what-full-stack-means.html

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,23 @@ <h1>What "full stack" means</h1>
4242
<p>The terms "full stack" and "Full Stack Python" are ambiguous but I am using
4343
a specific definition here on this site. These term can be defined for a
4444
web stack either to mean</p>
45-
<ul>
46-
<li>Python code interacts with code written in other languages such as C and
47-
JavaScript to provide a complete web stack</li>
48-
</ul>
49-
<p>or</p>
50-
<ul>
51-
<li>Every layer, from the machine code up to the browser, are written in Python </li>
52-
</ul>
53-
<p>I named this site for the first definition. Python is just one language among
54-
many that allows our computers to execute software and communicate with each
55-
other. </p>
45+
<ol>
46+
<li>
47+
<p>Every layer, from the machine code up to the browser, are written in Python </p>
48+
</li>
49+
<li>
50+
<p>Python code interacts with code written in other languages such as C and
51+
JavaScript to provide a complete web stack</p>
52+
</li>
53+
</ol>
54+
<p>I named this site specifically for the second definition: Python is one
55+
programming language among many that are used to build your application
56+
stack. </p>
57+
<p>Some folks took the title of the site to mean Python runs everything from
58+
the web browser on down. That's simply not practical or possible. While Python
59+
is an amazing programming language, there are many tasks it does not do well.</p>
60+
<p>Python is just one language among many that allows our computers to execute
61+
software and communicate with each other. </p>
5662
<p>For beginners, learning the syntax and libraries in Python necessary to
5763
build a web application or web API is a major undertaking. Even intermediate
5864
and advanced Python software developers need to constantly program and learn

0 commit comments

Comments
 (0)