Help TapDoctor to beat the viruses that have escaped from his laboratory.
They are very bad but when they are more than two they are not able to agree.
Tap where you have to join and exterminate them. Continue reading
Author Archives: jonas
Animated html5 logo with adobe edge preview
A simple anim build with Adobe® Edge.
Works well with Chrome, Firefox 5 & Safari iPhone – Seems that IE9 doesn’t like scale on svg… Continue reading
A Performance test class for AS3 Mobile dev
I currently need to do some bench to optimize my iPhone game. (TapDoctor
)
So I’m working on a simple class to facilitate the work, inspired by the Grant Skinner performance test, but with the mobile constraint : be as light as possible.
Continue reading
Time management for as3 mobile dev – Tick, Timeout and Interval
While working on my iPhone game project I realized that AIR 2.7 for IOS introduced bug with the Timer class and setTimeout.
So I wrote 3 static classes : Tick, Timeout, Interval class to bypass the problem. (With a big thx to @seraf_NSS for test, debug and enhancements)
Continue reading
A Timeout class to replace setTimeout in AIR 2.7 for IOS
After a first compilation of my AIR for IOS app with AIR 2.7 the situation was not good.
The application that was developed and optimized for AIR 2.6 was not smooth at all
A few tests later, I isolated the problem: The setTimout() method does not work properly (?) in AIR 2.7 for IOS.
Continue reading
AS3 Error Manager with UncaughtErrorEvent – ErrorHandler 0.2
Some modification on my ErrorHandler class – sources.
AS3 Error Manager with UncaughtErrorEvent
This class has been updated -> ErrorHandler 0.2
With flash player 10.1 an UncaughtErrorEvent object is dispatched when an uncaught error occurs.
Here is a small class for displaying errors within the application based on selected parameters …
Sources on Github
Continue reading
Deform your friends face with warpalizer alpha
Un petit post pour présenter un petit projet perso.
Warpalizer est une appli facebook qui permet de déformer ses photos et celles de ses amis. Actuellement en version alpha, l’appli est destinée à évoluer…
Continue reading
Create cmd aliases in Windows
While Linux has a simple command alias, this will require more work in windows.
We will firstly use the doskey command :
doskey ls=dir $*
This command will create an alias ls that will execute the dir command.
The variable $* allow us to pass all of the arguments entered after the alias.
We can now use ls command instead of dir. Works very well, but alias won’t be saved when we quit
We will now set multiple commands in an external file :
cmd_aliases.txt
ls=dir $* ps=tasklist $* clear=cls
And execute :
doskey /macrofile=c:\bin\cmd_aliases.txt
Good, but we still loose our aliases when we quit.
We’ll have to put this command in an autorun script called when cmd.exe launches.
cmd_autorun.cmd
@echo off cls doskey /macrofile=c:\bin\cmd_aliases.txt
And a last script to install our autorun in registry :
cmd_autorun_install.cmd
reg add "hkcu\software\microsoft\command processor" /v Autorun /t reg_sz /d c:\bin\cmd_autorun.cmd
Execute cmd_autorun_install.cmd (double click)
That’s ok !
Sources :
https://users.cs.jmu.edu/bernstdh/web/common/help/ntshell.php
http://superuser.com/questions/49170/create-an-alias-in-windows-xp/115259#115259