Thao's profileThao Nguyen's spaceBlogListsNetworkMore ![]() | Help |
Thao Nguyen's space |
||||
|
November 06 Top 20 Resources to Get Started with Silverlight and BlendSource: http://ux.artu.tv To Get Started: 1. Go through the Starter Kits 2. Go through the Full Course 3. User Online Resources to get additional info and more tutorials ONLINE RESOURCES Download the Expression Blend Trial http://www.microsoft.com/expression/products/Blend_Overview.aspx Get the Expression Blend for Free via the WebsiteSpark program! http://www.microsoft.com/web/websitespark Project Rosetta http://visitmix.com/labs/rosetta Silverlight Switch http://www.silverlightswitch.com/ Nibbles Tutorials http://www.nibblestutorials.net Kirupa.com http://www.kirupa.com/blend_silverlight Expression Blend Team Blog http://blogs.msdn.com/expression Download Additional Behaviors – Community Gallery Dynamic Prototyping with SketchFlow in Expression Blend http://www.dynamic-prototyping.com/sketchflow Expression Community http://expression.microsoft.com Silverlight Community SilverZine Andy Beaulieu Victor Gaudioso http://victorgaudioso.wordpress.com/category/silverlight-video-tutorials FULL COURSE In this course you will learn all the basics to create Silverlight and Expression experiences. It is an end to end get started. It includes an almost 200 page mini book with exercises, reference material and explanations by American Graphics Institute instructors. It also includes a collection of assets that you will be using throughout the course. For more specialized training check out the Starter Kits below. File 1 : Get Started with Silverlight - Full course > (100-200 level content) File 2: Service Pack 1 for the Get Started with Silverlight course – (you need this file in addition to the Full Course file) STARTER KITS Silverlight Introduction to Prototyping with Sketchflow in Expression Blend 3: Assets, Guide and Video Package Discover Sketchflow, a new feature set in Expression Blend 3 that helps you define the concept for user experiences in early stages of the design process. From sketches to wireframes to protoypes of simple or high definition, Sketchflow provides you the right tools to communicate your ideas and gather feedback from others. Creating a ColorSwatch Control in Expression Blend 3: Assets, Guide and Video Package Victor Gaudioso and AGI Training take us on a tour to learn how to use a custom layout control like the Circular Panel to create fun and creative arrangements of objects in a List Box control. No longer Lists need to be linear and boring. You will learn how to customize this circular panel enabled Listbox to look like a Color Swatch control. This will help you reuse this control in your own projects easily. Venture into Gaming with Behaviors in Expression Blend 3: Assets, Guide and Video Package Learn more about how to build a traditional “bricks” game using Expression Blend 3 Behaviors. Simply drag and drop Behaviors over objects in your artboard to easily add powerful and sophisticated functions like animation, physics, interactivity, data connection, effects and more. All without coding. The ever growing Behaviors Gallery at expression.microsoft.com is always avaialable for you to download new behaviors. Support for Silverlight in Expression Web 3: Assets, Guide, Video Package Learn how to leverage the new and easy to use Silverlight support features in Expression Web 3. Using a template kindly provided by TemplateMonster.com, AGI Training will help you learn how to take your websites and publish them to an FTP location without having to leave Expression Web. For Integrators or UI Developers: Building a Product Website with Expression Blend 3: Assets and Guide Christoph Schittko, Architect Evangelist for Microsoft has produced this amazing lab that will take you by the hand (metaphorically speaking J) and help you put together a Product website that leverages the new Perspective Transformation in Silverlight 3 to create a 3D based rotating Zune that you can customize choosing colours or tattoos. Expression Web Discovering SuperPreview in Expression Web 3: Assets, Guide and Video Package Learn more about SuperPreview, a new visual diagnostics tool in Expression Web 3. In this Starter Kit using a template kindly provided by TemplateMonster.com, you will be provided with detailed guidance on how to leverage SuperPreview to diagnose issues across multiple browser, all with full rendering fidelity and detailed control. Creating Standards Based Websites with Expression Web 3: Assets, Guide and Video Package Learn how to produce beautiful and fully standards compliant websites with Expression Web 3 with this Starter Kit. Based on a template kindly provided by TemplateMonster.com, AGI Training gives us a tour on how to follow better practices to achieve W3C compliant HTML code. November 05 Set up tools to develop Android Application (Android SDK 2.0)Tối nay rảnh không biết làm gì, ngồi tìm cách set up tools để viết ứng dụng Android thử Dưới đây là từng bước mình đã làm: 1. Download Eclipse for Java developer from here: http://www.eclipse.org/downloads/ 2.Download Android SDK from here: http://developer.android.com/sdk/index.html3. 3. Extract Android SDK vào 1 thư mục nào đó. Chẳng hạn: D:\AndroidSDK 4. 4.Set up Eclipse 5. 5. Mở Eclipse\Help\Install new software 6. Chọn Available software tab/Chọn Add 7. 7. Gõ Name = ADT, gõ đường dẫn sau vào Location: https://dl-ssl.google.com/android/eclipse/, Nhấn OK 8. Quay lại mục Available software, trong combobox danh sách plug-in chọn ADT 9. 9. Chọn Developer tools, check vào 2 mục “Android DDMS” và “Android Development Tools”, Nhấn Next 10. Restart Eclipse, Chọn Windows/Preference, chọn Android , dán vào mục SDK: D:\AndroidSDK, nhấn Apply/OK 11. Chọn Window\Android SDK and AVD Manager 12. Trong mục Available Packages, chọn thành phần muốn cài đặt, ở đây chọn SDK Platform Android 2.0, API 5, revision 1 13. Thêm D:\AndroidSDK\Tools vào biến môi trường Path14. Mở Command Prompt, chuyển đến D:\AndroidSDK\Tools, gõ vào lệnh sau: android create avd –target 2 –name my_avd Bây giờ có thể tạo 1 Android App rồi. Cheers, :-) August 02 Planning for DeploymentNever underestimate the complexity of launching your latest system.
Planning for Deployment Step by Step The next major issue is developing your deployment strategy: Will you run the new system in parallel with the existing one or perform a cutover? Running the systems alongside each other lets you easily back out to the original system if the new one runs into problems. However, parallel operations require significant effort on the part of everyone involved: Your users will need to do double entry, the operations staff must run both systems, the support staff will have two systems to support, and the development staff may need to create integration code that temporarily works behind the scenes to synchronize data. For many systems, particularly those supporting online customers via the Internet, a cutover is the only option—few customers would be willing to place their book order with both Amazon version N and Amazon version N+1. With a straight cutover, you'll need to plan for the downtime when the cutover occurs—a period that could last from a few seconds to a few hours or even a few days, depending on the system being deployed. The ability to back out becomes critical with this approach, requiring additional resources to develop and test "de-installation scripts." In fact, many system deployment efforts fail miserably because the development team didn't consider how to back out of their new system, only to discover that they had to do so because of an unforeseen problem during installation. An effective installation routine will include go and no-go checkpoints at which you determine whether deployment efforts are on time and working smoothly. If you don't have these crucial checkpoints, you need to consider stopping and de-installing to a known and safe state from which to attempt deployment at a later date. Never assume that your deployment efforts will go smoothly. From Back to Front Start deployment planning early in the project life cycle, particularly when deployment may be a complex issue. For example, I was once involved with a project for which we needed to physically install a system at 450 separate locations. Our users were geographically dispersed and computer illiterate. Depending on the location, we had to either replace existing hardware or install new equipment. At each location we needed to run a data backup and conversion program, and we had to deploy the system at night so as not to disturb the day-to-day operation of the business. For another project, we had to deploy our systems into a dynamic environment in which several systems worked together, shared common components, supported 24/7 operations and had very limited deployment windows due to service level agreements. As you can see, deployment can be very complex—it may be the most difficult issue that your team faces. Accordingly, it should be considered early, because if you can't deploy your system, you shouldn't build it. An early focus on deployment not only enables you to avoid problems, it also lets you take advantage of your experiences during development. For example, take notes on what works and what doesn't when you're deploying software into your staging area (Thinking Objectively, May 2001); these notes can serve as the backbone of your installation scripts. For example, when deploying an Enterprise JavaBean (EJB) application for the first time, you'll encounter several common "gotchas," such as how to define XML deployment descriptors, where to put them and how to deploy EJB JAR files. During development, you'll also discover dependencies between your system and others—dependencies that should appear on your deployment model, but affect your deployment plan because they imply the order in which updates to the various systems must be installed. You'll need to negotiate deployment efforts with the other teams that own the systems that your system depends on, effectively creating a cross-project effort that would be included as part of your Infrastructure Management workflow efforts (assuming that you're following the enhanced life cycle of the Unified Process). If your system's interface changes, or if you need new ways to access their systems, they may also need to release all or part of their systems before yours. Training your project customers is always an important part of deployment. They may even need training beyond how to work with your application. For example, this might be the first time that some users are working with a PC, a browser or even a mouse. Similarly, this may be the first time that your operations staff works with a new technology that your system uses, such as an EJB application server Pump It Up You may also need to plan for upgrades to your support environment. Are your existing change management process and required tools in place and sufficient for your needs? If not, you need to plan for appropriate development, training and installation of said tools and procedures. Your support department may need to have their support problem simulation environment or help desk product (which they use to track defects and enhancement requests) upgraded, as well. A good reality check for your deployment plan is your deployment model; in fact, I often develop the two in parallel. Different deployment architectures, as described by your deployment model, will require different strategies for installation, and therefore will demand different plans. For example, a fat client system requires an installation script that can be operated by your users, whereas an n-tier thin-client application requires an installation script that can be followed by your operations folks: Different customers for the installation script require different levels of script sophistication, and of the strategies used to develop and test those scripts. Don't forget to distribute the documentation for your system, particularly user documentation (Thinking Objectively, June 2001). Electronic documentation can be deployed along with your software, but physical documentation will need to be distributed appropriately. Will physical documents be distributed as part of training sessions, on demand via some sort of document order process, or as part of the system installation itself (in the box for shrink-wrapped software or distributed via your mail system for internally developed software)? Thinking these issues through in advance will save you headaches later. Now Presenting … Deployment planning is an iterative task, one that starts early in the project life cycle and continues until the actual deployment of your system. Most projects don't need a separate deployment plan, but the fact remains that deployment activities must be planned, regardless of the nature of your project. Never underestimate the complexity of software deployment. The "Don't Forgets" of Deployment Planning When planning your system's release into production, remember that you may need to:
|
||||
|
|