Check out the Latest Articles:
First thoughts on iPad device ( after the deception )

First of all, I am (or was) one of those fanboys, who was aware of each of the rumors about this new device that Apple unveiled last 27 of January. Such was the excitement that me and some colleagues bought some food and drink to see (f5 refreshing tactic :) ) the live event.

In my opinion, Apple is one of the companies that generates more speculation in the technology world, most of them are inventions or desires of what the community really wants to see, and some of them come from the same company (this is a assumption but I have no doubt on it). From my point of view, this strategy has always worked well for the company, is free advertising, increases the impact of events and even directly influences the stock market, but this time, was exaggerated to the point that the people left people left the Convention Center Yerba Buena in an atmosphere of disappointment.

The truth is that according to Apple the iPad will be a revolutionary device, but according to the fan community, that idea was hyped ad nauseam.

I admit that I was very disappointed to see the new device, largely because I had thought much of the rumors. But now that I saw again the keynote (this time the video), I believe that all is not as bad as I thought. This is, from my point of view,  good and bad thoughts about the iPad:

Bad:

- The name (iPad) I don’t like it

- The device is completely closed to standards (The only way the device is connected via connectors of the same company), I think is a very serious mistake not to put a SD or USB port.

- It’s not multitask (at the moment, although I feel that this will change with some SDK)

- The dark margins, while writing this post on my iMac, it seems some branding issue.

Good:

- The size, is a big iTouch

- Speed, seems the chip is quite fast.

- Backwards Compatibility, All iPhone programs can run on this device ( using pixel doubling technology or compiling again ).

- Uses, becomes a tool not only to play, but to work, browse the web, etc … I really see this device in schools, businesses and homes.

- Autonomy, 10 hours seems pretty good (if it’s true)

- The price is cheap considering what I mentioned above.

Not sure:

- No flash, why I’m still undecided being a flash developer? From the standpoint of Apple, Flash never has worked well in their products, they argue that HTML5 will be a revolution on the web, is a firm commitment to them, but it is losing many developers that are going to go to Android.

- No camera, I consider essential in a device like this, but is likely to take out a connector for it, which would mean two things: Pay more for a connector, but also saves put two cameras in exchange for an orientable one.

In terms of presentation, I thought they failed in many details.

Steve Jobs unveiled the device as a revolutionary and magical product, and in fact is only a big iTouch. They lacked focus device to a wider sector, do you remember the keynote for the SDK 3.0? applications for teachers, medical staff, etc … This device would be incredibly useful in business, medicine and education! Why not aim to present it as such!?

The truth is that it presents a Google vs. Apple battle quite interesting, the Cupertino company has been the big winner in front of giants like Sony, Samsung, Nokia, etc … we’ll see the result of fighting a Titan…

VN:F [1.8.1_1037]
Rating: 3.0/10 (2 votes cast)
VN:F [1.8.1_1037]
Rating: 0 (from 2 votes)
Tools every flex developer should know ( My TOP 10 )

These are the set of tools I use in my daily job ( Flumotion ) and in my projects:

1. Adobe’s Flash Builder Beta ( Standalone or Eclipse plugin )
You have multiple solutions for flex developers some are free ( you can use your notepad and compile the code using command-line instructions ) but for me, the best tool is Adobe’s Flash Builder.
Inside Flash builder you have and amazing set of tools like Flash Debugger and Flash Profiler, and a new addition in the last version, the Network Monitor.
Maybe I should mention FDT, but I had the opportunity to see it in action and Adobe’s tool is still the best.

2. Firebug ( Firefox plugin )
If you are developing a flex application you probably will be developing for web too. For this reason you need a web browser that let you control and monitorize what’s going on. Firefox with firebug plugin will help you with this.

3. Web Developer ( Firefox plugin )
I use this plugin mainly for two purposes. The first one is disable cache ( very important ). Sometimes when you are developing for web you realize you’ve been testing a cached application for 5 minutes ( or more ), or you must clean the cache every time you want to test some change, this option will avoid this common problem and will help you saving some time. Another interesting option is resize, which let you resize the browser to custom sizes.
This plugin have another options I don’t use.

4. Monster Debugger ( AIR application )
Monster Debugger is an interesting tool for remote debugging. You can print messages remotely and this messages can not only be strings but objects.
Note: I’m currently using Monster Debugger but from my point of view the best practice would be ( and will be ) remote debugging.

5. Charles ( Standalone application )
Are you working with the AMF format? ok, if you are a firefox user, if you try to see what’s going on in the AMF communication to server you won’t be able to see anything because it’s in a binary raw format. ( OK, maybe you’ll see the name of the method :) ) I didn’t find any firebug plugin to deserialize this, but I found a cool and cheap application called Charles. This application monitorizes all the http/https requests from my computer and deserializes all AMF requests if any.

6. Flex Formatter ( Eclipse plugin )
If in your development team there’s more than one developer the code tends to be a mess in terms of coding conventions ( every developer has it’s own criteria! ). With this tool you’ll be able to establish a set of rules for different aspects of the code ( inline / newline brackets, spaces after / before parenthesis, etc… ) You can export this settings to other machines / developer’s too.
Note: If you hire a freelance you can pass the set of rules to him/ her to ensure the code follows the company coding convention guidelines once he / she finishes the job ;)

7. Adobe Flex PMD ( Java classes, runs with Ant, Automator and command-line )
Finally, a new tool I’m investigating and it’s already giving me some results. Flex PMD is a set of java scripts that examines your code and tells you which part of the code can be improved.

8. Alchemy ( Standalone application )
Sometimes you can have a good product, but you always can do it better. Alchemy is the tool to achieve this, by converting C and C++ code into a valid Flash code. You must know you cannot do anything you wouldn’t be able to do directly in Flash. The generated code it’s faster than Flash Builder’s compiler generated code.

9. Pixel Bender ( Standalone application )
The same way alchemy can help you optimizing code, Pixel Bender can help you optimizing mathematical operations. Pixel Bender runs in a different thread than Flash Player, for this reason you can accelerate logic calculations using this software.

10. Adobe Flash Catalyst Beta ( Standalone application )
From my point of view is still a not fully formed tool in terms of optimization, but keep an eye on it because this tool establishes a very thin but strong line between the designer and the developer.

I hope this post help you improving your development!

P.S: If you know another wonderful tools, please tell me!

VN:F [1.8.1_1037]
Rating: 10.0/10 (1 vote cast)
VN:F [1.8.1_1037]
Rating: 0 (from 0 votes)
Blog Upgraded!

I just finished upgrading my Blog and I’m quite satisfied, althought there are some colors I’ll change I added some cool plugins which will improve it for sure.
If you see some errors on the posts please tell me and I’ll fix it.
Thanks.
X

New Tool: Flex PMD

If you are aware of the news on the Adobe labs you may know about a new tool called Flex PMD. This tool will help you improving the quality of our code and at the same time you’ll learn about “best practices” developing with Flex. This tool studies the code of an application and generates [...]

First Stop: www.RIATrends.com

Hello everyone,

I allways wanted to create a community website and this is my first attempt. RIATrends ( beta version ) is wanted to be a reference point for users / developers / companies searching for a statistics portal, a place to find information about where the market is going and a good community to share [...]

Unicode font snippets to save some time

Probably someday you’ll need to embed your own fonts to a project because you don’t want to use the usual secure fonts ( Arial, Verdana, etc… ). You may know that when you embed a font to your project the swf size will be increased with the size of the whole font. To avoid the [...]