Skip to content

Commit 9ae17ad

Browse files
committed
Fix http -> https where applicable
1 parent 0470262 commit 9ae17ad

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

en/css/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Time to write some CSS! Open up the `blog/static/css/blog.css` file in your code
7070
We won't be going too deep into customizing and learning about CSS here. There is a recommendation for a free CSS course at the end of this page if you would like to learn more.
7171

7272
But let's do at least a little. Maybe we could change the color of our headers?
73-
To understand colors, computers use special codes. These codes start with `#` followed by 6 letters (A–F) and numbers (0–9). For example, the code for blue is `#0000FF`. You can find the color codes for many colors here: http://www.colorpicker.com/. You may also use predefined [named colors](https://developer.mozilla.org/en-US/docs/Web/CSS/named-color), such as `red` and `green`.
73+
To understand colors, computers use special codes. These codes start with `#` followed by 6 letters (A–F) and numbers (0–9). For example, the code for blue is `#0000FF`. You can find the color codes for many colors here: https://www.colorpicker.com/. You may also use predefined [named colors](https://developer.mozilla.org/en-US/docs/Web/CSS/named-color), such as `red` and `green`.
7474

7575

7676
In your `blog/static/css/blog.css` file you should add the following code:

en/deploy/pythonanywhere.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,6 @@ If you see an error while running the `pa_autoconfigure_django.py` script, here
8383

8484
If you see an error when you try to visit your site, the first place to look for some debugging info is in your **error log**. You'll find a link to this on the PythonAnywhere ["Web" page](https://www.pythonanywhere.com/web_app_setup/). See if there are any error messages in there; the most recent ones are at the bottom.
8585

86-
There are also some [general debugging tips on the PythonAnywhere help site](http://help.pythonanywhere.com/pages/DebuggingImportError).
86+
There are also some [general debugging tips on the PythonAnywhere help site](https://help.pythonanywhere.com/pages/DebuggingImportError).
8787

8888
And remember, your coach is here to help!

en/django_installation/instructions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ C:\Users\Name\djangogirls> myvenv\Scripts\activate
125125
>```
126126
>C:\WINDOWS\system32> Set-ExecutionPolicy -ExecutionPolicy RemoteSigned
127127
> Execution Policy Change
128-
> The execution policy helps protect you from scripts that you do not trust. Changing the execution policy might expose you to the security risks described in the about_Execution_Policies help topic at http://go.microsoft.com/fwlink/?LinkID=135170. Do you want to change the execution policy? [Y] Yes [A] Yes to All [N] No [L] No to All [S] Suspend [?] Help (default is "N"): A
128+
> The execution policy helps protect you from scripts that you do not trust. Changing the execution policy might expose you to the security risks described in the about_Execution_Policies help topic at https://go.microsoft.com/fwlink/?LinkID=135170. Do you want to change the execution policy? [Y] Yes [A] Yes to All [N] No [L] No to All [S] Suspend [?] Help (default is "N"): A
129129
>```
130130
131131
<!-- (This comment separates the two blockquote blocks, so that GitBook and Crowdin don't merge them into a single block.) -->

en/how_the_internet_works/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
> For readers at home: this chapter is covered in the [How the Internet Works](https://www.youtube.com/watch?v=oM9yAA09wdc) video.
44
5-
> This chapter is inspired by the talk "How the Internet works" by Jessica McKellar (http://web.mit.edu/jesstess/www/).
5+
> This chapter is inspired by the talk "How the Internet works" by Jessica McKellar (https://web.mit.edu/jesstess/www/).
66
77
We bet you use the Internet every day. But do you actually know what happens when you type an address like https://djangogirls.org into your browser and press `enter`?
88

@@ -21,7 +21,7 @@ We drew you a picture! It looks like this:
2121

2222
![Figure 1.1](images/internet_1.png)
2323

24-
Looks like a mess, right? In fact it is a network of connected machines (the above-mentioned *servers*). Hundreds of thousands of machines! Many, many kilometers of cables around the world! You can visit a Submarine Cable Map website (http://submarinecablemap.com) to see how complicated the net is. Here is a screenshot from the website:
24+
Looks like a mess, right? In fact it is a network of connected machines (the above-mentioned *servers*). Hundreds of thousands of machines! Many, many kilometers of cables around the world! You can visit a Submarine Cable Map website (https://submarinecablemap.com) to see how complicated the net is. Here is a screenshot from the website:
2525

2626
![Figure 1.2](images/internet_3.png)
2727

en/intro_to_command_line/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ rmdir /S | rm -r | delete a directory | **rm
438438

439439
These are just a very few of the commands you can run in your command line, but you're not going to use anything more than that today.
440440

441-
If you're curious, [ss64.com](http://ss64.com) contains a complete reference of commands for all operating systems.
441+
If you're curious, [ss64.com](https://ss64.com) contains a complete reference of commands for all operating systems.
442442

443443
## Ready?
444444

en/whats_next/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Congratulate yourself! __You're totally awesome__. We're proud! <3
66

77
Take a break and relax! You have just done something really huge.
88

9-
After that, make sure to follow Django Girls on [Facebook](http://facebook.com/djangogirls) or [Twitter](https://twitter.com/djangogirls) to stay up to date.
9+
After that, make sure to follow Django Girls on [Facebook](https://facebook.com/djangogirls) or [Twitter](https://twitter.com/djangogirls) to stay up to date.
1010

1111
### Can you recommend any further resources?
1212

@@ -15,7 +15,7 @@ Yes! There are a _lot_ of resources online for learning all kinds of programming
1515
#### Django
1616
- Our other book, [Django Girls Tutorial: Extensions](https://tutorial-extensions.djangogirls.org/)
1717
- [Django's official tutorial](https://docs.djangoproject.com/en/5.1/intro/tutorial01/)
18-
- [Getting Started With Django video lessons](http://www.gettingstartedwithdjango.com/)
18+
- [Getting Started With Django video lessons](https://thekennethlove.com/videos/)
1919
- [Django for Everybody Specialization](https://www.coursera.org/specializations/django) – some video lectures can be audited for free and you can earn a Coursera Certificate by taking these courses
2020

2121

@@ -26,7 +26,7 @@ Yes! There are a _lot_ of resources online for learning all kinds of programming
2626
#### Python
2727
- [Codecademy's Python course](https://www.codecademy.com/learn/learn-python)
2828
- [Google's Python course](https://developers.google.com/edu/python/)
29-
- [Learn Python The Hard Way book](http://learnpythonthehardway.org/book/) – the initial exercises are free
29+
- [Learn Python The Hard Way book](https://learnpythonthehardway.org/book/) – the initial exercises are free
3030
- [New Coder tutorials](http://newcoder.io/tutorials/) – this is a variety of practical examples of how you might use Python
3131
- [edX](https://www.edx.org/course?search_query=python) – you can audit most courses for free, but if you want a certificate or credits towards a higher education qualification then that will cost money
3232
- [Coursera's Python specialization](https://www.coursera.org/specializations/python) – some video lectures can be audited for free and you can earn a Coursera Certificate by taking these courses

0 commit comments

Comments
 (0)