Monthly Archives: August 2012

Animation Easing

    // simple linear tweening – no easing, no acceleration Math.linearTween = function (t, b, c, d) { return c*t/d + b; };   // quadratic easing in – accelerating from zero velocity Math.easeInQuad = function (t, b, c, d) { t /= … Continue reading

Posted in Uncategorized | Leave a comment

[BegaleBoard] How to add swap to your begaleboard

The Linux virtual memory system divides physical RAM into chucks of memory called pages. Swapping is the process of copying inactive pages of RAM to a reserved area of non-volatile storage, called swap space, to free up physical RAM for … Continue reading

Posted in Uncategorized | Tagged , | Leave a comment