forked from cal-cs180/fa24
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprogramming.html
More file actions
68 lines (66 loc) · 1.63 KB
/
programming.html
File metadata and controls
68 lines (66 loc) · 1.63 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Programming Resources on the Web</title>
<style>
body {
background-color: #ffffff;
color: #000000;
}
a:link {
color: #000099;
}
a:visited {
color: #000099;
}
a:hover {
color: #0000ff;
}
h2 {
color: #800000;
text-align: left;
}
</style>
</head>
<body>
<h2>Python Resources</h2>
<ul>
<li>
<a href="https://www.python.org/about/gettingstarted/"
>Getting Started With Python</a
>
</li>
<li>
<a href="https://wiki.python.org/moin/BeginnersGuide/Programmers"
>A list of Python Tutorials</a
>
</li>
<li>
<a href="https://numpy.org/doc/stable/user/quickstart.html"
>NumPy Quickstart</a
>,
<a href="https://numpy.org/learn/"
>NumPy Learn</a
>,
<a href="https://numpy.org/devdocs/user/absolute_beginners.html"
>NumPy for Absolute Beginners</a
>, and
<a href="https://docs.scipy.org/doc/scipy/tutorial/">SciPy Tutorial</a>
for scientific computing
</li>
<li>
<a href="http://scikit-image.org/"
>Scikit-Image tutorial for image processing</a
>
</li>
<li>
<a
href="https://docs.opencv.org/4.x/d2/d96/tutorial_py_table_of_contents_imgproc.html"
>OpenCV tutorial for image processing</a
>
</li>
</ul>
</body>
</html>