Copied over updated slide layout from presentation-slides
[cipher-training.git] / slides / further-work.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Further work</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 .indexlink {
41 position: absolute;
42 bottom: 1em;
43 left: 1em;
44 }
45 .float-right {
46 float: right;
47 }
48 </style>
49 </head>
50 <body>
51 <textarea id="source">
52
53
54 layout: true
55
56 .indexlink[[Index](index.html)]
57
58 ---
59
60 # Taking this further
61
62
63 <table>
64 <tr valign="top">
65 <td>
66 ### Countdown
67
68 * Conundrum
69 * Letters
70 * Picking letters to maximise score
71 * Numbers
72 * Read the "Functional Pearl"
73 </td>
74 <td>
75 ### Hangman
76 * Letter probabilities based on each word occurring once in the dictionary
77 * Set of candidate words filtered by length, letters guessed
78 </td>
79 </tr>
80 <tr>
81 <td rowspan=2>
82 ### Full Enigma and Bombe
83 * Steckerboard
84 * Three wheels
85 * (and all the turnover logic)
86 * Wheel rings
87 * Extend the Bombe
88 </td>
89 <td>
90 ### Text generation
91 * Read some text, find the n-grams, generate more text from that.
92 </td>
93 <tr>
94 <td>
95 ### Spelling correction
96 * Suggest the most likely correct word, given the probability of these errors.
97 </td>
98 </tr>
99 </table>
100
101 </textarea>
102 <script src="http://gnab.github.io/remark/downloads/remark-0.6.0.min.js" type="text/javascript">
103 </script>
104
105 <script type="text/javascript"
106 src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML&delayStartupUntil=configured"></script>
107
108 <script type="text/javascript">
109 var slideshow = remark.create({ ratio: "16:9" });
110
111 // Setup MathJax
112 MathJax.Hub.Config({
113 tex2jax: {
114 skipTags: ['script', 'noscript', 'style', 'textarea', 'pre']
115 }
116 });
117 MathJax.Hub.Queue(function() {
118 $(MathJax.Hub.getAllJax()).map(function(index, elem) {
119 return(elem.SourceElement());
120 }).parent().addClass('has-jax');
121 });
122 MathJax.Hub.Configured();
123 </script>
124 </body>
125 </html>
126