Skip to content

Commit 3713eb3

Browse files
committed
- change date to 2019"
"
1 parent f181855 commit 3713eb3

File tree

13 files changed

+15
-13
lines changed

13 files changed

+15
-13
lines changed

advanced-python/PITCHME.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## Advanced Python
2-
##### Global Code | 2019
2+
##### Global Code | 2024
33
![Advanced Python](/assets/img/python-360x361.png)
44

55
---

building-a-web-application/PITCHME.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## Building a Wep Application
2-
##### Global Code | 2019
2+
##### Global Code | 2024
33

44
![Building a Web Application](/assets/img/flask-600.png)
55

hosting-platforms/PITCHME.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## Hosting Platforms
2-
##### Global Code | 2019
2+
##### Global Code | 2024
33
![Hosting Platforms](/assets/img/heroku-733x258.png)
44

55
Note:

intro-to-MQTT/PITCHME.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## MQTT
2-
##### Global Code | 2019
2+
##### Global Code | 2024
33
![MQTT](/assets/img/mqtt.png)
44

55
---

intro-to-git-and-github/PITCHME.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## Git and GitHub
2-
##### Global Code | 2019
2+
##### Global Code | 2024
33
![Git and Github](/assets/img/git-910x380.png)
44

55
Note:

intro-to-global-code/PITCHME.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## Global Code
2-
##### 2019
2+
##### 2024
33
![Global Code](/assets/img/GC_Logo_artwork_RGB-LOGO_colour_SMALL.png)
44

55
---

intro-to-internet-of-things/PITCHME.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## Intro: Internet of Things
2-
##### Global Code | 2019
2+
##### Global Code | 2024
33
![Course logo alt text](/assets/img/iot-1024x706.png)
44

55
---

intro-to-linux/PITCHME.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
## Global Code
2+
##### 2024

intro-to-python/PITCHME.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## Python
2-
##### Global Code | 2019
2+
##### Global Code | 2024
33
![Python](/assets/img/python-360x361.png)
44

55
---?include=/intro-to-python/topics/what-is-python.md

intro-to-python/topics/conditionals.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Note:
2222
* and the indentation!
2323
```python
2424
yob = (int)(raw_input ( "Enter the year you were born: " ))
25-
now = 2019
25+
now = 2024
2626
if (now - yob) < 18:
2727
print ("you're still a child"(
2828
elif (now - yob) < 25:
@@ -48,7 +48,7 @@ Note:
4848
* it evaluates to a value
4949
```python
5050
yob = (int)(raw_input ( "Enter the year you were born: " ))
51-
now = 2019
51+
now = 2024
5252
status = "young" if (now - yob) < 30 else "old"
5353
print (status)
5454
```

0 commit comments

Comments
 (0)