微软近期Open的职位:

Position: Senior SDE-- Mobile Products Android/iOS/WP Senior Developer

Contact Person: Winnie Wei (wiwe@microsoft.com)

Location: Beijing

Roles & Responsibilities:

As a Software Design Engineer, you will work with PM, UX and Test teams to design, develop, and deliver high quality mobile features. You must be able to innovate and work with PM/UX/Test to come up with feature design and execute well to deliver features on time against milestones.

• Makes appropriate design and architecture trade-offs for a feature

• Ensure code quality

• Has code reviews with other developers to surface design and implementation issues

• Identifies risks and dependencies in the schedule for a feature

• Writes unit test and fully leverages the automatable system for a feature

• Accounts for the performance, operation and serviceability of the feature

• Understand user intent and drive fundamental improvement of our mobile products

• Ensures customer and partner quality resolutions, solves customer/partner problems in a timely manner

• Innovate the next generation mobile and cloud experience.

Required Qualifications:

You should possess a strong technical background and a good grasp of software engineering principles, proven track record of working well with PM/UX/Test in a product group, exceptional problem solving, design, and programming skills,. You should be self-motivated and self-directed. Excellent interpersonal communication skills, written communication skills and the ability to work well in a team environment are very important.

Additional qualifications for this position include:

• Experience in designing, developing and shipping high quality mobile products and services

• Experience in android platform, deeply understand the platform, SDK and related tools

• Familiar with other mobile platforms (Android , iOS, WP) are optional

• Demonstrated experience driving for results in a cross-group/team project

• Ability to quickly understand new technology and applications

• Passion for shipping a high quality mobile products and services

• A BS or MS degree in Computer Science or related field

Microsoft is an equal opportunity employer and supports workforce diversity.

GCR:CN:DEV:EN

如果你想试试这个职位,请跟我联系,我是微软的员工,可以做内部推荐。发你的中英文简历到我的邮箱:Nicholas.lu.mail(at)gmail.com

微软职位内部推荐-Senior Android Developer的更多相关文章

  1. 微软职位内部推荐-Senior NLP Scientist & Developer

    微软近期Open的职位: Contact Person: Winnie Wei (wiwe@microsoft.com )Senior Software Development Engineer/NL ...

  2. 微软职位内部推荐-Senior SDE

    微软近期Open的职位: Position: Senior SDE-- Mobile Products Android/iOS/WP Senior Developer Contact Person: ...

  3. 微软职位内部推荐-Senior Development Engineer

    微软近期Open的职位: Job Title: Senior Software Development Engineering Work Location: Suzhou, China Enterpr ...

  4. 微软职位内部推荐-Senior Software Engineer-SDP

    微软近期Open的职位: Position: Senior SDE The R&D of Shared Data Platform at Application and Services Gr ...

  5. 微软职位内部推荐-Senior Software Development En

    微软近期Open的职位: Job Title: Senior Development Engineer Division: Visual Studio China - Developer Divisi ...

  6. 微软职位内部推荐-Principal Software Developer

    微软近期Open的职位: Contact Person: Winnie Wei (wiwe@microsoft.com ) Work Location: Suzhou/Beijing News is ...

  7. 微软职位内部推荐-Senior SDE for Big Data

    微软近期Open的职位: Title: Senior SDE The Big Data Tooling team looking for a talented and passionate devel ...

  8. 微软职位内部推荐-Senior Software Engineer_Azure

    微软近期Open的职位: Job Title: Senior Software Engineer Location: Shanghai, China Have you ever imagined th ...

  9. 微软职位内部推荐-Senior Software Engineer-News

    微软近期Open的职位: News is a critical areas for integration of mobile and services, one of the top priorit ...

随机推荐

  1. 数据库自定义表值函数Split(@LongStr, @SplitStr, @IsDistinct )

    CREATE FUNCTION [dbo].[F3_Split](@LongStr VARCHAR(MAX),@SplitStr VARCHAR(100),@IsDistinct BIT)RETURN ...

  2. 201509020-js

    JS 关于(function( window, undefined ) {})(window)写法的理解   JS 关于(function( window, undefined ) {})(windo ...

  3. html5 requestAnimationFrame制作动画:旋转风车

    详细内容请点击 在以往,我们在网页上制作动画效果的时候,如果是用javascript实现,一般都是通过定时器和间隔来实现的,出现HTML5之后,我们还可以用CSS3 的transitions和anim ...

  4. Javascript addEventListener dispatchEvent

    测试代码:分别在嵌套的元素body,div#level1,div#level2,div#level3上附加事件,仅在chrome中测试通过. <!DOCTYPE html> <htm ...

  5. C#_字符串的操作

    1: using System; 2: using System.Collections.Generic; 3: using System.Linq; 4: using System.Text; 5: ...

  6. asp.net判断访问者是否来自移动端

    主要就是通过客户端传递的User-agent来判断访问网站的客户端是PC还是手机. .NET中就是Request.ServerVariables["HTTP_USER_AGENT" ...

  7. iOS使用keychain存储密码

    iOS设备中的Keychain是一个安全的存储容器.通常情况下,可以用NSUserDefaults存储数据信息,但是对于一些私密信息,比如账号.密码等等,就需要使用更为安全的keychain了.苹果自 ...

  8. 用java发送email邮件例子

    package com.hzk.mail; import java.net.MalformedURLException; import java.net.URL; import java.text.S ...

  9. C++四种不同的对象生存方式

    在C++中,有四种方法产生一个对象. 第一种方法是在堆栈(stack)之中产生: void MyFunc() { CFoo foo;//在堆栈(stack)中产生foo对象 } 第二种方法是在堆(he ...

  10. 简单解析依赖注入(控制反转)在Spring中的应用

    IoC——Inversion of Control  控制反转DI——Dependency Injection   依赖注入 大家都知道,依赖注入是Spring中非常重要的一种设计模式.可能很多初学者 ...