June 2nd, 2010

Compilers: Taking Flash Platform to 11 with a little help from our friends.

The Compilers will be playing a live funk rock show and giving a tech talk to walk through the apps we use on stage at the upcoming RMAUG.  For those that don’t know us, we are a three piece band of musicians that write code for a living and spend much of our time working with the Flash Platform.

The RMAUG meeting will be on the evening of Tuesday 6/8 and if you would like to attend, you can RSVP here: http://rmaug.com/

The beauty of this is that you don’t even need to attend in person since there will not only be a couple ways to watch the show remotely, but also to actually interact with our band and affect our music, that’s right, affect our music remotely no matter where you are in the world.  You just need an Internet-connected device.

So, geeks of the world unite and help us rock the world of Flash Platform goodness and learn something while you’re at it too.

Just as a teaser here’s some of the technology we’ll be using this time around:

So get your RSVP on…and experience geekRock as you’ve never experienced it before.

May 14th, 2010

Wanna catch my tech talks? Upcoming events.

It’s been a while since I’ve blogged.  I’ve been in the trenches lately.  I just wanted to post an update on where you can catch my tech talks in the near future:

Welcome to Adobe Stratus and Flash Player 10 P2P


Create real-time, social, and media rich applications with a decreased cost of delivery and infrastructure investment.  Find out how to leverage Adobe Stratus and the new Real-Time Media Flow Protocol (RTMFP) to enable multiuser applications with shared video, voice, and data without all the load being placed on the Flash Media Server. This session will also cover what previously has only been whispered about regarding the new Groups functionality that enables amazing features such as Multicasting, Posting, Direct Routing, Object Replication, and Server Channels. The future of Flash Player peer-to-peer communication is here with Adobe Stratus and RTMFP.

L33t Musicians Use Flash

Rock, robots, Flash, funk and a damn good time.  Come watch the Compilers demonstrate the use of Flash Platform technology during live performance and technical discussion.  Not only will you get your groove on with live music, but you’ll learn about what’s under the hood to drive this one of a kind musical experience. The Compilers will be playing tunes for you and be talking about how to build applications utilizing cutting edge technologies that are based on the Flash Platform.  Make sure to bring your cell phones and Internet connected devices!

See you soon!

March 11th, 2010

360Flex SJC 2010: Flex and Silverlight stack comparison Slides and Sample Apps

The slides and sample apps for the Flex and Silverlight stack comparison talk that I gave at 360 Flex with Eric Fickes are now available.  You can find them here: http://www.iheartair.com/?page_id=604

March 11th, 2010

360Flex SJC 2010: Adobe Stratus and FP10.1 P2P Slides and Sample Code.

The slides and sample code for the Peer-assisted networking talk that I gave at 360 Flex with David Hassoun are now available.  You can find them here: http://www.iheartair.com/?page_id=609

February 26th, 2010

Global Ignite Week (Denver) – Be there or be square!

On Tuesday, March 2nd O’Reilly’s Global Ignite Week is making it’s way to Denver. Ground zero is going to take place at Rackhouse pub @ 6:45pm.  $2 Flying Dog Beers all night, a live comedian, and some cool door prizes. Heck, enter the speed round for your chance to win a genuine bottle of Stranahan’s Colorado Whiskey

Also, net proceeds for the event will be given to a local charity, The Bridge Project.

Not only will you get to experience my talk “Mainstream recycling practices are a crock of shit.” but you’ll see 15 other great sessions: http://ignitedenver.org/2010/02/ignite-denver-6-the-line-up/

So what are you waiting for?  Come help us Ignite Denver!  Register now: http://ignitedenver.eventbrite.com/?ref=ebtn

February 22nd, 2010

New Devnet Article: Peer-assisted networking using RTMFP groups in Flash Player 10.1

David and I have an article we worked on with Adobe released on Adobe Devnet today. For those of you interested in bringing P2P into your Flash Platform applications this is a good introduction on all the features you’ll have available to you with Flash Player 10.1, RTMFP, and Stratus 2/FMS 4.

There’s good information, a good sample with source code, and good illustrations to help you get going.  The last word document revision I submitted was 28 pages long, just to give you an idea on the wealth of information in this article.

Also, we’d like to thank our Adobe tech reviewers and editors for helping us get through this!

Here’s the direct link: http://www.adobe.com/devnet/flashmediaserver/articles/p2p_rtmfp_groups.html

Enjoy!

February 10th, 2010

360 Speaker Chat: The Dr. and the Rocker talking Flash Platform and Silverlight Platform

Chat is @ Thursday Feb 11th, 11:30am MST

Eric Fickes and myself will be talking to the 360|Flex guys tomorrow about our session.  It’s actually going to be a back-to-back mega session comparing the latest and greatest on both the Flash Platform and the Silverlight Platform.

Come check it out and feel free to ask questions…although for the good stuff you’ll have to wait until our talks. ;-)

Here’s the full details: http://www.360flex.com/blog/2010/02/360flex-speaker-chat-eric-fickes-and-jun-heider/

December 23rd, 2009

Make a video about why you love 360|Flex, win some cool prizes!

Click above to register and help me get the party suite!

The 360|Flex guys have a copy of Flash Builder Pro, and CS4 up for grabs, and of course a ticket to 360|Flex. They’ll select the best video before the conference and show the videos before the keynote.  Here’s the details on the contest: http://www.360flex.com/blog/2009/10/360flex-be-a-movie-star-win-a-pass/?utm_source=360%7CFlex+San+Jose+Speakers&utm_campaign=9e6b1c9270-360_Flex_San_Jose_Speaker_Email_312_16_2009&utm_medium=email

November 25th, 2009

Memory Management: Use the Lightest Classes You Can.

David and I have been teaching Flex at a local college.  Recently David mentioned to a student that he should use a lighter-weight class for a mask than Canvas.  The student asked why.  This brings up a good point.

When you’re using various Flex framework classes, you need to stop and think.  Do I really need the class I’m using or can I get away with something smaller.  One good example is when you’re creating custom MXML components.  Many times a rookie developer will create an MXML component with a Container as the root component when all they really need to do is to make a UI Control the root component.

In the case of the question, when using a mask, a very lightweight class the Sprite could have been used if the student had not needed the mask to participate in the display list.  Otherwise, they could have used a custom class based on UIComponent, vs using the larger Canvas class.

Just to re-enforce David’s point, I created a little POC where I created three custom classes, one based on Canvas, one based on UIComponent, and one based on Sprite.  I did not create any custom code in these classes, they were simply used so that they’d be easier to call out in the Flex Builder Profiler.  Then I profiled the application and here’s a screenshot of the results.

As you can see, there can be significant memory impact when you use classes that are more robust than you need.

That being said, pay attention to the classes you use in your code, and always stop to think, do I really need to use this class, or can I get away with something that is lighter-weight?

November 23rd, 2009

360|Flex San Jose 2010: RIATron and P2P coming to San Jose

Here’s two very good reasons to attend 360|Flex in San Jose:

Reason 1:

David Hassoun and I will be co-presenting all that is cool in the world of Flash Player 10.1, Adobe Stratus, and RTMFP.  It’s going to be a great presentation on some of the cutting edge Adobe technology.  So register for 360 and come to our presentation:

Adobe Stratus and Flash Player 10 P2P: Enterprise Multi-user Applications Without the Need for Large Server Infrastructure

Reason 2:

I’m excited to announce that I’m FINALLY going to do my Silverlight for Flex developers talk.  The scope of my original idea has changed and now it’s now evolved into a product compare/contrast, developer workflow, media delivery, and back end system talk.  The cool thing is I’m bundling it up with my friend, and band mate Eric Fickes who will focus on the server side of things.  So register for 360 and come to see the RIATron:

Session 1: Adobe is from Mars, Microsoft is from Uranus: A View from the Client
Session 2: Adobe is from Mars, Microsoft is from Uranus: A View from the Server

« Previous Entries

Community Jun

Ignite Denver Committee

Written Jun

Flex Authority Vol. 1 Issue 2
InsideRIA
Fusion Authority Quarterly Update

Gamer Jun

Categories

Credits