Skip to content

Commit

Permalink
Merge pull request #177 from danny-lloyd/use-https-links
Browse files Browse the repository at this point in the history
Upgrade links to Software Carpentry course to HTTPS
  • Loading branch information
nf679 committed Aug 13, 2024
2 parents 9b10fa1 + 5402b07 commit 0eae71c
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 30 deletions.
30 changes: 15 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,21 +37,21 @@ The course covers:
* [Exercise and solutions](https://github.com/ncasuk/ncas-isc/blob/main/version_control/01_git_exercise.md)

## Introduction to Python
1. [Running and Quitting](http://swcarpentry.github.io/python-novice-gapminder/01-run-quit.html)
2. [Variables and Assignment](http://swcarpentry.github.io/python-novice-gapminder/02-variables.html)
3. [Data Types and Type Conversion](http://swcarpentry.github.io/python-novice-gapminder/03-types-conversion.html)
4. [Built-in Functions and Help](http://swcarpentry.github.io/python-novice-gapminder/04-built-in.html)
5. [Libraries](http://swcarpentry.github.io/python-novice-gapminder/06-libraries.html)
6. [Reading Tabular Data into DataFrames](http://swcarpentry.github.io/python-novice-gapminder/07-reading-tabular.html)
7. [Pandas DataFrames](http://swcarpentry.github.io/python-novice-gapminder/08-data-frames.html)
8. [Plotting](http://swcarpentry.github.io/python-novice-gapminder/09-plotting.html)
9. [Lists](http://swcarpentry.github.io/python-novice-gapminder/11-lists.html)
10. [For Loops](http://swcarpentry.github.io/python-novice-gapminder/12-for-loops.html)
11. [Conditionals](http://swcarpentry.github.io/python-novice-gapminder/13-conditionals.html)
12. [Looping Over Data Sets](http://swcarpentry.github.io/python-novice-gapminder/14-looping-data-sets.html)
13. [Writing Functions](http://swcarpentry.github.io/python-novice-gapminder/16-writing-functions.html)
14. [Variable Scope](http://swcarpentry.github.io/python-novice-gapminder/17-scope.html)
15. [Programming Style](http://swcarpentry.github.io/python-novice-gapminder/18-style.html)
1. [Running and Quitting](https://swcarpentry.github.io/python-novice-gapminder/01-run-quit.html)
2. [Variables and Assignment](https://swcarpentry.github.io/python-novice-gapminder/02-variables.html)
3. [Data Types and Type Conversion](https://swcarpentry.github.io/python-novice-gapminder/03-types-conversion.html)
4. [Built-in Functions and Help](https://swcarpentry.github.io/python-novice-gapminder/04-built-in.html)
5. [Libraries](https://swcarpentry.github.io/python-novice-gapminder/06-libraries.html)
6. [Reading Tabular Data into DataFrames](https://swcarpentry.github.io/python-novice-gapminder/07-reading-tabular.html)
7. [Pandas DataFrames](https://swcarpentry.github.io/python-novice-gapminder/08-data-frames.html)
8. [Plotting](https://swcarpentry.github.io/python-novice-gapminder/09-plotting.html)
9. [Lists](https://swcarpentry.github.io/python-novice-gapminder/11-lists.html)
10. [For Loops](https://swcarpentry.github.io/python-novice-gapminder/12-for-loops.html)
11. [Conditionals](https://swcarpentry.github.io/python-novice-gapminder/13-conditionals.html)
12. [Looping Over Data Sets](https://swcarpentry.github.io/python-novice-gapminder/14-looping-data-sets.html)
13. [Writing Functions](https://swcarpentry.github.io/python-novice-gapminder/16-writing-functions.html)
14. [Variable Scope](https://swcarpentry.github.io/python-novice-gapminder/17-scope.html)
15. [Programming Style](https://swcarpentry.github.io/python-novice-gapminder/18-style.html)

* [Exercises](https://github.com/ncasuk/ncas-isc/blob/main/python-intro/exercises) and [Solutions](https://github.com/ncasuk/ncas-isc/blob/main/python-intro/solutions)

Expand Down
30 changes: 15 additions & 15 deletions python-intro/presentations.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
Presentation material is used directly from Software Carpentry's "Plotting and Programming in Python" Course.

1. [Running and Quitting](http://swcarpentry.github.io/python-novice-gapminder/01-run-quit.html)
2. [Variables and Assignment](http://swcarpentry.github.io/python-novice-gapminder/02-variables.html)
3. [Data Types and Type Conversion](http://swcarpentry.github.io/python-novice-gapminder/03-types-conversion.html)
4. [Build-in Functions and Help](http://swcarpentry.github.io/python-novice-gapminder/04-built-in.html)
6. [Libraries](http://swcarpentry.github.io/python-novice-gapminder/06-libraries.html)
7. [Reading Tabular Data into DataFrames](http://swcarpentry.github.io/python-novice-gapminder/07-reading-tabular.html)
8. [Pandas DataFrames](http://swcarpentry.github.io/python-novice-gapminder/08-data-frames.html)
9. [Plotting](http://swcarpentry.github.io/python-novice-gapminder/09-plotting.html)
11. [Lists](http://swcarpentry.github.io/python-novice-gapminder/11-lists.html)
12. [For Loops](http://swcarpentry.github.io/python-novice-gapminder/12-for-loops.html)
13. [Conditionals](http://swcarpentry.github.io/python-novice-gapminder/13-conditionals.html)
14. [Looping Over Data Sets](http://swcarpentry.github.io/python-novice-gapminder/14-looping-data-sets.html)
16. [Writing Functions](http://swcarpentry.github.io/python-novice-gapminder/16-writing-functions.html)
17. [Variable Scope](http://swcarpentry.github.io/python-novice-gapminder/17-scope.html)
18. [Programming Style](http://swcarpentry.github.io/python-novice-gapminder/18-style.html)
1. [Running and Quitting](https://swcarpentry.github.io/python-novice-gapminder/01-run-quit.html)
2. [Variables and Assignment](https://swcarpentry.github.io/python-novice-gapminder/02-variables.html)
3. [Data Types and Type Conversion](https://swcarpentry.github.io/python-novice-gapminder/03-types-conversion.html)
4. [Build-in Functions and Help](https://swcarpentry.github.io/python-novice-gapminder/04-built-in.html)
6. [Libraries](https://swcarpentry.github.io/python-novice-gapminder/06-libraries.html)
7. [Reading Tabular Data into DataFrames](https://swcarpentry.github.io/python-novice-gapminder/07-reading-tabular.html)
8. [Pandas DataFrames](https://swcarpentry.github.io/python-novice-gapminder/08-data-frames.html)
9. [Plotting](https://swcarpentry.github.io/python-novice-gapminder/09-plotting.html)
11. [Lists](https://swcarpentry.github.io/python-novice-gapminder/11-lists.html)
12. [For Loops](https://swcarpentry.github.io/python-novice-gapminder/12-for-loops.html)
13. [Conditionals](https://swcarpentry.github.io/python-novice-gapminder/13-conditionals.html)
14. [Looping Over Data Sets](https://swcarpentry.github.io/python-novice-gapminder/14-looping-data-sets.html)
16. [Writing Functions](https://swcarpentry.github.io/python-novice-gapminder/16-writing-functions.html)
17. [Variable Scope](https://swcarpentry.github.io/python-novice-gapminder/17-scope.html)
18. [Programming Style](https://swcarpentry.github.io/python-novice-gapminder/18-style.html)

0 comments on commit 0eae71c

Please sign in to comment.