Skip to main content

写作一直是个老大难

写作一直是个老大难(无论中英文)属于平铺直叙憋不出几个字的类型 每次看同事的
邮件都要顶礼膜拜。。。最近有空总结了一些没什么实际意义但会看起来变得高大上的短语 跟大家分享一下 欢迎纠正/补充

开宗明义类:high level overview, big picture, give you a heads up, 30000
feet view,这一类就是一上来可以用的 一句话简单陈述是要干嘛

重视细节类:deep dive, drill down, unpack an issue,上面的用完了就可以用这几个过渡到具体的内容啦

昂扬向上的废话:think outsite the box (be creative), take it to the next
level (improve), hit the ground running/roll up your sleeves (work on sth
immediately), give it 110% (do my best),这几个词可以用来替换括号里的词 虽然意思没啥区别 但听起来让人醍醐灌顶有没有~

一些常用词:above my pay grade (向上甩锅) escalate/run it up the ladder (向
上汇报), reach out (contact/email的时髦说法), keep me in the loop (不管你们
想干嘛 我要知情), let us marinate on that idea (现在做不了决定 打太极), call it a day (太饿了大家散了吧), ballpark/ballpark figure/ballpark estimation (rough estimation), take it offline (现在不想讨论了 一会再说)

以上这些词 大佬们都很常用 偶尔学着用用能让自己的邮件/presentation不那么干巴

Comments

Popular posts from this blog

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...