summaryrefslogtreecommitdiff
path: root/reveal.js/pybofh.html
diff options
context:
space:
mode:
Diffstat (limited to 'reveal.js/pybofh.html')
-rw-r--r--reveal.js/pybofh.html127
1 files changed, 0 insertions, 127 deletions
diff --git a/reveal.js/pybofh.html b/reveal.js/pybofh.html
deleted file mode 100644
index 44de97e..0000000
--- a/reveal.js/pybofh.html
+++ /dev/null
@@ -1,127 +0,0 @@
1<!doctype html>
2<html lang="en">
3 <head>
4 <meta charset="utf-8">
5 <title>pybofh</title>
6 <meta name="author" content="Simeon Simeonov">
7 <meta name="apple-mobile-web-app-capable" content="yes">
8 <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
9 <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
10 <link rel="stylesheet" href="css/reveal.css">
11 <link rel="stylesheet" href="css/theme/serif.css" id="theme">
12
13 <!-- Theme used for syntax highlighting of code -->
14 <link rel="stylesheet" href="lib/css/zenburn.css">
15 <!-- Printing and PDF exports -->
16 <script>
17 var link = document.createElement( 'link' );
18 link.rel = 'stylesheet';
19 link.type = 'text/css';
20 link.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';
21 document.getElementsByTagName( 'head' )[0].appendChild( link );
22 </script>
23 <!--[if lt IE 9]>
24 <script src="lib/js/html5shiv.js"></script>
25 <![endif]-->
26 </head>
27 <body>
28 <div class="reveal">
29
30 <!-- Any section element inside of this container is displayed as a slide -->
31 <div class="slides">
32 <section>
33 <h1>pybofh</h1>
34 <h3>Cerebrum-seminar 2019</h3>
35 </br>
36 <p>Simeon Simeonov (<em>sgs</em> @ UiO)</p>
37 </section>
38
39 <section>
40 <h2>Simeon Simeonov</h2>
41 </br>
42 <ul>
43 <li>
44 <p><a href="http://folk.uio.no/sgs/">http://folk.uio.no/sgs/</a></p>
45 </li>
46 <li><p>Cerebrum developer since February 2015</p></li>
47 </ul>
48 </section>
49
50 <section>
51 <h2>Agenda</h2>
52 </br>
53 <ul>
54 <li><p>pybofh vs. jbofh</p></li>
55 <li><p>Installation and setup</p></li>
56 <li><p>Examples (scripting)</p></li>
57 <li><p>Q &amp; A</p></li>
58 </ul>
59 </section>
60
61 <section>
62 <h2>pybofh vs. jbofh</h2>
63 </br>
64 <ul>
65 <li><p>Still developed</p></li>
66 <li><p>Written in Python ☺ .... 2 ☹</p></li>
67 <li><p>Continuously updated documentation</p></li>
68 <li><p>Easier to debug and extend</p></li>
69 <li><p>Can be used as a module / library for scripting</p></li>
70 <li><p>Not bundled</p></li>
71 <li><p>Not a standard</p></li>
72 </ul>
73 </section>
74
75 <section>
76 <h2>Installation and setup</h2>
77 </br>
78 <ul>
79 <li>git clone <em>https://bitbucket.usit.uio.no/scm/crb/pybofh.git</em> &lt;path to repo&gt;</li>
80 <li>export PYTHONPATH=&lt;path to repo&gt;</li>
81 <li>&lt;path to repo&gt;/scripts/bofh -u &lt;username&gt; --url &lt;hostname:port&gt; -c &lt;certfile&gt;</li>
82 </ul>
83 <p><em>pip install pybofh</em> may be a better alternative...</p>
84 </section>
85
86 <section>
87 <h1>Examples</h1>
88 </br>
89 <ul>
90 <li><p><em>IPython</em> - interactive shell for grownups is highly recommended</p></li>
91 </ul>
92 </section>
93
94 <section>
95 <h1>Q&amp;A</h1>
96 <p><em>“Judge a man by his questions rather than by his answers.”</em> - Voltaire</p>
97 </section>
98
99 </div>
100 </div>
101
102 <script src="lib/js/head.min.js"></script>
103 <script src="js/reveal.js"></script>
104 <script>
105 // More info https://github.com/hakimel/reveal.js#configuration
106 Reveal.initialize({
107 controls: true,
108 progress: true,
109 history: true,
110 center: true,
111
112 transition: 'slide', // none/fade/slide/convex/concave/zoom
113
114 // More info https://github.com/hakimel/reveal.js#dependencies
115 dependencies: [
116 { src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },
117 { src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
118 { src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
119 { src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
120 { src: 'plugin/zoom-js/zoom.js', async: true },
121 { src: 'plugin/notes/notes.js', async: true }
122 ]
123 });
124 </script>
125
126 </body>
127</html>