SlideShare a Scribd company logo
Boutique product development company
It is amazing what you can accomplish when you have a client-centric team to deliver outstanding products.
An Insight to Microsoft Platform
           Tahir Rauf | Software Architect
An Insight to Microsoft Platform
Topics covered in the presentation




     •   Development Tool Overview
     •   Visual Studio Demo
     •   Tips & Recommendations




                                     Tahir Rauf | Software Architect
An Insight Into Microsoft Platform

Development Tools Overview


     •Microsoft .NET
     •Microsoft SQL Server
     •Windows Azure
     •Windows Phone 7
     •XNA and Kodu Framework
     •Silverlight
     •Microsoft Visual Studio




                                     Tahir Rauf | Software Architect
An Insight Into Microsoft Platform

.NET Framework – General overview




                                     Tahir Rauf | Software Architect
An Insight Into Microsoft Platform

Overview of General Features


 •    Interoperability
 •    Language Independence
 •    Base Class Library
 •    Portability (Mono, DotGNU, CrossNet)
 •    Simplified deployments
 •    Security




                                             Tahir Rauf | Software Architect
An Insight Into Microsoft Platform

What is Silver light

• Application framework for Rich Internet Applications

• Subset of WPF

• Uses XML based representation of presentation using XAML

• XAML targets multiple platforms (desktop, web, mobile)




    )
                                                    Tahir Rauf | Software Architect
An Insight Into Microsoft Platform

Silver light Programming Model




                                     Tahir Rauf | Software Architect
An Insight Into Microsoft Platform

How Silver light Works




                                     Tahir Rauf | Software Architect
An Insight Into Microsoft Platform




                                     Tahir Rauf | Software Architect
An Insight Into Microsoft Platform

Gaming frameworks (XNA & Kodu)


 • Cross platform Game development framework
 • XBOX, Windows, Mobile, Zune
 • C#, VB.NET as compared to traditional C++
 • Kodu – codeless way of game development




                                               Tahir Rauf | Software Architect
An Insight Into Microsoft Platform

Microsoft SQL Server




                                     Tahir Rauf | Software Architect
An Insight Into Microsoft Platform

MS SQL Server high level feature set

 • Database Engine (DBMS) (SQL server management studio)

 • Analysis services (Multidimensional Data, Data Mining) (Business
      intelligence development studio)

 • Integration services (ETL)

 • Replication

 • Reporting Services (Business Intelligence)

 • SQL Server Service Broker




                                                   Tahir Rauf | Software Architect
An Insight Into Microsoft Platform

What is Windows Azure




                                     Tahir Rauf | Software Architect
An Insight Into Microsoft Platform

How Windows Azure works




                                     Tahir Rauf | Software Architect
An Insight Into Microsoft Platform

Azure Features overview


 • Focus on your application, not operational constraints.
             • Administration

             • Availability

             • Scalability

 • REST and managed APIs (storage services even out of cloud)

 • Fault Tolerance (3 times replication)

 • VM

 • In built, caching support


                                                     Tahir Rauf | Software Architect
An Insight Into Microsoft Platform

Windows Phone 7

                          Runtime                                             Tools

                                                            Phone Emulator
        Sensors        Media    Data         Location

         Phone            Xbox LIVE         Notifications       Samples                Documentation

         .NET Framework managed code sandbox                    Guides                  Community

                                                                Packaging and Verification Tools




                           Cloud                                              Portal
          Notifications               App Deployment          Registration               Marketplace

            Location             Identity        Feeds         Validation           MO and CC Billing

                                  Social         Maps         Certification        Business Intelligence

                                                               Publishing          Update Management

                                                                                   Tahir Rauf | Software Architect
An Insight Into Microsoft Platform

Tips and Recommendations



Visual Studio Code Samples at MSDN (C#, C++, j#, VB, Smart Devices
etc) - http://msdn.microsoft.com/en-us/library/se881ay9(v=vs.80).aspx
MSDN Library http://msdn.microsoft.com/en-us/ms348103
Microsoft Research Community (Publications, projects) -
http://research.microsoft.com/




                                                    Tahir Rauf | Software Architect
An Insight Into Microsoft Platform

Common Hooks

 • hook_help()
 • hook_perm()
 • hook_init()
 • hook_theme()
 • hook_block()
 • hook_menu()




                                     Tahir Rauf | Software Architect
An Insight Into Microsoft Platform

Help Hooks – a Module File Entry


   /**
    * Implementation of hook_help
    */
   function modulename_help($path, $arg) {
      switch ($path) {
             case 'admin/help#color':
              $output = '<p>'. t('The color module allows a site administrator to
             quickly and easily change the color scheme of certain
             themes.’ ).'</p>';
         return $output;
         }
   }
                                                           Tahir Rauf | Software Architect
An Insight Into Microsoft Platform

Specify the Available Permissions

 • Tell Drupal who can use your module.
 /**
  * Implementation of hook_perm
  */
 function modulename_perm() {
       return array('access site-wide ', 'administer colors');
 }




                                                            Tahir Rauf | Software Architect
An Insight Into Microsoft Platform

Hook_init ()

 • This hook is run at the beginning of the page request.
 1.     Add CSS or JS that should be present on every page.
 2.     Set up global parameters which are needed later in the request




                                                       Tahir Rauf | Software Architect
An Insight Into Microsoft Platform

Cont..Hook_init ()

 function modulename_init() {
       $path = drupal_get_path('module', ‘modulename');
       drupal_add_js($path . '/filename.js');
       drupal_add_css($path . ‘/filename.css', 'module', 'all', FALSE);
 }


 http://api.drupal.org/api/drupal/developer!hooks!core.php/function/hook_i
    nit/6




                                                         Tahir Rauf | Software Architect
An Insight Into Microsoft Platform

Hook_Theme ()


   function modulename_theme($existing, $type, $theme, $path) {
   }
   • Write theme funtions




                                                   Tahir Rauf | Software Architect
An Insight Into Microsoft Platform

Declaring Block Content

 /**
       * Implementation of hook_block().
       * @param string $op one of "list", "view", "save" and "configure"
       * @param integer $delta code to identify the block
       * @param array $edit only for "save" operation
       */
 function modulename_block($op = 'list', $delta = 0, $edit = array()) {
    switch ($op) {
           case 'list':
            $block = array();
            $block[0]["info"] = t('assets');
            return $block;
            break;


                                                         Tahir Rauf | Software Architect
An Insight Into Microsoft Platform

Declaring Block Content Cont..


               case 'view':
                  $block['subject'] = 'assets';
                  $block['content'] = get_block_content();
                  return $block;
                  break;
           }
   }


   http://api.drupal.org/api/drupal/developer!hooks!core.php/function/hook_
      block/6



                                                             Tahir Rauf | Software Architect
An Insight Into Microsoft Platform

 Hook Menu

• Define menu items and page callbacks.

• This hook enables modules to register paths in order to define how URL
   requests are handled.

• This hook is rarely called (for example, when modules are enabled), and
   its results are cached in the database.




                                                     Tahir Rauf | Software Architect
An Insight Into Microsoft Platform

Hook Menu Cont..


 function modulename_menu() {
       $items['abc/def'] = array(
           'page callback' => 'mymodule_abc_view',
           'type' => MENU_CALLBACK,
           'access callback' => true,
       );
        return $items;
 }


 http://api.drupal.org/api/drupal/developer!hooks!core.php/function/hook_
    menu/6

                                                     Tahir Rauf | Software Architect
An Insight Into Microsoft Platform

Useful Links

   • hook_form_alter(&$form, &$form_state, $form_id)
     http://api.drupal.org/api/drupal/developer!hooks!core.ph
     p/function/hook_form_alter/6

   • hook_nodeapi(&$node, $op, $a3 = NULL, $a4 = NULL)
     http://api.drupal.org/api/drupal/developer!hooks!core.ph
     p/function/hook_nodeapi/6

   • hook_user($op, &$edit, &$account, $category = NULL)
     http://api.drupal.org/api/drupal/developer!hooks!core.ph
     p/function/hook_user/6


                                            Tahir Rauf | Software Architect
An Insight Into Microsoft Platform

.Uninstall File


     • Remove all tables that a module defines.
     • http://api.drupal.org/api/drupal/includes!common.inc/function/drupal_
       uninstall_schema/6




                                                      Tahir Rauf | Software Architect
An Insight Into Microsoft Platform

Useful Links


   1.     Creating modules - a tutorial: Drupal 6.x
   2.     Creating Our First Module (1.3M PDF)
   3.     Coding standards
   4.     http://www.drupal.org




                                                      Tahir Rauf | Software Architect

More Related Content

PDF
Cross-platform mobile apps with Apache Cordova
PPTX
An Open Source Workbench for Prototyping Multimodal Interactions Based on Off...
PDF
Tutorials building connectors
PDF
RadPHP XE Datasheet
PDF
Support Tools für die Admin-Konsole - Nebil Kisa, Advanced Support Engineer
PPTX
A Lap Around Visual Studio 11
ODP
PHP Performance SfLive 2010
KEY
symfony live 2010 - Using symfony events to create clean class interfaces
 
Cross-platform mobile apps with Apache Cordova
An Open Source Workbench for Prototyping Multimodal Interactions Based on Off...
Tutorials building connectors
RadPHP XE Datasheet
Support Tools für die Admin-Konsole - Nebil Kisa, Advanced Support Engineer
A Lap Around Visual Studio 11
PHP Performance SfLive 2010
symfony live 2010 - Using symfony events to create clean class interfaces
 

Similar to An insight to microsoft platform (20)

PDF
Luis Martins
PPTX
Windows 8 App Developer Day
PDF
SharePoint 2013 - Migrating Legacy On-Premise Solutions to SharePoint Online ...
PDF
Microsoft Azure essentials
PDF
10 things ever architect should know about the Windows Azure Platform - ericnel
PPTX
Soa204 Kawasaki Final
PDF
Migrating Legacy On-Premise Applications to SharePoint Online and Windows Azure
PDF
The Windows Azure Platform: A Perspective - David Chappell
PDF
Silverlight Document Search Engine
PPTX
Overview of Azure and Cloud Computing
PPTX
Agile in Action - Act 2: Development
PDF
Windows Azure For Architects
PPTX
SharePoint 2010 as a Development Platform
PPTX
What's New for the Windows Azure Developer? Lots!!
PDF
Intrgrating sps-2010-and-windows-azure
PDF
Mike Taulty DevDays 2010 Silverlight 4 - What's New Part 1
PPTX
1.Ms 云计算平台介绍
PPTX
Web development with ASP.NET Web API
PPTX
Starting Azure mobile services
Luis Martins
Windows 8 App Developer Day
SharePoint 2013 - Migrating Legacy On-Premise Solutions to SharePoint Online ...
Microsoft Azure essentials
10 things ever architect should know about the Windows Azure Platform - ericnel
Soa204 Kawasaki Final
Migrating Legacy On-Premise Applications to SharePoint Online and Windows Azure
The Windows Azure Platform: A Perspective - David Chappell
Silverlight Document Search Engine
Overview of Azure and Cloud Computing
Agile in Action - Act 2: Development
Windows Azure For Architects
SharePoint 2010 as a Development Platform
What's New for the Windows Azure Developer? Lots!!
Intrgrating sps-2010-and-windows-azure
Mike Taulty DevDays 2010 Silverlight 4 - What's New Part 1
1.Ms 云计算平台介绍
Web development with ASP.NET Web API
Starting Azure mobile services
Ad

More from Confiz (20)

PDF
Agile training workshop
PDF
Web services with laravel
PDF
DMAIC-Six sigma process Improvement Approach
PDF
What is UFT? HP's unified functional testing.
PDF
Software testing methods, levels and types
PDF
Sqa, test scenarios and test cases
PDF
Solid principles of oo design
PPTX
Entity framework code first
PDF
Security testing presentation
PDF
Ts seo t ech session
PDF
Learning as a creative professional
PDF
Learning as a creative professional
PDF
Ts archiving
PDF
Advance text rendering in i os
PDF
Ts threading
PDF
Ts android supporting multiple screen
PDF
Ts drupal6 module development v0.2
PDF
Photoshop manners
PDF
Monkey talk
PDF
Ts branching over the top
Agile training workshop
Web services with laravel
DMAIC-Six sigma process Improvement Approach
What is UFT? HP's unified functional testing.
Software testing methods, levels and types
Sqa, test scenarios and test cases
Solid principles of oo design
Entity framework code first
Security testing presentation
Ts seo t ech session
Learning as a creative professional
Learning as a creative professional
Ts archiving
Advance text rendering in i os
Ts threading
Ts android supporting multiple screen
Ts drupal6 module development v0.2
Photoshop manners
Monkey talk
Ts branching over the top
Ad

An insight to microsoft platform

  • 1. Boutique product development company It is amazing what you can accomplish when you have a client-centric team to deliver outstanding products.
  • 2. An Insight to Microsoft Platform Tahir Rauf | Software Architect
  • 3. An Insight to Microsoft Platform Topics covered in the presentation • Development Tool Overview • Visual Studio Demo • Tips & Recommendations Tahir Rauf | Software Architect
  • 4. An Insight Into Microsoft Platform Development Tools Overview •Microsoft .NET •Microsoft SQL Server •Windows Azure •Windows Phone 7 •XNA and Kodu Framework •Silverlight •Microsoft Visual Studio Tahir Rauf | Software Architect
  • 5. An Insight Into Microsoft Platform .NET Framework – General overview Tahir Rauf | Software Architect
  • 6. An Insight Into Microsoft Platform Overview of General Features • Interoperability • Language Independence • Base Class Library • Portability (Mono, DotGNU, CrossNet) • Simplified deployments • Security Tahir Rauf | Software Architect
  • 7. An Insight Into Microsoft Platform What is Silver light • Application framework for Rich Internet Applications • Subset of WPF • Uses XML based representation of presentation using XAML • XAML targets multiple platforms (desktop, web, mobile) ) Tahir Rauf | Software Architect
  • 8. An Insight Into Microsoft Platform Silver light Programming Model Tahir Rauf | Software Architect
  • 9. An Insight Into Microsoft Platform How Silver light Works Tahir Rauf | Software Architect
  • 10. An Insight Into Microsoft Platform Tahir Rauf | Software Architect
  • 11. An Insight Into Microsoft Platform Gaming frameworks (XNA & Kodu) • Cross platform Game development framework • XBOX, Windows, Mobile, Zune • C#, VB.NET as compared to traditional C++ • Kodu – codeless way of game development Tahir Rauf | Software Architect
  • 12. An Insight Into Microsoft Platform Microsoft SQL Server Tahir Rauf | Software Architect
  • 13. An Insight Into Microsoft Platform MS SQL Server high level feature set • Database Engine (DBMS) (SQL server management studio) • Analysis services (Multidimensional Data, Data Mining) (Business intelligence development studio) • Integration services (ETL) • Replication • Reporting Services (Business Intelligence) • SQL Server Service Broker Tahir Rauf | Software Architect
  • 14. An Insight Into Microsoft Platform What is Windows Azure Tahir Rauf | Software Architect
  • 15. An Insight Into Microsoft Platform How Windows Azure works Tahir Rauf | Software Architect
  • 16. An Insight Into Microsoft Platform Azure Features overview • Focus on your application, not operational constraints. • Administration • Availability • Scalability • REST and managed APIs (storage services even out of cloud) • Fault Tolerance (3 times replication) • VM • In built, caching support Tahir Rauf | Software Architect
  • 17. An Insight Into Microsoft Platform Windows Phone 7 Runtime Tools Phone Emulator Sensors Media Data Location Phone Xbox LIVE Notifications Samples Documentation .NET Framework managed code sandbox Guides Community Packaging and Verification Tools Cloud Portal Notifications App Deployment Registration Marketplace Location Identity Feeds Validation MO and CC Billing Social Maps Certification Business Intelligence Publishing Update Management Tahir Rauf | Software Architect
  • 18. An Insight Into Microsoft Platform Tips and Recommendations Visual Studio Code Samples at MSDN (C#, C++, j#, VB, Smart Devices etc) - http://msdn.microsoft.com/en-us/library/se881ay9(v=vs.80).aspx MSDN Library http://msdn.microsoft.com/en-us/ms348103 Microsoft Research Community (Publications, projects) - http://research.microsoft.com/ Tahir Rauf | Software Architect
  • 19. An Insight Into Microsoft Platform Common Hooks • hook_help() • hook_perm() • hook_init() • hook_theme() • hook_block() • hook_menu() Tahir Rauf | Software Architect
  • 20. An Insight Into Microsoft Platform Help Hooks – a Module File Entry /** * Implementation of hook_help */ function modulename_help($path, $arg) { switch ($path) { case 'admin/help#color': $output = '<p>'. t('The color module allows a site administrator to quickly and easily change the color scheme of certain themes.’ ).'</p>'; return $output; } } Tahir Rauf | Software Architect
  • 21. An Insight Into Microsoft Platform Specify the Available Permissions • Tell Drupal who can use your module. /** * Implementation of hook_perm */ function modulename_perm() { return array('access site-wide ', 'administer colors'); } Tahir Rauf | Software Architect
  • 22. An Insight Into Microsoft Platform Hook_init () • This hook is run at the beginning of the page request. 1. Add CSS or JS that should be present on every page. 2. Set up global parameters which are needed later in the request Tahir Rauf | Software Architect
  • 23. An Insight Into Microsoft Platform Cont..Hook_init () function modulename_init() { $path = drupal_get_path('module', ‘modulename'); drupal_add_js($path . '/filename.js'); drupal_add_css($path . ‘/filename.css', 'module', 'all', FALSE); } http://api.drupal.org/api/drupal/developer!hooks!core.php/function/hook_i nit/6 Tahir Rauf | Software Architect
  • 24. An Insight Into Microsoft Platform Hook_Theme () function modulename_theme($existing, $type, $theme, $path) { } • Write theme funtions Tahir Rauf | Software Architect
  • 25. An Insight Into Microsoft Platform Declaring Block Content /** * Implementation of hook_block(). * @param string $op one of "list", "view", "save" and "configure" * @param integer $delta code to identify the block * @param array $edit only for "save" operation */ function modulename_block($op = 'list', $delta = 0, $edit = array()) { switch ($op) { case 'list': $block = array(); $block[0]["info"] = t('assets'); return $block; break; Tahir Rauf | Software Architect
  • 26. An Insight Into Microsoft Platform Declaring Block Content Cont.. case 'view': $block['subject'] = 'assets'; $block['content'] = get_block_content(); return $block; break; } } http://api.drupal.org/api/drupal/developer!hooks!core.php/function/hook_ block/6 Tahir Rauf | Software Architect
  • 27. An Insight Into Microsoft Platform Hook Menu • Define menu items and page callbacks. • This hook enables modules to register paths in order to define how URL requests are handled. • This hook is rarely called (for example, when modules are enabled), and its results are cached in the database. Tahir Rauf | Software Architect
  • 28. An Insight Into Microsoft Platform Hook Menu Cont.. function modulename_menu() { $items['abc/def'] = array( 'page callback' => 'mymodule_abc_view', 'type' => MENU_CALLBACK, 'access callback' => true, ); return $items; } http://api.drupal.org/api/drupal/developer!hooks!core.php/function/hook_ menu/6 Tahir Rauf | Software Architect
  • 29. An Insight Into Microsoft Platform Useful Links • hook_form_alter(&$form, &$form_state, $form_id) http://api.drupal.org/api/drupal/developer!hooks!core.ph p/function/hook_form_alter/6 • hook_nodeapi(&$node, $op, $a3 = NULL, $a4 = NULL) http://api.drupal.org/api/drupal/developer!hooks!core.ph p/function/hook_nodeapi/6 • hook_user($op, &$edit, &$account, $category = NULL) http://api.drupal.org/api/drupal/developer!hooks!core.ph p/function/hook_user/6 Tahir Rauf | Software Architect
  • 30. An Insight Into Microsoft Platform .Uninstall File • Remove all tables that a module defines. • http://api.drupal.org/api/drupal/includes!common.inc/function/drupal_ uninstall_schema/6 Tahir Rauf | Software Architect
  • 31. An Insight Into Microsoft Platform Useful Links 1. Creating modules - a tutorial: Drupal 6.x 2. Creating Our First Module (1.3M PDF) 3. Coding standards 4. http://www.drupal.org Tahir Rauf | Software Architect