-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathfriday_02.html
104 lines (59 loc) · 2.17 KB
/
friday_02.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html>
<head>
<title>Digital Summer School 2024: FRI02</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<link rel="stylesheet" href="../style.css"> </head>
<body>
<textarea id="source">
class: center, middle, titlepage
### FRI02: *Community and Resources.*
---
class: contentpage
### **Agenda**
1. Code Resources
2. How to Work With Other People's Code
3. Python linting/checking
4. Community, NTTW, Discord
5. FFmprovisor, FFmpeg Art School
6. LLM as code assistant
---
class: contentpage
### **1. Code Resources**
Some places to go if you are interested in leaning more about Python or Bash.
Paul:
- Matt Miller has a great series of videos on Programming for Cultural Heritage. They are a bit old but still great.
https://videos.pfch.nyc/
- If you are looking for a "proper", I would highly recommend the executeprogram course:
https://www.executeprogram.com/courses/python-for-programmers
- Ashley Blewer has an amazing blog around all things AV & Code:
https://bits.ashleyblewer.com/
---
class: contentpage
### **2. How to Work With Other People's Code**
---
class: contentpage
### **3. Python linting/checking**
---
class: contentpage
### **4. Community, NTTW, Discord**
No Time To Wait conference: https://mediaarea.net/NoTimeToWait
---
class: contentpage
### **5. FFmprovisor, FFmpeg Art School**
FFmprovisr is an excellent resource for useful AV opensource related commands.
https://amiaopensource.github.io/ffmprovisr/
FFmpeg Art School shows how much fun you can have with FFmpeg!
https://amiaopensource.github.io/ffmpeg-artschool/scripts.html
---
class: contentpage
### **6. LLM as code assistant**
Worth noting that when you are working with code you can also of course make use of LLMs. This can be to write an example code to study, explain how some code works, or ask questions about your own code.
---
class: center, middle, titlepage
### THANK YOU!
</textarea>
<script src="https://remarkjs.com/downloads/remark-latest.min.js" type="text/javascript"></script>
<script type="text/javascript">var slideshow = remark.create({ratio: "16:9"});</script>
</body>
</html>