A Journal Through My Activities, Thoughts, and Notes
#laugh
司法礼仪中的法官忌语
1. 别再说了。
2. 你当法官还是我当法官。
3. 你懂法还是我懂法。
4. 你说了算还是我说了算。
5. 听你的还是听我的。
6. 不同意调解对你可没好处。
7. 你这个案件肯定要输(赢)的。
8. 你这个律师怎么当的。
9. 法院不是为你一个人开的。
10. 烦人。
11. 我就这样判了,你去告好了,想找谁找谁,想去哪告去哪告。
《河南省人民法院司法礼仪规范(试行)》
2008. 8. 1
真好笑。可是笑着笑着我哭了。
司法礼仪中的法官忌语
1. 别再说了。
2. 你当法官还是我当法官。
3. 你懂法还是我懂法。
4. 你说了算还是我说了算。
5. 听你的还是听我的。
6. 不同意调解对你可没好处。
7. 你这个案件肯定要输(赢)的。
8. 你这个律师怎么当的。
9. 法院不是为你一个人开的。
10. 烦人。
11. 我就这样判了,你去告好了,想找谁找谁,想去哪告去哪告。
《河南省人民法院司法礼仪规范(试行)》
2008. 8. 1
真好笑。可是笑着笑着我哭了。
#tool 发现一个好东西
OCR - Image Reader is a useful chrome extension as it can help OCR not only the texts on a image but also texts in any area of a web page. You know some website doesn't allow you to copy its content, and this extension can help!
OCR - Image Reader is a useful chrome extension as it can help OCR not only the texts on a image but also texts in any area of a web page. You know some website doesn't allow you to copy its content, and this extension can help!
#sed
In command:
Using the
You can simplify it to:
This will work just as effectively. The
In command:
sed -e "s/\r//g" input-file
Using the
-e
switch in the sed
command is not strictly necessary in this context. The -e
option is used to specify a script to be executed, but if you're providing a single expression, sed
can interpret it without the -e
.You can simplify it to:
sed "s/\r//g" input-file
This will work just as effectively. The
-e
flag is more relevant when you want to include multiple expressions in one command, for example:sed -e "s/\r//g" -e "s/foo/bar/g" input-file
#english
- Hand in 意思是“上交”或“递交”,通常指把作业、文件等交给某人。例如:“Please hand in your homework.”(请上交你的作业。)
- Hand out 意思是“分发”或“发放”,指把物品、文件等分给一群人。例如:“The teacher handed out the test papers.”(老师分发了试卷。)
hand in
and hand out
- Hand in 意思是“上交”或“递交”,通常指把作业、文件等交给某人。例如:“Please hand in your homework.”(请上交你的作业。)
- Hand out 意思是“分发”或“发放”,指把物品、文件等分给一群人。例如:“The teacher handed out the test papers.”(老师分发了试卷。)