A letter to a good guy in USA
Hi Nick:
Busy recently forgetting to check Yammer in box.
Really nice of you to agree to provide help on my subject.
The case is like this:
I’m a Chinese native. I was born in northern China in a village and got my Bachelor’s degree of network engineering in 2010.
After that, I did not take further College education. I attended job and worked as a computer related engineer ever since, now a software engineer.
It was in last October that I got a job of Vendor developer in Microsoft Shanghai. It had been not easy for a Chinese to become capable of all these English stuffs. In my past, I tried hard to gain the knowledge.
But, it still seems not easy to master something, even speaking English makes me feel not easy, every day, what I ‘m doing is coding with my co-workers, we are all Chinese. It is fine, but I think maybe I can go further, I’m already about to be 30 years old. In fact, I had had a plan to go to the world. Besides, a vendor employee’s contract has an expiration, I was told that I may get canceled, so, in fact, I’m ready for risks. I’m doing my work well. But I should also prepare for my future. This is just one aspect.
As to America, in my concept, America is indeed a very good place, in China, even just the name seems to have a halo. When I move forward, as I’m knowing more, things begin to become real.
Not long after the beginning of this year, a friend of mine who’s talented went to America, and worked in Apple for half an year. When I first knew of her situation, despite of the reputation, my first reaction is worry. Not a long time ago, she told me she was back.
In fact, I do not really know how it feels to stay in a western country, but I do know that living and working in an unfamiliar environment can really be a challenge. I have ever worked in a small city in China where I even had communication obstacles since people there say their localism more, it was not easy for a negative person like me. Concluded from information that I got from web, America is a free country, but there seems also to be many adverse aspects. I know I should be brave, when I’m still young. In my opinion, I think if you want to do something, a foresight is needed, and proper pre-preparation, because every decision matters. Maybe when I know more, one day when I have a job chance or I can go there all by myself for a travel.
Maybe now, I’m preparing.
Curious about the everyday, education, consumption, places to travel, etc. The movies did not give me a thorough reveal of these things. Especially things about programmers, maybe this is a job career curiosity, aha.
Best Regard
A letter to a good guy in USA的更多相关文章
- [LeetCode] Letter Combinations of a Phone Number 电话号码的字母组合
Given a digit string, return all possible letter combinations that the number could represent. A map ...
- 17. Letter Combinations of a Phone Number
题目: Given a digit string, return all possible letter combinations that the number could represent. A ...
- 什么是Unicode letter
起因:从一段代码说起 using System; using System.Collections.Generic; using System.Linq; using System.Text; usi ...
- LeetCode——Letter Combinations of a Phone Number
Given a digit string, return all possible letter combinations that the number could represent. A map ...
- No.017:Letter Combinations of a Phone Number
问题: Given a digit string, return all possible letter combinations that the number could represent.A ...
- SCI/EI期刊投稿 Reply Letter 常用格式总结
SCI/EI期刊投稿Reply Letter常用格式总结 整个论文投稿的过程中,会遇到各种问题,需要我们向主编询问或是回复.下面主要总结了responses to the comme ...
- 【leetcode】 Letter Combinations of a Phone Number(middle)
Given a digit string, return all possible letter combinations that the number could represent. A map ...
- [LeetCode] Letter Combinations of a Phone Number
Given a digit string, return all possible letter combinations that the number could represent. A map ...
- [LintCode] Letter Combinations of a Phone Number 电话号码的字母组合
Given a digit string, return all possible letter combinations that the number could represent. A map ...
随机推荐
- [dpdk] 读官方文档(1)
前提:已读了这本书<<深入浅出dpdk(朱清河等著)>>. 目标:读官方文档,同时跟着文档进行安装编译等工作. http://dpdk.org/doc/guides/index ...
- SQL查询中关于索引使用的笔记
建表KeyLevelStat (无主键),2个索引: CREATE TABLE KeyLevelStat( [Date] [int] NOT NULL, [Num] [varchar](8), [R0 ...
- PIVOT&UNPIVOT
如果是家电销售员,那么可能需要统计每月日销售的彩电.冰箱.空调...最大值.最小值.平均值等 如果你是耳鼻喉科医生,那么可能需要统计月度年度日接客咽炎.喉炎.鼻炎...最大值.最小值.平均值等 如果你 ...
- RTSP 协议分析
RTSP 协议分析1.概述: RTSP(Real Time Streaming Protocol),实时流传输协议,是TCP/IP协议体系中的一个应用层协议,由哥伦比亚大学.网景和RealNetwor ...
- Android笔记:真机调试
参考:android通过USB使用真机调试程序 手机:华为Y511-U00 1.将手机USB调试模式连接到PC(直接用数据线连接到PC一般可以自动切换) 2.连接成功后提示安装驱动,我选择的是自动安装 ...
- hdu1231最大连续子序列
题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=1231 #include<iostream> #include<cstdio> ...
- golang AES/ECB/PKCS5 加密解密 url-safe-base64
因为项目的需要用到golang的一种特殊的加密解密算法AES/ECB/PKCS5,但是算法并没有包含在标准库中,经过多次失败的尝试,终于解码成功,特此分享: /* 描述 : golang AES/EC ...
- [转]详细介绍java中的数据结构
详细介绍java中的数据结构 本文介绍的是java中的数据结构,本文试图通过简单的描述,向读者阐述各个类的作用以及如何正确使用这些类.一起来看本文吧! 也许你已经熟练使用了java.util包里面的各 ...
- Java 日志管理最佳实践
转:http://blog.jobbole.com/51155/ 日志记录是应用程序运行中必不可少的一部分.具有良好格式和完备信息的日志记录可以在程序出现问题时帮助开发人员迅速地定位错误的根源.对于开 ...
- Object类型(对象)
ECMAscript中的对象其实就是一组数据和功能集合.这里简单谈谈对象,复杂以后补充. 1 如何创建对象 简单创建: var box = {}; alert(box); //[object obje ...