微软近期Open的职位:

Title: Software Engineer II-Senior Software Engineer for Satori, STC

Location: Beijing or Suzhou

Search Engine has been evolving from key word search into intention fulfillment and task completion, in which entity and knowledge technology is one of crucial enablers. This trend has become the shared industry view, and our competitors are not standing still and waiting. Bing Satori team is innovating aggressively to evolve Search Engine with the capability of building knowledge, extending the capability to use knowledge graph information, and thus fulfilling user intentions.

On the mission to build an open entity, knowledge & digital intelligence platform, Satori will be known as the Microsoft Knowledge and Digital Intelligence Fabric. &nbsp This involves wide and deep technical areas from platform, online/offline service, to large data process, relevance and ecosystem /user experience. We are building a world class engineering team in STCA, with the focus on advancing the platform and system architecture and capability, boosting knowledge data extraction and curation from Web and beyond, building and enriching knowledge graph at scale and with quality, onboarding partners and enabling E2E scenarios for task completion and monetization. The technical areas spread across a very wide spectrum from large scale online/offline distributed systems, data mining and data processing, to relevance, search quality, and user experience.

Do you want to be part of the effort to build the next generation search engine that powers digital life/digital work experiences? Are you excited by the opportunity to work on Microsoft’s digital intelligence platform that offers web scale solution for knowledge extraction/enrichment and enables powerful task completion scenarios? For those who answer yes, we have the right job for you in the Bing Satori team.

We are looking for a self-driven, highly motivated senior software developer with exceptional technical skills to join us in this challenging effort. A qualified candidate must have proven solid track record on designing and implementing system/services that are scalable, fail tolerant and high performant. The candidate must demonstrate technical leadership through making sound technical judgments/recommendations that influence design decisions and being a role model/advocate of quality engineering.

We have positions in both Beijing and Suzhou.

Required qualifications/experience:

- &nbsp&nbsp&nbsp&nbsp Love to design and write great code, with great technical passion, &nbsp drive for results, and ability to work independently

- &nbsp&nbsp&nbsp&nbsp Strong analytical and problem solving skills

- &nbsp&nbsp&nbsp&nbsp Strong partnership, communication and coordination skills

- &nbsp&nbsp&nbsp&nbsp Significant experiences in one of the following areas : large scale internet applications, operating system kernels, distributed systems, storage systems, data modeling of complex systems, and search relevance

- &nbsp&nbsp&nbsp&nbsp Proficient in some of the programming languages: C, C++, C#, Java, SQL, .Net is preferred

- &nbsp&nbsp&nbsp&nbsp 6+ year software development experiences is preferred.

- &nbsp&nbsp&nbsp&nbsp Bachelor degree in computer science or a related field is required. &nbsp Master or Ph.D. is preferred.

Microsoft is an equal opportunity employer and supports workforce diversity.

Contact Staffing Consultant: Ariel Xiang axiang@microsoft.com

GCR:CN:DEV:EN

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

微软职位内部推荐-Software Engineer II-Senior Software Engineer for Satori的更多相关文章

  1. 微软职位内部推荐-UX Designer II

    微软近期Open的职位: Search Technology Center Asia (STCA) Position: UX Designer Location: Beijing, China Sea ...

  2. 微软职位内部推荐-Senior Software Engineer -Web

    微软近期Open的职位: Location: Beijing, China The Office App Services team is working on the powerful Office ...

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

    微软近期Open的职位: Job posting title: Senior Software Development Engineer Location: China, Beijing Divisi ...

  4. 微软职位内部推荐-Software Development Engineer II

    微软近期Open的职位: Job Title:Software Development EngineerII Division: Server & Tools Business - Comme ...

  5. 微软职位内部推荐-Software Engineer II

    微软近期Open的职位: Job Description Group: Search Technology Center Asia (STCA)/Search Ads Title: SDEII-Sen ...

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

    微软近期Open的职位: Are you looking for a big challenge? Do you know why Big Data is the next frontier for ...

  7. 微软职位内部推荐-Senior Software Engineer - Back End

    微软近期Open的职位: SharePoint is a multi-billion dollar enterprise business that has grown from an on-prem ...

  8. 微软职位内部推荐-Senior Software Engineer - Front End

    微软近期Open的职位: SharePoint is a multi-billion dollar enterprise business that has grown from an on-prem ...

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

    微软近期Open的职位: SharePoint is a multi-billion dollar enterprise business that has grown from an on-prem ...

  10. 微软职位内部推荐-Senior Software Development Engineer H/F

    微软近期Open的职位: Microsoft Engineering Center Paris (Xbox Music et Video) : Ingénieur en développement l ...

随机推荐

  1. jenkins pipeline 配置

    pipeline { agent any stages { stage('Checkout') { steps { echo 'Checkout' checkout([$class: 'GitSCM' ...

  2. mongodb启动与运用

    在操作前需要启动mongodb数据库服务 1.首先打开dos窗口,然后选择路径到你的安装路径下的bin目录(我的路径是的D:mongo\mongodb\bin) 2.然后输入启动命令(D:mongo\ ...

  3. 深入理解C/C++混合编程优秀博文赏析与学习

    1.深入理解C/C++混合编程 2.C/C++ 混合编程 互相调用 3.C代码中如何调用C++ C++中如何调用C 4.C和C++混合编程

  4. hibernate -- 注解映射实体和表

    表名的映射 //代表此类参与ORM映射,此注解必须要有 @Entity //代表user这个类映射了一个表user50,如果表名和类名一样,此注解可以省略 @Table(name="user ...

  5. .NET中Quartz任务调度器的简单应用实例

    1.首先从NuGet中安装Quartz,安装最新版本就OK 2.新建一个Job类实现Quart中的IJob接口用于执行业务逻辑,代码如下: class CheckUpdateJob : IJob { ...

  6. 07- django组件:中间件

    1.中间件的概念 中间件顾名思义,是介于request与response处理之间的一道处理过程,相对比较轻量级,并且在全局上改变django的输入与输出.因为改变的是全局,所以需要谨慎实用,用不好会影 ...

  7. 5249: [2018多省省队联测]IIIDX

    5249: [2018多省省队联测]IIIDX 链接 分析: 贪心. 将给定的权值从大到小排序,从第一个往后挨个赋值,考虑第i个位置可以赋值那些树.首先满足前面必须至少有siz[i]个权值没选,如果存 ...

  8. SQL Server 中SELECT INTO 和 INSERT INTO SELECT 两种表复制语句

    1.INSERT INTO SELECT语句 语句形式为:Insert into Table2(field1,field2,...) select value1,value2,... from Tab ...

  9. C#阻止系统休眠

    阻止系统休眠 using System.Runtime.InteropServices; static class WinSleepCtr { //定义API函数 [DllImport("k ...

  10. HDU - 5877 Weak Pair (dfs+树状数组)

    题目链接:Weak Pair 题意: 给出一颗有根树,如果有一对u,v,如果满足u是v的父节点且vec[u]×vec[v]<=k,则称这对结点是虚弱的,问这棵树中有几对虚弱的结点. 题解: 刚开 ...