After we had successful Flex events in Bucharest, Craiova, Timisoara, and Cluj it is time to have a great one in Iasi. So, if you want to learn more about the Flash Platform, to meet other people from the community, or just get the first taste of Flex come on October 31st at the Alexandru [...]
Tag Archives: Conferences
Wrapping up MAX 2009
I took some time to think of what I’ve seen at last week MAX 2009. And although I knew what will be the announcements, the way we chose to package was a surprise for me and, at the same time, the crowd’s reaction was an interesting barometer. Because it is one thing to think that [...]
Watch Designing for Augmented Reality
Below you can watch my full session on augmented reality from Adobe MAX. I highly recommend watching this in fullscreen so you can actually make out the code snippets. I love that I had to use my backup project called IfShitFails. I will also be doing a video tutorial on using FLARManager later today.
Enjoy!
Lee
The Adobe MAX Dead Drop explained
Well another Adobe MAX has come and gone and this one seemed to be a great event. As part of this year’s event I put together an official dead drop competition. At first I was concerned that the involvement of Adobe legal would stifle the fun but it turned out to be a great drop. There were some Flash celebrities competing for the prize but in the end the prize went to savvy web developer Trevan Richins. Below are the details of how the prize was won.
The Hidden Star
I wanted the first clue to be one that designers would perhaps have a slight edge at since there were many attending MAX. The clue consisted of a downloadable Illustrator file containing a bunch of stars. This sent many developers scrambling as they either had never opened Illustrator before or didn’t even have it installed on their machine. The trick was realize that there were 16 star paths in the layers panel but only 15 that were visible on the artboard. Way off to the left hand-side there was a microscopic star with a sequence of numbers cut into it. You can download the Illustrator file to see for yourself.

ASCII Keyboard
The next clue was a little more of developer thing as you were required to read a string of numbers and convert them into their ASCII equivalents. Now I know this is child’s play for developers but for designers this may pose somewhat of challenge. The translated string gave the location of a serial number that they had to retrieve to move to the next challenge. Translate the string below to find out where that was.
83|101|114|105|97|108|32|110|117|109|98|101|114|32|111|102|32|107|101|121|98|111|97|114|100|32| 97|116|32|83|99|101|110|101|55|32|112|111|100
TOPHAT
The next challenge involved nothing more than good old fashioned research. The contestants were taken to a page which contained a video of a documentary about espionage. They had to first figure out that the video was about Aldrich Ames and then they were asked to find out the FBI cryptonym of the old man with no shirt on. The easiest way was to go to YouTube and find the video. This would give you the agent’s name, Dimitri Polyakov. From their you could go to his Wikipedia page to find out that his cryptonym was TOPHAT.

The Mysterious Grid
The next challenge was quite a bit more complicated. People were brought to a page containing the this image. Most people were completely stumped about what to do with it. Many thought that they were supposed to find a similar grid somewhere in the convention center. People were wandering around looking at the ceiling and windows. In reality, the image contained the full text of the Declaration of Independence. The ASCII values of each letter were encoded as pixel colors and spread out to form a grid. Some hardcore flashers like Joa Ebert, Mario Klingemann,and Marc Thiele solved this one very fast however. The winner, Trevan, solved this one in a really cool way. He opened up the Firebug console and created an HTML 5 Canvas and used it parse the pixel values, as there is a full bitmap API. How cool is that! I’m including his clever code snippet below.
|
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
var canvas = $(‘test2′).getContext(’2d’);
canvas.drawImage($(‘test1′), 0, 0); var canvasData = canvas.getImageData(0,0, 400, 200); var width = 400; var y = 0; var x = 0; var pixel = canvasData.data[(y * width + x) * 4 + 2] var text = ”; for (var i = 0; i < width; i++) { x = i; pixel = canvasData.data[(y * width + x) * 4 + 2] text += String.fromCharCode(pixel); } console.log(text); |
Room Within a Bathroom
The final clue said nothing more than FIND ME NOW. I started walking through the expo hall when Joa and Marc came running at me. After trying to run away I handed them the final clue which was a photo of a bathroom and another door. Trevan was next to find me followed by several others. Joa and Marc found the bathroom first as well as the interior janitorial closet inside of it. I had hidden the coin behind some pipe insulation on the water heater. Worried about being caught, they locked themselves inside and soon a janitor was there trying to unlock it. Trevan had come to the room, found it locked, and then went and got said janitor to open it for him. After Joa and Marc had given up, they decided to go back for one last try. They found Trevan there who was just removing the insulation to reveal the coin. Marc saw it and said he could of snagged it but being the nice guy that he is, he let Trevan claim it for the win. Talk about a hilarious end to a great dead drop.

Lee
Flex Evening in Cluj
My friends from the Transylvania Flex User Group drop me an email announcing a Flex event on October 15th. Here is the agenda:
MX.EVENT – Transylvania Flex Group – October 15th
17:30 – 18:00 Intro
18:00 – 18:45 Flash/Flex from a Product Owner perspective (English session) by Mattijas Larsson (Product Manager at Betfair)
18:45 – 19:00 Break
19:00 – 20:00 [...]
2010 RIA Conferences List
Adrian Parr has a really great list of the 2010 RIA-themed conferences that have been announced. I’m hoping (and assuming) that he’ll be adding to this list as more conferences get added. There are a few on that list that I’ll know I’ll be attending (and a couple I need to check on) and I’m looking forward to connecting with everyone. Hopefully Adrian will add MAX 2010 to this list when we announce the dates (hopefully) after this year.
Thanks for the list Adrian!
Going to MAX LA 2009
Tomorrow I’m gonna fly out to Adobe MAX Los Angeles 2009. This will be the forth MAX for me. And I have to say that it doesn’t matter how many I attended before, because somehow it is always give me the same exciting I got for the first time. Maybe even more now than before, [...]
AIR MAX Companion application is live
If you want to twitter and to see all the tweets that are MAX related (#AdobeMAX) you can use this sexy app MAX Companion (you can install it from here).
Once you installed the application you’ll see that there are three main features: Twitter, Sessions, and Places. The Twitter, as I said, helps you send [...]
AIR sessions at Adobe MAX LA
If you want to learn more about Adobe AIR and you plan to attend Adobe MAX 2009, then you should book these sessions:
What’s Coming in Adobe AIR 2 by Christian Cantrell. Adobe AIR allows developers to build rich Internet applications (RIAs) that run outside the browser on multiple operating systems. In this session, you will [...]
Flash Platform events calendar
If you want to stay informed about what events we are doing, here is an easy way: the Flash Platform events calendar. It uses Google Calendar, so you can subscribe to the calendar and follow it via XML or iCal.
You can read more on the Adobe Flash Platform Blog.