Archive for juin, 2009

Du WiFi pour recharger son téléphone portable

By admin - Last updated: Mardi, juin 16, 2009

A voir ici une news qui parle d’un projet d’utilisation des ondes radios pour recharger votre téléphone….. http://www.clubic.com/actualite-282140-du-wifi-pour-recharger-son-telephone-portable.html

Pixel tricks

By admin - Last updated: Lundi, juin 15, 2009

Some well known piece of code for adding pixel with overflow, transparency and verly low cpu cost. public static int MASK7Bit = 0xFEFEFF; public static int pixel; public static int overflow; public static int add(int c1, int c2) { color_c.pixel = (c1 & MASK7Bit) + (c2 & MASK7Bit); color_c.overflow = color_c.pixel & 0×1010100; color_c.overflow = [...]