Done for a moment
[cipher-training.git] / slides / aims.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Aims</title>
5 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
6 <style type="text/css">
7 /* Slideshow styles */
8 body {
9 font-size: 20px;
10 }
11 h1, h2, h3 {
12 font-weight: 400;
13 margin-bottom: 0;
14 }
15 h1 { font-size: 3em; }
16 h2 { font-size: 2em; }
17 h3 { font-size: 1.6em; }
18 a, a > code {
19 text-decoration: none;
20 }
21 code {
22 -moz-border-radius: 5px;
23 -web-border-radius: 5px;
24 background: #e7e8e2;
25 border-radius: 5px;
26 font-size: 16px;
27 }
28 .plaintext {
29 background: #272822;
30 color: #80ff80;
31 text-shadow: 0 0 20px #333;
32 padding: 2px 5px;
33 }
34 .ciphertext {
35 background: #272822;
36 color: #ff6666;
37 text-shadow: 0 0 20px #333;
38 padding: 2px 5px;
39 }
40 </style>
41 </head>
42 <body>
43 <textarea id="source">
44
45 # Aims
46
47 Material aimed for two (three?) audiences
48
49 1. Teacher CPD
50 2. In-school resources for children
51 3. (Outreach resources, mainly Bletchley Park)
52
53 After your suggestions on how to extend these notes to hit these audiences
54
55 ---
56
57 # Programming != Computing
58
59 > Computational thinking is like architectural thinking. Programming is like
60 > bricklaying.
61
62 This course will cover four things, in increasing order of importance.
63
64 1. Teach some ideas about ciphers and cryptanalysis.
65 2. Show off some tools: IPython, git, doctest.
66 3. Explore some different corners of Python (itertools, multiprocessing).
67 4. Expose my thinking for how to solve these problems.
68
69 </textarea>
70 <script src="http://gnab.github.io/remark/downloads/remark-0.6.0.min.js" type="text/javascript">
71 </script>
72 <script type="text/javascript">
73 var slideshow = remark.create();
74 </script>
75 </body>
76 </html>