有感室友面Google发挥失误

我室友是个大牛。但是今天面Google 最后一轮还是跪了。 本来应该用o(N)复杂度的算法,他临场想岔了,给了一个o(n!)的算法。 不是平时不努

用心聊天,是一门学问

说话是我们求学和工作必不可少的环节。 说话的本事,沟通能力的强弱和我们的职业生涯息息相关。 在说话的过程中。懂得多的人,不需要随时准备碾压对方。

Shortcodes

Admonition

I'm title!

biu biu biu.

note

biu biu biu.

Without title.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
{{% admonition note "I'm title!" false %}}
biu biu biu.

{{% admonition type="note" title="note" details="true" %}}
biu biu biu.
{{% /admonition %}}

{{% admonition example %}}
Without title.
{{% /admonition %}}

{{% /admonition %}}

培养一个好习惯-写作

其实,有很多的写作素材。日常的生活,就有很多东西可以写下来。例如,打uber就是一段好历程。值得记录下来。 最近一直靠打uber 上下班。 一同u

去Fremont dmv 更新驾照

早上八点半打uber去 Fremont dmv 办驾照。到了以后,看到绕着房子一周的人群。约莫有两百人吧。我安心排在队伍后面。打开kindle看书。 到了8点50左

做题的目标

2016-07-10-做题的目标 Enjoy typing the words and make the thing better. 训练自己的手指和大脑,让自己的生产力提高。在一小时内能够刷三道题。给出bugfree的解法

袁崇焕杀毛文龙之后

历史事件有很多偶然性。 明朝末年,是风雨飘渺的岁月。人命不值钱。就是朝廷的官员也朝不保夕。 袁崇焕杀掉了毛文龙导致了一系列的后果。皇太极没有了毛

Shell questions for [DevOps] engineer

Dima gave me a shell question on this afternoon, here is the solution. 1 2 $ sudo cat *.txt > /bin/a.out bash: /bin/a.out: Permission denied ** Root Cause ** This command does not work because the redirection is performed by shell which does not have the permission to write to /bin/a.out. The redirection of the output is not performed by sudo. ** Solution ** 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 There are two solutions to Dima’ shell question: 1.