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 ...
随机推荐
- SQL优化(zhuan)
转自:http://www.jfox.info/SQL-you-hua 数据库的优化问题 一.问题的提出 在应用系统开发初期,由于开发数据库数据比较少,对于查询SQL语句,复杂视图的的编写等体会不出S ...
- javascrpt 继承
一.基于原型链方式实现的继承 缺点:无法从子类中调用父类的构造函数,所以没有办法把子类的属性赋值到父类中. 如果父类中有引用类型,例如:数组.此时这个引用类型会添加到子类的原型当中,一但子类某个对象修 ...
- CSS的display属性,显示或隐藏元素
<html> <head> <script type="text/javascript"> function removeElement() { ...
- C++ 实现 发送HTTP Get/Post请求 good
1.简述 最近简单看了一下关于HTTP请求方面的知识,之前一直用Qt来实现,有专门HTTP请求的QNetworkAccessManager类来处理,实现也比较简单,这里主要讲解一下用C++代码来实现H ...
- Prism&MEF构建开发框架 (三)
菜单管控模块EntityFW 菜单的加载采用MEF技术,程序实现思路: 1 .主菜单加载页面MainMenuView.xaml指向MenuRegion 2. 菜单Item点击及内容加载,采用订阅模式, ...
- Spring @ResponseBody只能返回String类型数据解决办法
今天自己搭Spring MVC框架玩,使用AJAX调用Spring controller 并返回map对象,突然发现,哎,怎么@Response中只能返回String, 我用的Spring 3的版本也 ...
- Tomcat执行流程
- Fatal error: Cannot redeclare tran() (previously declared in
解决方法如下: 1.你该段源码里面是不是有include 或者require 之类的包含其他文件函数 包含的文件里已经有 函数 nw() 的定义 而这段代码里又有nv()的定义 所以出现redecla ...
- 常用 linux 命令(部分)
常用命令总结: 1. mkdir命令 mkdir dirname , 用来创建目录.该命令创建由dirname命名的目录.如果在目录名的前面没有加任何路径名,则在当前目录下创建由dirname指定的目 ...
- C#中派生类调用基类构造函数用法分析
这里的默认构造函数是指在没有编写构造函数的情况下系统默认的无参构造函数 1.当基类中没有自己编写构造函数时,派生类默认的调用基类的默认构造函数例如: ? 1 2 3 4 5 6 7 8 9 10 11 ...