Back in June we visited the Offf conference in Paris. The whole experience and mix of Paris, Design Conference, Friends, World Cup, work, vacation and good weather was amazing. I created a little Site for an internal Show&Tell presentation at Big Spaceship. It shows the relaxed atmosphere of OFFF and continues with highlighting the best work that was presented, as well as recent work that was done by friends that I met up with at the conference.
I was just cleaning up some folders and found an old school project. Here is the first flash game that I’ve ever done. It was part of the class “Multimedia Programming” that i took in early 2003. It is a super simple snowboard game. Use your arrow keys to control the snowboarder and try to collect the points and avoid the trees. It’s a really rough prototype and i never completely finished it but it’s fun!
Some photomerge stitchering that i did saturday night. I took most of the pictures very fast, but i think it turned out pretty nice for a first quick experiment.
To provide a better user experience, we often use content delivery solutions at Big Spaceship, like Limelight or Akamai, to host bigger files and reduce load time. (Although this cuts into the user’s time spent watching pretty loaders.)
During a recent project, we ran into a couple of security errors loading external module.swf files from a different domain than main.swf. The idea was to have a basic framework in main that controls IN and OUT animations of the modules and have all additional functionality in the module.swf itself. All loaded swf files extended Big Spaceships StandardInOut Class to be controllable from the main file, so we could easily cast the loaded modules.
Jasmine and me had the pleasure to visit our good friends Ferdinand (portfolio13.de) and Nini in Beijing China for the week of November 21-28, 2009. It was an amazing trip and we took some nice photos. enjoy.
Ever had the problem to shrink a picture so that it fits into a Box that has a specific width and height?
Here is a really nice and very useful method that helps finding the needed ratio:
/**
* The <code>findPreferredRatio</code> method is used to find the correct ratio to fit content in a container using a maximum area.
*
* @param $width Number
* @param $height Number
* @param $maxWidth Number
* @param $maxHeight Number
* @return
*
*/public static function findPreferredRatio($width:Number, $height:Number, $maxWidth:Number, $maxHeight:Number):Number{var dw:Number = $maxWidth/$width;
var dh:Number = $maxHeight/$height;
return dw < dh ? dw : dh;
}
This blog documents my explorations in the digital space—a collection of projects, experiments, code snippets, news, travels and everything I'm involved with. Born in Germany and currently based in New York City, I am a Sr. Developer at Big Spaceship and a co-creator of influent.tv (part of LAFKON Publishing GbR, Augsburg, Germany), The Unseen Video and strictlypaper.com.