01017632e6ea0ea92ffe2b524bd2e6917351775c
[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 .float-right {
41 float: right;
42 }
43 </style>
44 </head>
45 <body>
46 <textarea id="source">
47
48 # Taking this further
49
50
51 <table>
52 <tr valign="top">
53 <td>
54 ### Countdown
55
56 * Conundrum
57 * Letters
58 * Picking letters to maximise score
59 * Numbers
60 * Read the "Functional Pearl"
61 </td>
62 <td>
63 ### Hangman
64 * Letter probabilities based on each word occurring once in the dictionary
65 * Set of candidate words filtered by length, letters guessed
66 </td>
67 </tr>
68 <tr>
69 <td>
70 ### Text generation
71 * Read some text, find the n-grams, generate more text from that.
72 </td>
73 <td>
74 ### Spelling correction
75 * Suggest the most likely correct word, given the probability of these errors.
76 </td>
77 </tr>
78 </table>
79
80 </textarea>
81 <script src="http://gnab.github.io/remark/downloads/remark-0.6.0.min.js" type="text/javascript">
82 </script>
83
84 <script type="text/javascript"
85 src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML&delayStartupUntil=configured"></script>
86
87 <script type="text/javascript">
88 var slideshow = remark.create({ ratio: "16:9" });
89
90 // Setup MathJax
91 MathJax.Hub.Config({
92 tex2jax: {
93 skipTags: ['script', 'noscript', 'style', 'textarea', 'pre']
94 }
95 });
96 MathJax.Hub.Queue(function() {
97 $(MathJax.Hub.getAllJax()).map(function(index, elem) {
98 return(elem.SourceElement());
99 }).parent().addClass('has-jax');
100 });
101 MathJax.Hub.Configured();
102 </script>
103 </body>
104 </html>
105