├── .gitattributes ├── Papers └── VMSupportForLiveTyping.pdf ├── Presentations ├── LiveTyping-CaliforniaSmalltalker.pdf ├── LiveTyping-ESUG-2019.pptx ├── LiveTyping-Smalltalks-2018.pptx └── LiveTyping-Update and what is next.pptx ├── Python ├── .idea │ ├── Python.iml │ ├── inspectionProfiles │ │ └── Project_Default.xml │ ├── misc.xml │ ├── modules.xml │ ├── vcs.xml │ └── workspace.xml ├── Example.py ├── README.md └── live_typing.py ├── README.md ├── Ruby └── README.md ├── Smalltalk ├── LICENSE ├── LiveTyping.pck.st ├── README.md ├── VMMaker │ ├── Cuis-Reader.zip │ ├── CuisUniversity-Reader.zip │ ├── ReaderImage.pck.st │ └── VMMaker.zip ├── VMSources │ ├── VMMaker.oscog-HAW.2440.mcz │ ├── VMMaker.oscog-HAW.2441.mcz │ ├── VMMaker.oscog-HAW.2442.mcz │ ├── VMMaker.oscog-HAW.2443.mcz │ ├── VMMaker.oscog-HAW.2444.mcz │ ├── VMMaker.oscog-HAW.2445.mcz │ └── VMMaker.oscog-HAW.2446.mcz ├── VMs │ ├── linux64 │ │ └── sqstkspur64linuxht.tar.gz │ ├── macos64 │ │ ├── Pharo.app.zip │ │ └── Squeak.app.zip │ └── windows64 │ │ └── Squeak.exe.zip ├── __LiveTyping-TestData__.pck.st └── image │ ├── CuisLiveTyping.zip │ ├── ESUG2019ExampleImage.zip │ ├── PharoLiveTyping.zip │ ├── Smalltalks2019ExampleImage.zip │ └── Squeak5.2-18225-64bit-LTI.zip ├── Tweets └── README.md └── Videos └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | *.st -text linguist-language=Smalltalk 2 | -------------------------------------------------------------------------------- /Papers/VMSupportForLiveTyping.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hernanwilkinson/LiveTyping/001ee1a61ad5f023f4d8b053e8c1a355182e3df0/Papers/VMSupportForLiveTyping.pdf -------------------------------------------------------------------------------- /Presentations/LiveTyping-CaliforniaSmalltalker.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hernanwilkinson/LiveTyping/001ee1a61ad5f023f4d8b053e8c1a355182e3df0/Presentations/LiveTyping-CaliforniaSmalltalker.pdf -------------------------------------------------------------------------------- /Presentations/LiveTyping-ESUG-2019.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hernanwilkinson/LiveTyping/001ee1a61ad5f023f4d8b053e8c1a355182e3df0/Presentations/LiveTyping-ESUG-2019.pptx -------------------------------------------------------------------------------- /Presentations/LiveTyping-Smalltalks-2018.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hernanwilkinson/LiveTyping/001ee1a61ad5f023f4d8b053e8c1a355182e3df0/Presentations/LiveTyping-Smalltalks-2018.pptx -------------------------------------------------------------------------------- /Presentations/LiveTyping-Update and what is next.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hernanwilkinson/LiveTyping/001ee1a61ad5f023f4d8b053e8c1a355182e3df0/Presentations/LiveTyping-Update and what is next.pptx -------------------------------------------------------------------------------- /Python/.idea/Python.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 11 | -------------------------------------------------------------------------------- /Python/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 12 | -------------------------------------------------------------------------------- /Python/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | CSS 15 | 16 | 17 | Probable bugsCSS 18 | 19 | 20 | RELAX NG 21 | 22 | 23 | 24 | 25 | AngularJS 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /Python/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Python/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Python/.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 41 | 42 | 43 | 45 | 46 | 52 | 53 | 54 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 |