生而为人

程序员的自我修养

0%

[toc]

缩写

cosmos VC:

Virtual Cluster: a management tool
– Allocates resources across groups within OSD
– Cost model captured in a queue of work (with priority) within the VC

STCA:

IcM:

One Incident Management System for Microsoft.

AML:

conversion

CTI文件夹

类似于share的功能

cfrloader

[DWC](https://microsoftapc.sharepoint.com/teams/SASharedDatateam/_layouts/OneNote.aspx?id=%2Fteams%2FSASharedDatateam%2FShared Documents%2FAds Data%2FSubjectAreas&wd=target(Tools%2FDWC.one|E8008E94-A71A-4E55-AF3D-7740E1B094BC%2F)

onenote:https://microsoftapc.sharepoint.com/teams/SASharedDatateam/Shared Documents/Ads Data/SubjectAreas/Tools/DWC.one#section-id={E8008E94-A71A-4E55-AF3D-7740E1B094BC}&end)

(Data Warehouse Controller) is an orchestration system built by Ads Data team, aiming at schedule tasks with a dependency system.

S2B streaming to batch

OOSLA

NAF

This module is the second of a three-part training series that provides you with insights into how to recognize security threats, helps you adopt healthy security behaviors, and gives you information on the tools and resources available

on board 入职

请病假

https://zhuanlan.zhihu.com/p/36786594

实例

六月没有支付餐补,七月没有支付奖金

正:Meal Allowance was not paid in June and Sign-on Bonus in July.

正?:Meal Allowance was not paid in June, and so as Sign-on Bonus in July.

连词

although

原 : The release task status is always in progress, not change to complete. Although the deployment has been completed, and the job on APGold can run normally.

想表达的意思是:尽管部署已经完成,而且job可以正常运行。但release task的状态一直在进行中,而不变为完成。

有道写作建议删除and,但明显更改了这句话的意思。其实是although用的不对,最终修改如下:

改:The release task status is always in progress, not change to complete. In fact,D:\work\需求\MSNMediation\scope_test\daily_detail.script the deployment has been completed, and the job on APGold can run normally.

修改原因

连词应根据句子前后语义和逻辑关系选择,不宜用语义有重复或是逻辑有冲突的连词

语法点解释

连词是连接单词、短语、从句或句子的一种虚词,在句子中不单独做任何成分。大多数连词具有意义,表示特定的逻辑关系,不应重复使用连词,连词应根据句子前后语义和逻辑关系选择,不宜用语义有重复或是逻辑有冲突的连词。此外还应注意避免中文连词使用习惯的影响。

例句

  • ✔ Although the sun was shining, it wasn’t very warm. 尽管太阳高照,却不是很暖和。

    ✖ Although the sun was shining, but it wasn’t very warm.

  • ✔ Since I put on weight easily, I am forever on a diet. 因为我很容易长胖,所以我永远都在减肥。

    Since I put on weight easily, so I am forever on a diet.

动名词

Learn the company’s business, processes, tools, etc

Learned the company’s business, processes, tools, etc

语法点解释

动词是表示主语动作或状态的词,分为助动词和实义动词等。其中,实义动词有现在分词、过去分词、过去式等多种形式,动词形式不同,用法也不同。英语中不同时间和方式发生的动作或状态要用谓语动词的不同形式来表示。此外,动词使用不当还会影响语义和语法正确性。

例句

  • ✔He always asks after you in his letters. 他总是在他的信里向你问好。

    ✖He always asking after you in his letters.

  • ✔She dropped out after only a year. 她仅在一年后就退学了。

    ✖She drops out after only a year.

对比

all/all of

1
2
All the release versions have the same problem. (推荐,更简洁concise)
All of the release versions have the same problem.

[toc]

参考资料

全部数学符号 https://katex.org/docs/supported.html

https://www.cnblogs.com/caomingpei/p/9760652.html

数学公式

inline math:$x^{y^z}=(1+e^x)^{-2xy^w}$

block math:

1
\frac{7x+5}{1+y^2}

$$
\mathbf{V}_1 \times \mathbf{V}_2 = \begin{vmatrix}
\mathbf{i} & \mathbf{j} & \mathbf{k} \
\frac{\partial X}{\partial u} & \frac{\partial Y}{\partial u} & 0 \
\frac{\partial X}{\partial v} & \frac{\partial Y}{\partial v} & 0 \
\end{vmatrix}
${$tep1}{\style{visibility:hidden}{(x+1)(x+1)}}
$$

文本

上下标

  1. 上标:n^2^
  2. 下标:n~2~

颜色

Markdown文字添加颜色方法总结(珍藏)
MarkDown: 为字体添加颜色

包含rgb

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
方法一:
<font face="微软雅黑" >微软雅黑字体</font>
<font face="黑体" >黑体</font>
<font size=3 >3号字</font>
<font size=4 >4号字</font>
<font color=#FF0000 >红色</font>
<font color=#008000 >绿色</font>
<font color=#0000FF >蓝色</font>

方法二:
$\color{#FF3030}{红色文字}$

rgb:
红:255,0,0 #FF0000
橙: 255,125,0 #FF7D00
黄:255,255,0 #FFFF00
绿:0,255,0 #00FF00
蓝:0,0,255 #0000FF
靛: 0,255,255 #00FFFF
紫: 255,0,255 #FF00FF

背景色

1
2
<table><tr><td bgcolor=orange> 背景色是 1 orange</td></tr></table>
<table><tr><td bgcolor= BlueViolet > 背景色2 BlueViolet </td></tr></table>

表格

表头 表头
单元格 单元格
单元格 单元格

流程图

1
2
3
4
graph TD
a-->b
a-->c
d-->e

下面是通过html语法完成的,非markdown自带功能

改变文字样式

改变文字的大小、颜色和对齐方式

自定义表格样式

文件状态:
[√] 草稿
[√] 正在修改
[√] 正式发布
文件名称: LSGO股票交易策略分析软件 Use Case Model
当前版本: 1.0.0
作 者: 马燕鹏
创建日期: 2018-07-15
最后更新:
密 级: 开源系统
版权说明: 遵守 GPL V3协议

折叠内容

explode 与 lateral view 对比

select user_coupon_id, explode(split('0,1', ',')) as tag
from mart_waimai.aggr_act_ord_use_coupon_dd
where dt='20200920'
limit 10
## 支持html标签

html特殊字符及图标

后加";"生效

参考资料

通用

  1. 完整整理版
  2. 流程图详细教程
  3. 编辑数学公式
  4. Markdown 高级技巧
  5. markdown语法
  6. Markdown进阶(更改字体、颜色、大小,设置文字背景色,调整图片大小设置居中)
  7. Markdown 技巧:如何改变表格宽度(列宽)?

hexo

  1. Hexo下的Markdown语法
  2. 【hexo博客进阶】1.Markdown语法
  3. 如何让hexo使用流程图
  4. Hexo优化 — 利用 Markdown 语法画流程图

markdown工具

  1. Typora
  2. https://blog.csdn.net/wkd_007/article/details/124172389