February 16th, 2010
I have been playing with pushbutton game engine for some time ,its really good to be able to create games without using flash IDE.there are few tutorial on pushbutton game engine ( there are really less tutorial on any game engines)this one is really a great resource for pushbuttongameengine http://pushbuttonengine.com/devgallery/pushbutton-tutorial-series .I am also learning Tile Studio for creating Tiles and maps. http://tilestudio.sourceforge.net/pushbutton engine contains really cool things like tracking object, box2d wrapper, easy way to make animation and many more.I have used sprites from the tutorial.here is link to what i have created till now , please wait for a while as i have not kept loading (loaders)http://codewithme.com/bugs/ I hope to create a full blown platform game with some orginal story line
Posted in JAVA | No Comments »
December 28th, 2009
I posted my carrom board game as a facebook app http://apps.facebook.com/carromboard and got good number of monthly active users in 2 days, really inspired by numbers if i get time i will post all of my games in facebook I have been trying to teach myself some isometric drawings and isometric enginesif i get time i will try built something as farmville !!!!!!
Posted in JAVA | No Comments »
November 24th, 2009
i just got some actionscript/javascript code where function returns the function. Confusing at first but really provided with amazing function call syntax:<script>outer=function(a,b){alert(a+b);inner=function(a,b){ alert(a+b); return inner}return inner;}outer(12,12)(12,3)(1,1)(1,1)(12,23);</script>
Posted in JAVA | No Comments »
November 13th, 2009
here is my new carousels in flash with some 3d and z sorting
Posted in JAVA | No Comments »
September 6th, 2009
I just completed a flash game using AS3 and box2d physics engine . i guess it is the first flash carrom board game with some physics in it click here to have a play with this game
Posted in JAVA | 2 Comments »
August 20th, 2009
Posted in JAVA | No Comments »
August 18th, 2009
I have been teaching myself box2d engine for as3 despite few resources and poor documentation i have come up with first test here is how it looks like .flash test with box2d
Posted in JAVA | No Comments »
August 11th, 2009
- Groovy closures
- Quaere (http://quaere.codehaus.org/)I have been using this great for grouping and filtering
- Lambdaj (http://code.google.com/p/lambdaj/)looks great with wonderful support for static typing
- JRuby closures
- JOSQL http://josql.sourceforge.net/
Posted in JAVA | No Comments »
August 5th, 2009
I have recently worked with a diff tool (daisey) and installed a tool to compare two html files and get the difference.
i could not use built in xslt engine that comes with standred jre because it is not supported by google app engine. i had two choices xalan and saxon i prefered to go with saxon as because saxon is light weight than xalan.
regniraj.appspot.com is where my diff tool lies
Posted in JAVA | No Comments »
July 20th, 2009
copy following lines make a batch file and run the batch file
FOR /F "tokens=*" %%G IN ('DIR /B /AD /S *.svn*') DO RMDIR /S /Q "%%G"
i got this one somewhere
http://blog.snakehit.be/2007/08/29/svn-recursively-delete-svn-folders/
Posted in JAVA | No Comments »