微软职位内部推荐-Senior SDE for Win Shell Exp

简介: 微软近期Open的职位:Job posting title: Senior Software Development EngineerLocation: China, BeijingDivision: Operations System Group Engineering Group O...

微软近期Open的职位:

Job posting title: Senior Software Development Engineer

Location: China, Beijing

Division: Operations System Group Engineering

Group Overview

OSG is delivering flagship products in Microsoft. China is a second largest economy in the world. With over one billion mobile subscribers, China has become the largest and most dynamic mobile market in the world, and the PC population in China also nurtures great business opportunities.

We are forming a new team in China, OSG China Engineering team, focusing on delivering China-market specific Windows features and products across different form factors on PC/Phone/Tablet to succeed more broadly in China.

Roles & Responsibilities

We are looking for a senior software engineer in the mobile space to build China specific features and products with innovations to lead us to win this market. This position would be responsible for

Dev design of delightful Windows Phone SHELL experiences for China market

Work with PM and dev manager to scope the work and plan for dev cost and schedule

Owning a feature area in shell experiences, Personalized device experiences

Owning the code for the features

Owning the quality control, potentially collaborating with others, but this position would on the driving position. The deliverables would be customer-ready.

Working with partner teams in China and Redmond to align up the technical dependencies

Qualifications:

Hands-on coding

Significant experiences in Windows Phone experiences

With great technical passion, terrific problem-solving skills, drive for results, and ability to work independently

Have experienced full product life cycle

Good communication with teams

Extensive experiences leading, motivating and coaching people and managers

Fluent in one of the major programming languages: C#, C, C++, or Java

Minimum 6 year software development experiences with at least 3 years on Windows platform.

This position is based in Beijing (China), one of the most vibrant cities in the world. Come to experience the Chinese culture, explosive growth, great shopping and amazing food. The city is very international and easy to live in. -- Join us today!

Microsoft is an equal opportunity employer and supports workforce diversity.

GCR:CN:DEV:EN

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

目录
相关文章
|
人工智能 Shell iOS开发
AI Shell:在命令行里“对话” AI ,微软推出将 AI 助手引入命令行的 CLI 工具,打造对话式交互命令行
AI Shell 是一款强大的 CLI 工具,将人工智能直接集成到命令行中,帮助用户提高生产力。AI Shell 支持多种 AI 模型和助手,通过多代理框架提供丰富的功能和灵活的使用模式。
2326 7
|
Shell Windows
微软职位内部推荐-Principal Dev Manager for Windows Phone Shell
微软近期Open的职位: Location: China, BeijingDivision: Operations System Group EngineeringGroup OverviewOSG is delivering flagship products in Microsoft.
1024 0
|
Shell Windows
微软职位内部推荐-Principal Dev Manager for Windows Phone Shell
微软近期Open的职位: Location: China, BeijingDivision: Operations System Group EngineeringGroup OverviewOSG is delivering flagship products in Microsoft.
|
Shell Windows
微软职位内部推荐-Senior SDE for Win Shell Exp
微软近期Open的职位: Job posting title: Senior Software Development EngineerLocation: China, Beijing Division: Operations System Group Engineering Group O...
|
7月前
|
存储 Shell Linux
八、Linux Shell 脚本:变量与字符串
Shell脚本里的变量就像一个个贴着标签的“箱子”。装东西(赋值)时,=两边千万不能有空格。用单引号''装进去的东西会原封不动,用双引号""则会让里面的$变量先“变身”再装箱。默认箱子只能在当前“房间”(Shell进程)用,想让隔壁房间(子进程)也能看到,就得给箱子盖个export的“出口”戳。此外,Shell还自带了$?(上条命令的成绩单)和$1(别人递进来的第一个包裹)等许多特殊箱子,非常有用。
632 2
|
7月前
|
存储 安全 Unix
七、Linux Shell 与脚本基础
别再一遍遍地敲重复的命令了,把它们写进Shell脚本,就能一键搞定。脚本本质上就是个存着一堆命令的文本文件,但要让它“活”起来,有几个关键点:文件开头最好用#!/usr/bin/env bash来指定解释器,并用chmod +x给它执行权限。执行时也有讲究:./script.sh是在一个新“房间”(子Shell)里跑,不影响你;而source script.sh是在当前“房间”里跑,适合用来加载环境变量和配置文件。
616 9
|
7月前
|
数据采集 监控 Shell
无需Python:Shell脚本如何成为你的自动化爬虫引擎?
Shell脚本利用curl/wget发起请求,结合文本处理工具构建轻量级爬虫,支持并行加速、定时任务、增量抓取及分布式部署。通过随机UA、异常重试等优化提升稳定性,适用于日志监控、价格追踪等场景。相比Python,具备启动快、资源占用低的优势,适合嵌入式或老旧服务器环境,复杂任务可结合Python实现混合编程。