On my list of plugins to try: Hola – Access ALL of the web (free VPN) & faster browsing.
Thanks Arno van Jaarsveld from BcomOne for pointing me at it.
–jeroen
Posted by jpluimers on 2014/03/05
On my list of plugins to try: Hola – Access ALL of the web (free VPN) & faster browsing.
Thanks Arno van Jaarsveld from BcomOne for pointing me at it.
–jeroen
Posted in Chrome, Google, Power User | Leave a Comment »
Posted by jpluimers on 2014/03/05
Thanks John Kaster for pointing me to Wat — Destroy All Software Talks | VK by garybernhardt (Gary Bernhardt) / @garybernhardt.
I did a bit more browsing, and found these links too: recommended watching/reading!
–jeroen
Posted in Development, JavaScript/ECMAScript, Ruby, Scripting, Software Development | Leave a Comment »
Posted by jpluimers on 2014/03/05
Just listened to the PodCast Creating a Mac emulator using JavaScript with James Friend on the Hanselminutes Technology Podcast: Fresh Air for Developers.
James Friend is the author of PCE.js – Classic Mac OS in the Browser, the (and also a very friendly guy).
PCE.js is a port of PCE built using Emscripten and asm.js (Emscripten requires pure portable idiomatic C, which – back then – was a really portable language). The port is explained in more detail by Mike Bull from mayflymedia. The PodCast also goes into more detail: The PCE code is very clean and easy to understand; in memory patching for floppy emulation and mouse pointer position; moving Mac video memory to the emulator canvas in the SDL window. And James explains the “why” as well: Why port emulators to the browser?.
The SDL in Emscripten is reimplemented to map video to the html5 canvas, and outputs audio to html5 audio.
The source code for PCE.js is in his jsdf GitHub realm as the PCE repository.
PCE.js runs Mac OS 7. I also found out that recently James released a VM for Running a Hypercard stack on a modern Mac based on SheepShaver: it runs Mac OS 9 with Hypercard, and allows to transfer files from/to your physical Mac.
–jeroen
Posted in Uncategorized | Tagged: James Friend, Mac emulator, PCE | Leave a Comment »
Posted by jpluimers on 2014/03/05
A new *n*x bug got discovered in TLS certificate handling that is similar to the recently discovered iOS and OS X “goto fail” security issue.
This time the fix is performing a few replacements linke this:
-goto cleanup;
+goto fail;
Plus one addition:
+fail: // ADDED
+ result = 0;
Applications depending on GnuTLS are affected (there are other libraries providing TLS like OpenSSL), which are many.
Two must-do things:
I’m with Jan Wildeboer here and updates should get in very soon: Read the rest of this entry »
Posted in Communications Development, Development, Internet protocol suite, Power User, Security, TCP, TLS | Tagged: GnuTLS, goto cleanup, TLS | Leave a Comment »