From david at boddie.org.uk Wed May 3 18:46:22 2017 From: david at boddie.org.uk (David Boddie) Date: Thu, 4 May 2017 00:46:22 +0200 Subject: [Mobile-sig] Upcoming Pycon talk and the Python Wiki Message-ID: <201705040046.23523.david@boddie.org.uk> I was interested to see that Russell is scheduled to give a talk at Pycon this month which I imagine will be relevant to this list: https://us.pycon.org/2017/schedule/presentation/410/ I won't be in the audience, but I'm looking forward to seeing the video afterwards. Meanwhile, I added VOC to the Python Implementations page of the Python Wiki, though I'm not sure all that many people look at that page: https://wiki.python.org/moin/PythonImplementations My secondary, ulterior motive for doing so was to add my own Python-like language to that page. ;-) David From russell at keith-magee.com Wed May 3 20:01:18 2017 From: russell at keith-magee.com (Russell Keith-Magee) Date: Thu, 4 May 2017 08:01:18 +0800 Subject: [Mobile-sig] Upcoming Pycon talk and the Python Wiki In-Reply-To: <201705040046.23523.david@boddie.org.uk> References: <201705040046.23523.david@boddie.org.uk> Message-ID: <8964a586-1e84-47d8-9deb-9edca75a7651@Spark> Hi David, Yes, I?m presenting about the internals of VOC (which is how I?ve got Python running on Android). I?m also giving a tutorial on cross-platform app development (sold out, unfortunately for anyone hoping to join in), and hosting a booth on the conference floor. BeeWare contributor Katie McLaughlin is also presenting BeeWare-related content. The BeeWare team will also be there for the full duration of the sprints if anyone is interested in getting involved or learning more. Yours, Russ Magee %-) On 4 May 2017, 6:46 AM +0800, wrote: > > Hi David, > > Yes, I?m presenting about the internals of VOC (which is how I?ve got Python running on Android). I?m also giving a tutorial on cross-platform app development (sold out, unfortunately for anyone hoping to join in), and hosting a booth on the conference floor. BeeWare contributor Katie McLaughlin is also presenting BeeWare-related content. > > The BeeWare team will also be there for the full duration of the sprints if anyone is interested in getting involved or learning more. > > Yours, > Russ Magee %-) -------------- next part -------------- An HTML attachment was scrubbed... URL: From david at boddie.org.uk Sat May 13 15:46:57 2017 From: david at boddie.org.uk (David Boddie) Date: Sat, 13 May 2017 21:46:57 +0200 Subject: [Mobile-sig] Upcoming Pycon talk and the Python Wiki In-Reply-To: <8964a586-1e84-47d8-9deb-9edca75a7651@Spark> Message-ID: <201705132146.57876.david@boddie.org.uk> On Wed May 3 20:01:18 EDT 2017, Russell Keith-Magee wrote: > Yes, I?m presenting about the internals of VOC (which is how I?ve got > Python running on Android). I?m also giving a tutorial on cross-platform > app development (sold out, unfortunately for anyone hoping to join in), and > hosting a booth on the conference floor. BeeWare contributor Katie > McLaughlin is also presenting BeeWare-related content. Good luck with those! Related to the topic of transpilers, I found one project from the late 1990s that converted Java bytecode to instructions for use on the Dis virtual machine: http://doc.cat-v.org/inferno/java_on_dis/ It's interesting that Android ended up using a similar approach around a decade later. David