Wednesday, June 11, 2014

Playfull - Game Article

Nice articles on different canvas techniques :

http://www.playfuljs.com/

CrunchMe - Javascript tool compression

Quote from site


CrunchMe is a tool for compressing JavaScript source code into a self-extracting JavaScript program


http://crunchme.bitsnbites.eu/

Visto JavaScript Framework (VistoJS)

Quote from site:
The Visto JavaScript Framework (VistoJS) integrates KnockoutJS, JQuery and RequireJS (and TypeScript) to provide the programming model known from .NET XAML and MVVM: It is possible to implement views with "code-behind" and bindings to view models, declaratively load subviews in HTML and navigate between pages - all in a single-page application.

The main advantages of this library is that it allows to develop component-based and implement reusable views which are composed of predefined programming blocks (view, view model and HTML). These views can be reused as sub views, in dialogs or as page instances. The programming API and paradigm is very similar to the one found in Windows Phone XAML or Windows 8 Store Apps programming (MVVM pattern, view "code-behind", paging/navigation).

http://visto.codeplex.com/

Tuesday, June 10, 2014

Learn Python Through Public Data Hacking

Quote from site :

David Beazley
What's more fun than learning Python? Learning Python by hacking on public data! In this tutorial, you'll learn Python basics by reading files, scraping the web, building data structures, and analyzing real world data



Python Data Hacking

Converts a Meteor app into a "standard" Node.js application

Quote from site:

Demeteorizer

CLI tool to convert a Meteor app into a "standard" Node.js application. The resulting app contains a package.json file with all required dependencies and can be easily ported to your own servers or Node.js PAAS providers.
Demeteorizer's output is similar to meteor bundle except that it generates a package.json containing all required dependencies. This allows you to easily run npm install on the destination server, which is especially important for compiled modules.

 https://github.com/onmodulus/demeteorizer