OSDN Git Service

Missed the notebooks *.html files.
[joypy/Thun.git] / docs / sphinx_docs / _build / html / notebooks / index.html
1
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
3   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
4
5 <html xmlns="http://www.w3.org/1999/xhtml">
6   <head>
7     <meta http-equiv="X-UA-Compatible" content="IE=Edge" />
8     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9     <title>Essays about Programming in Joy &#8212; Thun 0.1.1 documentation</title>
10     <link rel="stylesheet" href="../_static/alabaster.css" type="text/css" />
11     <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
12     <script type="text/javascript" src="../_static/documentation_options.js"></script>
13     <script type="text/javascript" src="../_static/jquery.js"></script>
14     <script type="text/javascript" src="../_static/underscore.js"></script>
15     <script type="text/javascript" src="../_static/doctools.js"></script>
16     <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
17     <link rel="index" title="Index" href="../genindex.html" />
18     <link rel="search" title="Search" href="../search.html" />
19     <link rel="next" title="Developing a Program in Joy" href="Developing.html" />
20     <link rel="prev" title="Functions Grouped by, er, Function with Examples" href="../lib.html" />
21    
22   <link rel="stylesheet" href="../_static/custom.css" type="text/css" />
23   
24   
25   <meta name="viewport" content="width=device-width, initial-scale=0.9, maximum-scale=0.9" />
26
27   </head><body>
28   
29
30     <div class="document">
31       <div class="documentwrapper">
32         <div class="bodywrapper">
33           <div class="body" role="main">
34             
35   <div class="section" id="essays-about-programming-in-joy">
36 <h1>Essays about Programming in Joy<a class="headerlink" href="#essays-about-programming-in-joy" title="Permalink to this headline">¶</a></h1>
37 <p>These essays are adapted from Jupyter notebooks.  I hope to have those hosted somewhere where people can view them “live” and interact with them, possibly on MS Azure.  For now, Sphinx does such a great job rendering the HTML that I am copying over some notebooks in ReST format and hand-editing them into these documents.</p>
38 <div class="toctree-wrapper compound">
39 <ul>
40 <li class="toctree-l1"><a class="reference internal" href="Developing.html">Developing a Program in Joy</a><ul>
41 <li class="toctree-l2"><a class="reference internal" href="Developing.html#project-euler-first-problem-multiples-of-3-and-5">Project Euler, first problem: “Multiples of 3 and 5”</a></li>
42 <li class="toctree-l2"><a class="reference internal" href="Developing.html#generator-version">Generator Version</a></li>
43 <li class="toctree-l2"><a class="reference internal" href="Developing.html#a-little-further-analysis-renders-iteration-unnecessary">A little further analysis renders iteration unnecessary.</a></li>
44 <li class="toctree-l2"><a class="reference internal" href="Developing.html#the-simplest-program">The Simplest Program</a></li>
45 </ul>
46 </li>
47 <li class="toctree-l1"><a class="reference internal" href="Trees.html">Treating Trees</a><ul>
48 <li class="toctree-l2"><a class="reference internal" href="Trees.html#a-function-to-traverse-a-btree">A Function to Traverse a BTree</a></li>
49 <li class="toctree-l2"><a class="reference internal" href="Trees.html#adding-nodes-to-the-btree">Adding Nodes to the BTree</a></li>
50 <li class="toctree-l2"><a class="reference internal" href="Trees.html#interlude-the-cmp-combinator">Interlude: The <code class="docutils literal notranslate"><span class="pre">cmp</span></code> combinator</a></li>
51 <li class="toctree-l2"><a class="reference internal" href="Trees.html#interlude-factoring-and-naming">Interlude: Factoring and Naming</a></li>
52 <li class="toctree-l2"><a class="reference internal" href="Trees.html#a-version-of-btree-iter-that-does-in-order-traversal">A Version of <code class="docutils literal notranslate"><span class="pre">BTree-iter</span></code> that does In-Order Traversal</a></li>
53 <li class="toctree-l2"><a class="reference internal" href="Trees.html#getting-values-by-key">Getting values by key</a></li>
54 <li class="toctree-l2"><a class="reference internal" href="Trees.html#todo-btree-delete">TODO: BTree-delete</a></li>
55 <li class="toctree-l2"><a class="reference internal" href="Trees.html#tree-with-node-and-list-of-trees">Tree with node and list of trees.</a></li>
56 <li class="toctree-l2"><a class="reference internal" href="Trees.html#miscellaneous-crap">Miscellaneous Crap</a></li>
57 <li class="toctree-l2"><a class="reference internal" href="Trees.html#a-general-form-for-trees">A General Form for Trees</a></li>
58 <li class="toctree-l2"><a class="reference internal" href="Trees.html#automatically-deriving-the-recursion-combinator-for-a-data-type">Automatically deriving the recursion combinator for a data type?</a></li>
59 </ul>
60 </li>
61 <li class="toctree-l1"><a class="reference internal" href="Newton-Raphson.html">Newton’s method</a><ul>
62 <li class="toctree-l2"><a class="reference internal" href="Newton-Raphson.html#finding-the-square-root-of-a-number">Finding the Square-Root of a Number</a></li>
63 <li class="toctree-l2"><a class="reference internal" href="Newton-Raphson.html#compute-the-error">Compute the Error</a></li>
64 <li class="toctree-l2"><a class="reference internal" href="Newton-Raphson.html#square-root"><code class="docutils literal notranslate"><span class="pre">square-root</span></code></a></li>
65 </ul>
66 </li>
67 <li class="toctree-l1"><a class="reference internal" href="Quadratic.html">Quadratic formula</a><ul>
68 <li class="toctree-l2"><a class="reference internal" href="Quadratic.html#write-a-program-with-variable-names">Write a program with variable names.</a></li>
69 <li class="toctree-l2"><a class="reference internal" href="Quadratic.html#derive-a-definition">Derive a definition.</a></li>
70 </ul>
71 </li>
72 <li class="toctree-l1"><a class="reference internal" href="NoUpdates.html">No Updates</a></li>
73 <li class="toctree-l1"><a class="reference internal" href="Categorical.html">Categorical Programming</a></li>
74 </ul>
75 </div>
76 </div>
77
78
79           </div>
80         </div>
81       </div>
82       <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
83         <div class="sphinxsidebarwrapper"><div class="relations">
84 <h3>Related Topics</h3>
85 <ul>
86   <li><a href="../index.html">Documentation overview</a><ul>
87       <li>Previous: <a href="../lib.html" title="previous chapter">Functions Grouped by, er, Function with Examples</a></li>
88       <li>Next: <a href="Developing.html" title="next chapter">Developing a Program in Joy</a></li>
89   </ul></li>
90 </ul>
91 </div>
92   <div role="note" aria-label="source link">
93     <h3>This Page</h3>
94     <ul class="this-page-menu">
95       <li><a href="../_sources/notebooks/index.rst.txt"
96             rel="nofollow">Show Source</a></li>
97     </ul>
98    </div>
99 <div id="searchbox" style="display: none" role="search">
100   <h3>Quick search</h3>
101     <div class="searchformwrapper">
102     <form class="search" action="../search.html" method="get">
103       <input type="text" name="q" />
104       <input type="submit" value="Go" />
105       <input type="hidden" name="check_keywords" value="yes" />
106       <input type="hidden" name="area" value="default" />
107     </form>
108     </div>
109 </div>
110 <script type="text/javascript">$('#searchbox').show(0);</script>
111         </div>
112       </div>
113       <div class="clearer"></div>
114     </div>
115     <div class="footer" role="contentinfo">
116 <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/">
117 <img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png" />
118 </a>
119 <br />
120 <span xmlns:dct="http://purl.org/dc/terms/" property="dct:title">Thun Documentation</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="https://joypy.osdn.io/" property="cc:attributionName" rel="cc:attributionURL">Simon Forman</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a>.<br />Based on a work at <a xmlns:dct="http://purl.org/dc/terms/" href="https://osdn.net/projects/joypy/" rel="dct:source">https://osdn.net/projects/joypy/</a>.
121       Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.7.3.
122     </div>
123
124   </body>
125 </html>