`
dcj3sjt126com
  • 浏览: 1829982 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

对IT人员如何提升自身英语能力的几点建议

    博客分类:
  • Life
 
阅读更多

副标题:提升英语能力从不要主动汉化软件开始

说明:送给从事linux运维及相关工作的博友们。

一直以来老男孩发现,从事运维工作的很多网友,英文能力很菜,究其原因发现了一些问题所在,下面就和大家分享几点,更多的大家可以继续补充。
第一个建议:
    老男孩老师建议大家,平时工作多使用英文版软件,特别是有时间的情况下,不需要特意用英文版,只要遇到了不要躲“她”就好。
不然的话,离你心中的高级运维或高级系统架构师的目标,只能是越来越远!

第二个建议:
    英语基础不好的同学,如果计算机有些感觉的话,可以通过学计算机去掌握常见的计算机英语,老男孩就曾经通过学英语来掌握汉语。
不太建议那些为了学计算机而单独去学英语的做法,因为太慢了,而且会很难坚持,这么多年运维过来,老男孩遇到的起初英语不好,到后来
成为计算机大牛的人大有人在,究其原因就是靠平时的努力(有了量的积累就会有质的飞跃)。
凡是读过正规本科的同学都知道,大学本科要过英语四级,有的同学甚至大学四年啥都没干,一直学英语了,因为我们当时不过四级没本科学位证。
如果你没读大学就欠债了,该到还债的时候了,但是这个债怎么还还是有技巧的-分期付款吧(一次性付清你没那实力和时间)!

第三个建议:
    学不好英语的同学总觉得英语难学,其实,真不是英语难学,最难的是大家面对英语的心态不够好,
这样的心态只能让“英语美女”和你越来越陌生。怕啥啊,来了就要上了“她”,之后不就全明白了么!
我们使劲追求女孩还被拒绝呢,如果躲着走怎能追到喜欢的女孩子呢?这个道理大家应该都懂得。

建议:老男孩的学习英语的案例,平时日常记录不熟悉单词英文的文档截取(限于篇幅截取一点点)。
其实,就是老男孩经常和同学们说的,学习龟兔赛跑里乌龟的精神,锲而不舍,持之以恒,终会成功。
从1000开始到1个封挡保存,老男孩的曾经遇到很多运维问题也是这么记录的。

995)svn post-commit钩子脚本的注释说明(里面有写钩子脚本的注意事项)
[root@oldboy hooks]# more post-commit.tmpl 
#!/bin/sh

# POST-COMMIT HOOK
#
# The post-commit hook is invoked(调用) after a commit.  Subversion runs
# this hook by invoking a program (script, executable, binary, etc.)
# named 'post-commit' (for which this file is a template) with the 
# following ordered arguments:
#
#   [1] REPOS-PATH   (the path to this repository(知识库))
#   [2] REV          (the number of the revision just committed)
#
# The default working directory for the invocation(调用) is undefined, so
# the program should set one explicitly(明确地) if it cares.
#
# Because the commit has already completed and cannot be undone,
# the exit code of the hook program is ignored.  The hook program
# can use the 'svnlook' utility(n.功用,效用) to help it examine the
# newly-committed tree.
#
# On a Unix system, the normal procedure is to have 'post-commit'
# invoke other programs to do the real work, though it may do the
# work itself too.
#
# Note that 'post-commit' must be executable by the user(s) who will
# invoke it (typically the user httpd runs as), and that user must
# have filesystem-level permission to access the repository.
#
# On a Windows system, you should name the hook program
# 'post-commit.bat' or 'post-commit.exe',
# but the basic idea is the same.
#  钩子程序的注意事项
# The hook program typically does not inherit(vt.& vi.继承) the environment of
# its parent process.  For example, a common problem is for the
# PATH environment variable to not be set to its usual(正常) value, so
# that subprograms fail to launch unless invoked via absolute path.
# If you're having unexpected problems with a hook program, the
# culprit(n.犯人,罪犯;肇事者,被告人) may be unusual (or missing) environment variables.

# Here is an example hook script, for a Unix /bin/sh interpreter.
# For more examples and pre-written hooks, see those in
# the Subversion repository at
http://svn.apache.org/repos/asf/subversion/trunk/tools/hook-scripts/ and
http://svn.apache.org/repos/asf/subversion/trunk/contrib/hook-scripts/

REPOS="$1"
REV="$2"
mailer.py commit "$REPOS" "$REV" /path/to/mailer.conf
=====================================================
996)deprecated 推荐使用
[root@S2-SERVER down]# /application/nginx/sbin/nginx -s reload
nginx: [warn] the "limit_zone" directive is deprecated, use the "limit_conn_zone" directive instead in /application/nginx-1.2.3/conf/extra/nginx_vhosts.conf:23
=====================================================
997)directives 指令
=====================================================
998)context 上下文
syntax:  events { ... }
default:  — 
context:  main
Provides a configuration file context in which the directives that affect connection processing are specified.
=====================================================
999) factors 因素
syntax:  worker_processes number;
default:  worker_processes 1;
context:  main
Defines the number of worker processes.
The optimal value depends on many factors including (but not limited to) the number of CPU cores, the number of hard disk drives that store data, and load pattern. When in doubt, setting it to the number of available CPU cores would be a good start.
From : http://nginx.org/en/docs/ngx_core_module.html by oldboy

=====================================================
1000) transition 过渡
nginx:
syntax:  tcp_nodelay on | off;
default:  tcp_nodelay on;
context:  http, server, location
Enables or disables the use of the TCP_NODELAY option. The option is enabled only when a connection is transitioned into the keep-alive state.

本文出自 “老男孩的linux博客” 博客,请务必保留此出处http://oldboy.blog.51cto.com/2561410/1080755

分享到:
评论

相关推荐

    IT人员专业能力评定表模板.zip

    IT人员专业能力评定表模板

    一位高级程序员对IT新人的几点建议

    一位高级程序员对IT新人的几点建议一位高级程序员对IT新人的几点建议

    IT人如何提高英语水平

    我遇到很多IT的朋友,感觉到自己的英语水平不行,看不懂英文文档。鄙人英语水平也不高,但是可以熟练阅读英语文档。为此,我做了一个20多分钟的讲座,把自己的一些经验分享给大家,希望对大家有用

    IT中的专业英语

    IT中的专业英语 提高自己英语能力 非常的全面 欢迎下载使用

    IT英语词汇.txt

    IT英语词汇 IT英语 IT IT英语词汇 IT英语 IT IT英语词汇 IT英语 IT

    全国IT职业英语水平考试一级考试大纲

    全国IT职业英语水平考试(English Proficiency Test for IT ...EPTIP是第一个由国家权威IT教育机构制定的IT行业英语水平考试,为我国IT从业人员和准IT从业人员提供了紧缺的IT职业英语课程和IT职业英语水平认证。

    IT专业英语词典

    IT专业英语词典 计算机专业英语词典 IT专业英语词典 IT专业英语词典

    IT职业英语

    项目经理工作中常用的3000词汇,以及IT职业英语考试英语词汇,大钢,模拟题,专门for想提高英语水平的IT精英们

    IT 英语 计算机英语

    通信英语 电子 英语 计算机上英语经典收集

    中小IT企业项目团队人员配置管理

    需要企业根据自身特点和项目情况合理的进行人员的配置,协调项目经理、系统分析员、系统设计员、程序员、测试员以及实施员之间的岗位、职责与权限,保证项目在开发过程中的可靠性、连续性和一致性,既符合软件工程的...

    IT运维阶段及能力层级模型.png

    IT运维阶段及能力层级模型

    IT英语总汇(IT人必备)

    IT英语,让咱学计算机的人更上一层楼!常用的IT英语单词总汇

    IT英语面试参考题

    IT英语面试常用问题 IT英语面试参考题

    IT专业英语大全

    如果你是一个网络管理人员,你只有很蹩脚的英语水平,那么你只能是个网络管理人员,但是如果你事事都Very professional,那么你就可能是工程师,可能是权威专家

    IT职业英语课后习题答案

    该压缩包中包含了IT职业英语的所有课后习题的答案,各个章节的都有,而且答案保证100%的正确,并说明了答案的解析,很不错的资源啊!

    实用IT英语

    实用IT英语

    IT开发常用英语单词

    最为开发人员需要常用的英语单词。对开发人员有一定得帮助。

    IT职业英语二级. 软件类 词汇

    软件工程师 项目经理工作中常用的3000词汇,通过IT职业英语水平考试必备的词汇,帮助想提高英语水平的IT精英们,好东西大家共享。

Global site tag (gtag.js) - Google Analytics