Author Archives


4
Oct 11

Installing USVN and migrating from old subversion server

So lately we changed server and although I’m using now Indefero (integrated git) to manage my projects I was in need of having subversion for all my old projects.
I used to use svnmanager on our old server but wanted to give a try to another web interface. So I choose usvn

USVN Installation

Download usvn here and unzip it somewhere on your web server.
Follow the main installation guide here with the following tips:

  • before starting the install, get the latest zend framework here. Backup the Zend folder existing in your usvn library folder and add the one from the latest downloaded zend framework found in the library folder. This is because the framework shipped with usvn is old and not in sync with the latest mysql package.
  • start the installation script accessing the install.php directly (http://youraddress.com/install.php)

Importing existing repositories

In my case my old subversion server was already offline, but the repo still existed. So I have copied them onto the new server somewhere using rsync over ssh. Nice guide here.
Once done, you need to import the projects into usvn. To do so they have done a script you can find in the library/tools folder named usvn-import-svn-repositories.php. The thing is this script is outdated now, so a usvn user has updated it. You can find it here. And here is how to use it.

Once the project imported, copy the files from the old repo to the newly created under the svn folder (that you have configure during the install) and finally change the owner to be your webserver (apache or www-data or … ).

Voila, all should be good now. Add a group and user to be able to access it.


10
May 11

Create Android application interface with some nice tools

I just came across a google code project android-ui-utils aiming at helping designer/developer to design their android application.

There is 2 seperate application:

  • Pencil for firefox, an already well know existing application. They have created the toolset for this app … or
  • A custom web based application (Android Asset Studio)

Might be helpfull for some…


11
Jan 11

ZamfBrowser and subversion

Just a quick one for the people that use ZamfBrowser and for myself (as a reminder)

I’m playing with ZendAmf right now so I’ve downloaded and installed ZamfBrowser, and got a really weird behavior.
I was able to get my gateway working, ie I could run my app and everything was fine, trying to access the services using ZamfBrowser was giving me an error.
Looking at the ZamfBrowser, it ties to load all the files/directories under the directories you specified for your services, including the .svn, where it fails.
So just replace line 62 (in the getServices method) with this one

if (file_exists($filePath) && $file != "." && $file != ".." && $file != ".svn")

and it should be all good now.


4
Jun 10

Flixel for Android

Recently I came across this post.
Flixel has been ported to Android, so games (well a specific kind of game) should be easy to develop :)
You can get the source here
and read the tutorial here


14
May 10

webDU 2010 – Caleb Adam Haye – Continuous Integration

Session Detail

To be discussed will be the overall concept of continuous integration, detailing the overwhelming benefits (and challenges) of employing a continuous integration strategy into your Flash Platform development paradigm, which transcends the build process into a science, rather than a black art. We will also cover concrete approaches to implementing continuous integration. Specifically, best practices for developing rich internet applications on the Flash Platform, with an emphasis on Flex/AIR development.  Some of these concepts include: PureMVC integration, generating documentation, setting up project dependencies, integrated unit testing with FlexUnit, and elegant deployment – all autonomously.
By Caleb Adam Haye

Here are the videos
Continue reading →


13
May 10

CPLUV is using Sphinx

Cpluv has done the switch for its search engine from Zend Lucene to Sphinx.

It is actually a breeze to implement and work with Sphinx once you got to know how everything’s working :)
When we choose the engine to be used instead of Zend Lucene, there were 2 finalist. SolR and Sphinx.
We used sphinx because of its ease to use/index and configure.
I’ll publish a small beginner tutorial tonight to help people to jump in Sphinx.

The community is great, although the forum could be better. But I know that they’re working on a new website, so it will probably be updated.
It’s definitely worth a look if you’re looking for a POWERFUL, FAST AND LIGHT search engine.


13
May 10

webDu 2010 – Mike Downey – Casual Gaming, what developers should know

Another video of the webdu 2010 conference in Bondi Beach, Sydney.
I’m sorry the battery of my nexus one died during the session, so you have only the first 40 minutes :/

Session Detail

In this session you will learn about development, deployment, and distribution, leveraging multiple technology platforms. Mike will also talk about some of the work that Microsoft is doing to make casual game development easier, faster and more flexible. He will also demonstrate some of the exciting innovations planned for gaming on the upcoming Windows Phone 7 Series devices.
By Mike Downey

Anyway here are the videos
Continue reading →


11
May 10

WebDU 2010 – Michael Plank – Component Architecturel

Hello,

I will be posting some videos of the webDU 2010 sessions.
The first one is the component architecture done by Michael Plank

Session Details

Conventional game architectures enjoin you to use an inheritance based class hierarchy which often ends up in having huge type hierarchies and bloating base classes which you have to extend. This makes it really hard to reuse certain parts of the game. Component-based game architecture is a completely different approach to creating games. The idea is to assemble the game from small pieces so called components. This design uses composition instead of inheritance and enables you to develop highly reusable parts. Michael gives an introduction to component-based development and how it was used in the Flash realtime multiplayer strategy game DeltaStrike.
By Michael Plank

Here are the videos
Continue reading →


3
Dec 09

CPLUV is live

Well after some crazy months of development through my company Shaperstudio Ltd I’m glad to tell that the new cpluv website is live.

It will probably need some tweaks here and there in the next couple of weeks but the harder is behind us now :)

For this project we’ve been using the Zend Framework. When Shaperstudio’s blog will be up, we’ll then probably post some tutorials regarding this excellent php framework.

Meanwhile enjoy the new cpluv website

And it means now I’ll have time to post more stuff on this blog too ( flash related for sure )

++


6
Oct 09

Flash on IPhone using cross compiling :)

As Zwetan said on the FCNG mailing list, flash apps will be available on IPhone. The magic is cross compiling.
You will create an application in AS3 and Flash CS5 will compiling the swf to native iphone app.
How cool…

Check those links:
http://labs.adobe.com/technologies/flashcs5/appsfor_iphone/
http://www.adobe.com/devnet/logged_in/abansod_iphone.html
http://labs.adobe.com/wiki/index.php/Applications_for_iPhone:Developer_FAQ
http://forums.adobe.com/community/labs/flashcs5/appsfor_iphone
http://onflash.org/ted/2009/10/source-to-4-flash-iphone-apps.php

Read some more at Mike Chambers Blog