Skip to content

Commit 2c2efee

Browse files
Merge pull request #46 from HackYourFuture-CPH/https
Prefer https over http. Mark some external links as 404 / dead
2 parents eb9a6ab + db23cdc commit 2c2efee

File tree

25 files changed

+35
-35
lines changed

25 files changed

+35
-35
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Editor configuration, see http://editorconfig.org
1+
# Editor configuration, see https://editorconfig.org
22
root = true
33

44
[*]

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ The HackYourFuture programme is subject to CC BY NC SA copyright. This means you
44

55
![Creative Commons License ](https://github.com/user-attachments/assets/912a16ff-b11a-4dcf-9c07-7bdce3d72e64)
66

7-
This work is licensed under a [Creative Commons Attribution 4.0 International License](http://creativecommons.org/licenses/by-nc-sa/4.0/).
7+
This work is licensed under a [Creative Commons Attribution 4.0 International License](https://creativecommons.org/licenses/by-nc-sa/4.0/).

legacy/databases/lesson1/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ game changer, so it’s good for you if you at least know what it is :slightly_s
4242

4343
## Reference Material
4444

45-
- [TutorialsPoint MySQL Introduction](http://www.tutorialspoint.com/mysql/mysql-introduction.htm)
45+
- [TutorialsPoint MySQL Introduction](https://www.tutorialspoint.com/mysql/mysql-introduction.htm)
4646
- [w3schools tutorial (easy to find how specific commands work)](https://www.w3schools.com/sql/default.asp)
4747
- [Official MySQL Documentation](https://dev.mysql.com/doc/refman/8.0/en/)
4848
- [Official MySQL Tutorial (pretty dense)](https://dev.mysql.com/doc/refman/8.0/en/tutorial.html)

legacy/databases/lesson2/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ Objective: the students should be able to build CRUD functionality using SQL sta
66

77
## Pre-Class Readings
88

9-
- [Falsehoods Programmers Believe About Names](http://www.kalzumeus.com/2010/06/17/falsehoods-programmers-believe-about-names/)
9+
- [Falsehoods Programmers Believe About Names](https://www.kalzumeus.com/2010/06/17/falsehoods-programmers-believe-about-names/)
1010
- [What is a Database Foreign Key](https://www.educative.io/blog/what-is-foreign-key-database)
11-
- [Example Entity Relationship Diagram (including associative entities)](http://users.csc.calpoly.edu/~jdalbey/308/Lectures/HOWTO-ERD.html)
11+
- [Example Entity Relationship Diagram (including associative entities)](https://users.csc.calpoly.edu/~jdalbey/308/Lectures/HOWTO-ERD.html)
1212

1313
The students should watch this video before class: <https://youtu.be/9hTKUT_SZWU>
1414

@@ -33,8 +33,8 @@ The students should watch this video before class: <https://youtu.be/9hTKUT_SZWU
3333

3434
## Reference Material
3535

36-
- [Floating Point Inaccuracy](http://stackoverflow.com/questions/2100490/floating-point-inaccuracy-examples#2100502)
37-
- [TutorialsPoint MySQL Introduction](http://www.tutorialspoint.com/mysql/mysql-introduction.htm)
36+
- [Floating Point Inaccuracy](https://stackoverflow.com/questions/2100490/floating-point-inaccuracy-examples#2100502)
37+
- [TutorialsPoint MySQL Introduction](https://www.tutorialspoint.com/mysql/mysql-introduction.htm)
3838
- [w3schools tutorial (easy to find how specific commands work)](https://www.w3schools.com/sql/default.asp)
3939
- [Official MySQL Documentation](https://dev.mysql.com/doc/refman/8.0/en/)
4040

legacy/databases/lesson2/preparation_flipped_classroom.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ Since this is a semi flipped classroom, where you prepare the class during the w
1313

1414
## Readings
1515

16-
- [Falsehoods Programmers Believe About Names](http://www.kalzumeus.com/2010/06/17/falsehoods-programmers-believe-about-names/)
17-
- [What is a Database Foreign Key](http://databases.about.com/cs/specificproducts/g/foreignkey.htm)
16+
- [Falsehoods Programmers Believe About Names](https://www.kalzumeus.com/2010/06/17/falsehoods-programmers-believe-about-names/)
17+
- [What is a Database Foreign Key](http://databases.about.com/cs/specificproducts/g/foreignkey.htm) <!-- http-404 -->
1818

1919
## Exercise before class
2020

legacy/databases/lesson3/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Objective: the students should know how SQL injections happen, and how to define
99
Please read the following pages that explains the ACID database model:
1010

1111
- [ACID Properties with real life examples](https://medium.com/%40tushar.rooks/acid-properties-with-real-life-examples-b83a37667338)
12-
- [Why you should never use MongoDB](http://www.sarahmei.com/blog/2013/11/11/why-you-should-never-use-mongodb)
12+
- [Why you should never use MongoDB](http://www.sarahmei.com/blog/2013/11/11/why-you-should-never-use-mongodb) <!-- no-https -->
1313

1414
Also the students should watch this video: <https://youtu.be/HSt4nlUIF-A>
1515

legacy/databases/lesson3/preparation_flipped_classroom.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ And if you want to experiment more with mongoDB commands, you can check [these t
1818
## Readings
1919

2020
- [ACID Properties with real life examples](https://medium.com/%40tushar.rooks/acid-properties-with-real-life-examples-b83a37667338)
21-
- [Why you should never use MongoDB](http://www.sarahmei.com/blog/2013/11/11/why-you-should-never-use-mongodb)
21+
- [Why you should never use MongoDB](http://www.sarahmei.com/blog/2013/11/11/why-you-should-never-use-mongodb) <!-- no-https -->
2222

2323
## Exercise before class
2424

legacy/git/git1/resources.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ Here are a few resources that might be useful:
44

55
- Git and Github in Plain English, super nice to understand the concepts: <https://blog.red-badger.com/2016/11/29/gitgithub-in-plain-english>
66
- a quick overview of git: <https://guides.github.com/introduction/git-handbook/>;
7-
- a beginner's tutorial: <http://ryanflorence.com/git-for-beginners/>;
8-
- a simple git guide: <http://rogerdudler.github.io/git-guide/>;
7+
- a beginner's tutorial: <http://ryanflorence.com/git-for-beginners/>; <!-- http-404 -->
8+
- a simple git guide: <https://rogerdudler.github.io/git-guide/>;
99
- an interactive tutorial: <https://learngitbranching.js.org/>. The relevant parts for you are in the "Main" section, introduction sequence, parts 1-3, and in the "Remote" section, the full "Push & Pull" sequence. Feel free to do the other parts if you want :). You can also go to <https://learngitbranching.js.org/?NODEMO> if you want to just play around;
1010
- the Pro Git book: <https://git-scm.com/om/book/en/v2> , you'll find pretty much everything about git there, but might be tedious :);
1111
- a list of some graphical interfaces for git: <https://git-scm.com/downloads/guis>;

legacy/javascript/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ A web app with external data source using at least one API
3131
A good understanding of all the above mentioned topics. Want to check your Knowledge?
3232
Go through the [JavaScript Fundamentals readme](./fundamentals) and research/ask for help [(Slack!)](https://hackyourfuture-cph.slack.com) with the concepts that are not entirely clear.
3333

34-
Helpful resource: <http://jsbooks.revolunet.com/> (here you can find tons of free JavaScript books online)
34+
Helpful resource: <https://jsbooks.revolunet.com/> (here you can find tons of free JavaScript books online)

legacy/javascript/fundamentals/bug-challenge-es6/bug-challenge.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ export default class BugChallenge {
9797
}
9898

9999
fetch({
100-
url: "http://www.example.com",
100+
url: "https://www.example.com",
101101
useCaching: false,
102102
});
103103
}

0 commit comments

Comments
 (0)