• R/O
  • SSH

Commit

Tags
Aucun tag

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Révisionf12e45493f6d52a54ceb4234f2b236aecb33d736 (tree)
l'heure2020-03-22 07:28:10
AuteurAlbert Mietus < albert AT mietus DOT nl >
CommiterAlbert Mietus < albert AT mietus DOT nl >

Message de Log

PubSub: cleanup

Change Summary

Modification

diff -r 73edda0f52b9 -r f12e45493f6d SoftwareCompetence/DesignWorkShops/PubSub/concept/Use.rst
--- a/SoftwareCompetence/DesignWorkShops/PubSub/concept/Use.rst Sat Mar 21 23:14:32 2020 +0100
+++ b/SoftwareCompetence/DesignWorkShops/PubSub/concept/Use.rst Sat Mar 21 23:28:10 2020 +0100
@@ -33,7 +33,8 @@
3333 Where ``t`` is topic (an instance of :class:`pubsub.Topic`) and ``demo_cb`` is the *callback*. This can a function or other
3434 kind of callable. Multiple subscriptions are possible, by registering another::
3535
36- t.subscribe(demo_oo_cb)
36+ oo = Demo()
37+ t.subscribe(oo.demo_oo_cb)
3738
3839 .. _PubSub_callback_demo:
3940
diff -r 73edda0f52b9 -r f12e45493f6d SoftwareCompetence/DesignWorkShops/PubSub/demo/index.rst
--- a/SoftwareCompetence/DesignWorkShops/PubSub/demo/index.rst Sat Mar 21 23:14:32 2020 +0100
+++ b/SoftwareCompetence/DesignWorkShops/PubSub/demo/index.rst Sat Mar 21 23:28:10 2020 +0100
@@ -14,8 +14,8 @@
1414
1515 .. note:: Same source
1616
17- Due technical details the slidedeck below and the interactive notebook can be nog completely in sync. Although it the
18- same source, it can be another revision.
17+ Due practical details the slidedeck below and the interactive notebook might be our-of-sync. Although it coming from the
18+ same source, it can be another revision; making the slides is partial manual.
1919
2020
2121 Slides
@@ -27,14 +27,22 @@
2727 <iframe src="../../../../_static/PubSub-demo.slides.html" width="100%" height="720px"></iframe>
2828 </a>
2929
30+.. tip::
31+
32+ * Use **‘space’** to go to the next slide
33+ * Use **‘?’** to see all keyboard *shortcuts*
34+ * Click on the edge to open it in a new tab (and use ‘F’ for full-screen)
35+
3036
3137 Interactive notebooks
3238 ---------------------
3339
3440 Run on binder: `try it yourself <https://mybinder.org/v2/gh/AlbertMietus/PyMess.ipython-notebools/master?filepath=%2FSoftwareCompetence%2FDesignWorkShops%2FPubSub%2FPubSub-demo.ipynb>`_
3541
36-Or download `Jupiter <https://jupyter.readthedocs.io/en/latest/install.html#install>`_; e.g by
37-`Anaconda <https://www.anaconda.com/distribution/>`_. For Window-64 see:
38-`here <https://repo.anaconda.com/archive/Anaconda3-2020.02-Windows-x86_64.exe>`_.
42+.. tip::
43+
44+ Or download `Jupiter <https://jupyter.readthedocs.io/en/latest/install.html#install>`_; e.g by
45+ `Anaconda <https://www.anaconda.com/distribution/>`_. For Window-64 see:
46+ `here <https://repo.anaconda.com/archive/Anaconda3-2020.02-Windows-x86_64.exe>`_.
3947
4048 And play with in on your own PC using this `notebook <PubSub-demo-github>`_. Then you can save your attempts too.