Skip to content

Commit e3d672e

Browse files
committed
fixing typo and some additional broken links
1 parent 85e98bc commit e3d672e

File tree

6 files changed

+4
-30
lines changed

6 files changed

+4
-30
lines changed

content/pages/01-introduction/03-why-use-python.markdown

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,7 @@ The IEEE ranked Python as the
3333
[#1 programming language in 2019](https://spectrum.ieee.org/computing/software/the-top-programming-languages-2019),
3434
which continued its hot streak
3535
after ranking it
36-
[#1 in 2018](https://spectrum.ieee.org/at-work/innovation/the-2018-top-programming-languages),
37-
[#1 in 2017](https://spectrum.ieee.org/at-work/innovation/the-2017-top-programming-languages)
38-
and
39-
[#3 top programming language in 2016](http://spectrum.ieee.org/computing/software/the-2016-top-programming-languages).
36+
[#1 in 2018](https://spectrum.ieee.org/at-work/innovation/the-2018-top-programming-languages) and 2017.
4037
[RedMonk's June 2019 ranking](https://redmonk.com/sogrady/2019/07/18/language-rankings-6-19/)
4138
had Python at #3, which held consistent from previous years' rankings in
4239
[2018](https://redmonk.com/sogrady/2018/08/10/language-rankings-6-18/)

content/pages/01-introduction/08-best-python-resources.markdown

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -47,23 +47,13 @@ should skip down to the next section for "experienced developers".
4747
and problems rather than jumping into a specific language that's recommended
4848
to you by a friend.
4949

50-
* [A Python Crash Course](https://www.grahamwheeler.com/posts/python-crash-course.html)
51-
gives an awesome overview of the history of Python, what drives the
52-
programming community and dives into example code. You will likely need
53-
to read this in combination with other resources to really let the syntax
54-
sink in, but it's a great article to read several times over as you
55-
continue to learn.
56-
5750
* The [Python projects tag](https://www.twilio.com/blog/tag/python) on the
5851
Twilio blog is constantly updated with fun tutorials you can build to
5952
learn Python, such as the
6053
[International Space Station Tracker with Flask and Redis-Queue](https://www.twilio.com/blog/2015/11/international-space-station-notifications-with-python-redis-queue-and-twilio-copilot.html),
6154
[Choose Your Own Adventures Presentations using Flask and WebSockets](https://www.twilio.com/blog/2014/11/choose-your-own-adventure-presentations-with-reveal-js-python-and-websockets.html)
6255
and [Martianify Photos with OpenCV](https://www.twilio.com/blog/2015/11/getting-started-with-opencv-and-python-featuring-the-martian-2.html).
6356

64-
* [A Byte of Python](http://www.swaroopch.com/notes/python/) is a beginner's
65-
tutorial for the Python language.
66-
6757
* Google put together a great compilation of materials and subjects you
6858
should read and learn from if you want to be a
6959
[professional programmer](https://www.google.com/about/careers/students/guide-to-technical-development.html).

content/pages/04-web-development/28-celery.markdown

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,3 @@ right configuration settings in place.
186186
is a short post with the minimal code for running the Celery daemon and
187187
Celerybeat as system services on Linux.
188188

189-
190-
* [Three quick tips from two years with Celery](https://library.launchkit.io/three-quick-tips-from-two-years-with-celery-c05ff9d7f9eb)
191-
provides some solid advice on retry delays, the `-Ofair` flag and global
192-
task timeouts for Celery.

content/pages/05-deployment/04-cdns.markdown

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,6 @@ servers to improve web app loading speed.
1212

1313

1414
### CDN resources
15-
* [Mastering HTTP Caching](https://blog.fortrabbit.com/mastering-http-caching)
16-
is a fantastic post that goes into great technical detail on how CDNs and
17-
caching work.
18-
1915
* [The 5 hour CDN](https://fly.io/blog/the-5-hour-content-delivery-network/)
2016
explains the basics of what CDNs are and how they are a combination of
2117
many standard web server components, but used globally and at scale.

content/pages/06-devops/11-caching.markdown

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,6 @@ A cache can be created for multiple layers of the stack.
5454
covers monitoring, tuning and scaling for the very high scale
5555
[Reddit.com](https://www.reddit.com/) website.
5656

57-
* [Mastering HTTP caching](https://blog.fortrabbit.com/mastering-http-caching)
58-
provides more advanced advice on caching dynamic as well as static
59-
content via CDNs and other configurations.
60-
6157

6258

6359
## Caching learning checklist

content/posts/210823-performance-monitoring-aws-lambda-sentry.markdown

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ slug: application-performance-monitoring-aws-lambda-functions-sentry
33
meta: Learn how to use Sentry Application Performance Monitoring on AWS Lambda.
44
category: post
55
date: 2021-08-23
6-
modified: 2021-08-25
6+
modified: 2021-08-26
77
newsletter: False
88
headerimage: /img/headers/python-lambda-sentry.jpg
99
headeralt: The Python, AWS Lambda and Sentry logos are copyright their respective owners.
@@ -194,10 +194,9 @@ and the value of the DSN string that you copied from the Sentry screen.
194194

195195
<img src="/img/210406-python-sentry-aws-lambda/add-env-var.jpg" width="100%" class="shot rnd outl" alt="Add the environment variable in AWS Lambda.">
196196

197-
Click the "Save" button and go back to your Lambda function code.
197+
Click the "Save" button and go back to your Lambda function's code editor.
198198

199-
Update your Lambda function with the following highlighted new lines of code
200-
to send errors to Sentry.
199+
Replace the code in your Lambda function with the following code:
201200

202201
```python
203202
import json

0 commit comments

Comments
 (0)