Tag Archives: tutorial

Leanpub – HTML 5 Shoot ’em Up in an Afternoon

Leanpub free tutorial (you may need to register but the book is free)

HTML 5 Shoot ’em Up in an Afternoon

Step by step and easy reading tutorial explaining how to make a game in javascript with the Phaser gaming framework.

Creating a 2D game with Unity

Using the brand new Unity native 2D tools, you will learn how to make a small “Shoot’Em Up” (abbreviated to shmup thereafter) with this tutorial.

http://pixelnest.io/tutorials/2d-game-unity

result

Posted on September 10, 2014, 10:58 By
Categories: Game Tags: , , , ,
Drawspace – Learn to draw

They have some good free lessons.

Drawspace is more than just another art website; we are an international community of over 320,000 drawing enthusiasts, professional artists, art educators, and authors of art books. Check out our huge (and continuously growing) library of free, downloadable, high-quality lessons authored by world-renowned artists, art educators, and authors (no registration or log-in needed).

Visit at http://www.drawspace.com/

Posted on March 20, 2014, 19:16 By
Categories: Art Tags: , ,
Javascript Promisses

http://www.promisejs.org/intro/

We want our code to be asynchronous, because if we write synchronous code then the user interface will lock up (in client side applications) or no requests will get handled (in server applications). One way to solve this problem is threads, but they create their own problems and are not supported in JavaScript.

One of the simplest ways to make functions asynchronous is to accept a callback function. This is what node.js does (at time of writing). This works, but has a number of issues.

  1. You lose the separation of inputs and outputs to a function since the callback must be passed as an input
  2. It is difficult to compose multiple serial or parallel operations
  3. You lose a lot of helpful debugging information and error handling ability relating to stack traces and the bubbling up of exceptions
  4. You can no longer use the built in control flow constructs and they must all be re-invented to work asynchronously.

Many APIs in the browser use some kind of event based model for control flow, which solves problem 1, but not problems 2 to 4.

Promises aim to solve issues 1 to 3 and can solve problem 4 in ES6 (with the use of generators).

Posted on March 20, 2014, 19:15 By
Categories: JavaScript Tags: , ,
PHP The Right Way

http://www.phptherightway.com/

There’s a lot of outdated information on the Web that leads new PHP users astray, propagating bad practices and insecure code. PHP: The Right Way is an easy-to-read, quick reference for PHP popular coding standards, links to authoritative tutorials around the Web and what the contributors consider to be best practices at the present time.

There is no canonical way to use PHP. This website aims to introduce new PHP developers to some topics which they may not discover until it is too late, and aims to give seasoned pros some fresh ideas on those topics they’ve been doing for years without ever reconsidering. This website will also not tell you which tools to use, but instead offer suggestions for multiple options, when possible explaining the differences in approach and use-case.

This is a living document and will continue to be updated with more helpful information and examples as they become available.

Posted on March 20, 2014, 19:14 By
Categories: PHP Tags: ,
Tutorial – Learn nodeJs

http://nodeschool.io/#learn-you-node

Posted on March 20, 2014, 19:10 By
Categories: JavaScript Tags: , ,