Skip to content

Commit 95e1ec7

Browse files
committed
adding new websockets resource and updating change log
1 parent 271e235 commit 95e1ec7

File tree

6 files changed

+39
-13
lines changed

6 files changed

+39
-13
lines changed

all.html

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4370,6 +4370,9 @@ <h1>Change Log</h1>
43704370
<h2>2015</h2>
43714371
<h3>January</h3>
43724372
<ul>
4373+
<li>Working on a <a href="/why-use-python.html">Why Use Python?</a> page with my own
4374+
assessment of the strengths and weaknesses of Python along with links to
4375+
resources where other folks discuss their own experiences.</li>
43734376
<li>Continuing to add WebSockets resources, especially Python-specific ones.</li>
43744377
<li>Added a new separate page for the <a href="/morepath.html">Morepath framework</a>.</li>
43754378
<li>Updated the <a href="/future-directions.html">future directions</a> page for 2015.</li>
@@ -4805,16 +4808,22 @@ <h2>General WebSockets resources</h2>
48054808
of the more beginner-friendly resources list below.</p>
48064809
</li>
48074810
<li>
4808-
<p>Mozilla's
4809-
<a href="https://developer.mozilla.org/en-US/docs/WebSockets">Developer Resources for WebSockets</a>
4810-
is a good place to find documentation and tools for developing with
4811-
WebSockets.</p>
4811+
<p><a href="http://lucumr.pocoo.org/2012/9/24/websockets-101/">WebSockets 101</a> by
4812+
Armin Ronacher provides a detailed assessment of the subpar state of HTTP
4813+
proxying in regards to WebSockets. He also discusses the complexities of
4814+
the WebSockets protocol including the packet implementation.</p>
48124815
</li>
48134816
<li>
48144817
<p>The "Can I Use?" website has a
48154818
<a href="http://caniuse.com/#feat=websockets">handy WebSockets reference chart</a>
48164819
for which web browsers and specific versions support WebSockets.</p>
48174820
</li>
4821+
<li>
4822+
<p>Mozilla's
4823+
<a href="https://developer.mozilla.org/en-US/docs/WebSockets">Developer Resources for WebSockets</a>
4824+
is a good place to find documentation and tools for developing with
4825+
WebSockets.</p>
4826+
</li>
48184827
</ul>
48194828
<h2>Python-specific WebSockets resources</h2>
48204829
<ul>

change-log.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@ <h1>Change Log</h1>
4646
<h2>2015</h2>
4747
<h3>January</h3>
4848
<ul>
49+
<li>Working on a <a href="/why-use-python.html">Why Use Python?</a> page with my own
50+
assessment of the strengths and weaknesses of Python along with links to
51+
resources where other folks discuss their own experiences.</li>
4952
<li>Continuing to add WebSockets resources, especially Python-specific ones.</li>
5053
<li>Added a new separate page for the <a href="/morepath.html">Morepath framework</a>.</li>
5154
<li>Updated the <a href="/future-directions.html">future directions</a> page for 2015.</li>

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>2015-01-09T10:20:06Z</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>2015-01-09T12:42:48Z</updated></feed>

source/content/pages/11-misc/1104-change-log.markdown

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ the
2424

2525
## 2015
2626
### January
27+
* Working on a [Why Use Python?](/why-use-python.html) page with my own
28+
assessment of the strengths and weaknesses of Python along with links to
29+
resources where other folks discuss their own experiences.
2730
* Continuing to add WebSockets resources, especially Python-specific ones.
2831
* Added a new separate page for the [Morepath framework](/morepath.html).
2932
* Updated the [future directions](/future-directions.html) page for 2015.

source/content/pages/12-next/1201-websockets.markdown

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,15 +70,20 @@ configuration properly.
7070
concepts. I recommend reading the working draft after looking through some
7171
of the more beginner-friendly resources list below.
7272

73-
* Mozilla's
74-
[Developer Resources for WebSockets](https://developer.mozilla.org/en-US/docs/WebSockets)
75-
is a good place to find documentation and tools for developing with
76-
WebSockets.
73+
* [WebSockets 101](http://lucumr.pocoo.org/2012/9/24/websockets-101/) by
74+
Armin Ronacher provides a detailed assessment of the subpar state of HTTP
75+
proxying in regards to WebSockets. He also discusses the complexities of
76+
the WebSockets protocol including the packet implementation.
7777

7878
* The "Can I Use?" website has a
7979
[handy WebSockets reference chart](http://caniuse.com/#feat=websockets)
8080
for which web browsers and specific versions support WebSockets.
8181

82+
* Mozilla's
83+
[Developer Resources for WebSockets](https://developer.mozilla.org/en-US/docs/WebSockets)
84+
is a good place to find documentation and tools for developing with
85+
WebSockets.
86+
8287

8388
## Python-specific WebSockets resources
8489
* [Real-time in Python](http://mrjoes.github.io/2013/06/21/python-realtime.html)

websockets.html

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,16 +96,22 @@ <h2>General WebSockets resources</h2>
9696
of the more beginner-friendly resources list below.</p>
9797
</li>
9898
<li>
99-
<p>Mozilla's
100-
<a href="https://developer.mozilla.org/en-US/docs/WebSockets">Developer Resources for WebSockets</a>
101-
is a good place to find documentation and tools for developing with
102-
WebSockets.</p>
99+
<p><a href="http://lucumr.pocoo.org/2012/9/24/websockets-101/">WebSockets 101</a> by
100+
Armin Ronacher provides a detailed assessment of the subpar state of HTTP
101+
proxying in regards to WebSockets. He also discusses the complexities of
102+
the WebSockets protocol including the packet implementation.</p>
103103
</li>
104104
<li>
105105
<p>The "Can I Use?" website has a
106106
<a href="http://caniuse.com/#feat=websockets">handy WebSockets reference chart</a>
107107
for which web browsers and specific versions support WebSockets.</p>
108108
</li>
109+
<li>
110+
<p>Mozilla's
111+
<a href="https://developer.mozilla.org/en-US/docs/WebSockets">Developer Resources for WebSockets</a>
112+
is a good place to find documentation and tools for developing with
113+
WebSockets.</p>
114+
</li>
109115
</ul>
110116
<h2>Python-specific WebSockets resources</h2>
111117
<ul>

0 commit comments

Comments
 (0)