Skip to content

Commit 9b743e8

Browse files
authored
http to https (#2137)
* Convert http links to https in metadata For all http links where an https equivalent would work, use the secure link in exercise metadata. For all JumpstartLab references I switched them to turing.edu since I was on the team at JumpstartLab at the time, and we were teaching at what became Turing School of Software and Design. (JumpstartLab's website doesn't handle https). There are a few links where I couldn't find an equivalent that resolved: - http://butunclebob.com/ArticleS.UncleBob.TheBowlingGameKata - http://claysnow.co.uk/recycling-tests-in-tdd/" - http://butunclebob.com/ArticleS.UncleBob.ThePrimeFactorsKata" - http://hyperphysics.phy-astr.gsu.edu/hbase/Organic/transcription.html - http://rubykoans.com * Fix http urls in markdown to be https * Use archive.org for http links
1 parent df691ee commit 9b743e8

File tree

74 files changed

+84
-84
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+84
-84
lines changed

README.md

Lines changed: 1 addition & 1 deletion

exercises/affine-cipher/metadata.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
title = "Affine Cipher"
22
blurb = "Create an implementation of the Affine cipher, an ancient encryption algorithm from the Middle East."
33
source = "Wikipedia"
4-
source_url = "http://en.wikipedia.org/wiki/Affine_cipher"
4+
source_url = "https://en.wikipedia.org/wiki/Affine_cipher"

exercises/allergies/metadata.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
title = "Allergies"
22
blurb = "Given a person's allergy score, determine whether or not they're allergic to a given item, and their full list of allergies."
3-
source = "Jumpstart Lab Warm-up"
4-
source_url = "http://jumpstartlab.com"
3+
source = "Exercise by the JumpstartLab team for students at The Turing School of Software and Design."
4+
source_url = "https://turing.edu"

exercises/atbash-cipher/metadata.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
title = "Atbash Cipher"
22
blurb = "Create an implementation of the atbash cipher, an ancient encryption system created in the Middle East."
33
source = "Wikipedia"
4-
source_url = "http://en.wikipedia.org/wiki/Atbash"
4+
source_url = "https://en.wikipedia.org/wiki/Atbash"

exercises/beer-song/metadata.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
title = "Beer Song"
22
blurb = "Produce the lyrics to that beloved classic, that field-trip favorite: 99 Bottles of Beer on the Wall."
33
source = "Learn to Program by Chris Pine"
4-
source_url = "http://pine.fm/LearnToProgram/?Chapter=06"
4+
source_url = "https://pine.fm/LearnToProgram/?Chapter=06"

exercises/binary-search/metadata.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
title = "Binary Search"
22
blurb = "Implement a binary search algorithm."
33
source = "Wikipedia"
4-
source_url = "http://en.wikipedia.org/wiki/Binary_search_algorithm"
4+
source_url = "https://en.wikipedia.org/wiki/Binary_search_algorithm"

exercises/binary/metadata.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
title = "Binary"
22
blurb = "Convert a binary number, represented as a string (e.g. '101010'), to its decimal equivalent using first principles."
33
source = "All of Computer Science"
4-
source_url = "http://www.wolframalpha.com/input/?i=binary&a=*C.binary-_*MathWorld-"
4+
source_url = "https://www.wolframalpha.com/examples/mathematics/numbers/base-conversions"

exercises/bob/metadata.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
title = "Bob"
22
blurb = "Bob is a lackadaisical teenager. In conversation, his responses are very limited."
33
source = "Inspired by the 'Deaf Grandma' exercise in Chris Pine's Learn to Program tutorial."
4-
source_url = "http://pine.fm/LearnToProgram/?Chapter=06"
4+
source_url = "https://pine.fm/LearnToProgram/?Chapter=06"

exercises/book-store/metadata.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
title = "Book Store"
22
blurb = "To try and encourage more sales of different books from a popular 5 book series, a bookshop has decided to offer discounts of multiple-book purchases."
33
source = "Inspired by the harry potter kata from Cyber-Dojo."
4-
source_url = "http://cyber-dojo.org"
4+
source_url = "https://cyber-dojo.org"

exercises/bowling/metadata.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
title = "Bowling"
22
blurb = "Score a bowling game."
33
source = "The Bowling Game Kata from UncleBob"
4-
source_url = "http://butunclebob.com/ArticleS.UncleBob.TheBowlingGameKata"
4+
source_url = "https://web.archive.org/web/20221001111000/http://butunclebob.com/ArticleS.UncleBob.TheBowlingGameKata"

0 commit comments

Comments
 (0)