2020年7月27日星期一
石笼网
石笼网尤其是石笼网箱所用的钢丝一般包含三种。网丝、边丝和绑丝。我们拿网孔100mm×120mm的石笼网来说,网丝用300丝的,边丝用340丝的,绑丝一般用220丝。边丝就是石笼网箱12个边都是340丝的,绑丝就是用于捆绑网箱周边的的铁丝。
1.网丝的范围在2mm-4mm
2.边丝一般大于网丝,粗0.5mm-1mm
3.绑丝一般小于网丝,常见的以2.2mm居多
石笼网材的钢丝采用热镀铝锌工艺,钢丝表面镀层更加稳定,可有效减少网线的氧化作用。再经过涂树脂膜工艺后,具有耐腐蚀、防静电、抗老化、抗氧化的特性,使用寿命更长。据试验,将塑料在 30%浓度盐酸中浸泡10天,塑料无变色,无破裂现象。由此可见,即使在高污染地区应用此材料也是可靠的。经过涂树脂膜的钢丝使用寿命可达70年。
1.网丝的范围在2mm-4mm
2.边丝一般大于网丝,粗0.5mm-1mm
3.绑丝一般小于网丝,常见的以2.2mm居多
石笼网材的钢丝采用热镀铝锌工艺,钢丝表面镀层更加稳定,可有效减少网线的氧化作用。再经过涂树脂膜工艺后,具有耐腐蚀、防静电、抗老化、抗氧化的特性,使用寿命更长。据试验,将塑料在 30%浓度盐酸中浸泡10天,塑料无变色,无破裂现象。由此可见,即使在高污染地区应用此材料也是可靠的。经过涂树脂膜的钢丝使用寿命可达70年。
2020年7月24日星期五
ftp、sftp客户端
Windows操作系统:WinSCP
OSX或者Linux操作系统: lftp
use_lftp_as_a_sftp_client
lftp命令
lftp tutorials
lftp sftp://[user name]@[domain name]:[port number]
lftp sftp://userName@theURL.org:8002
将本地目录(包括子目录)上传:
mirror -R 本地目录名
把指定的远程目录镜像到本地:
mirror [OPTS] [remote [local]]
lftp sftp://admin:password123@serial.local -e "cd upload; put file.txt; bye"
OSX或者Linux操作系统: lftp
use_lftp_as_a_sftp_client
lftp命令
lftp tutorials
lftp sftp://[user name]@[domain name]:[port number]
lftp sftp://userName@theURL.org:8002
将本地目录(包括子目录)上传:
mirror -R 本地目录名
把指定的远程目录镜像到本地:
mirror [OPTS] [remote [local]]
lftp sftp://admin:password123@serial.local -e "cd upload; put file.txt; bye"
2020年7月19日星期日
vim
Learn Vimscript the Hard Way
keep same column when navigating by pages
VIM学习笔记
Vim 配置入门
Open vimrc file in Vim
Make Vim show ALL white spaces as a character
^@ symbol in vim
Power of g
Vim Regular Expressions 101
Vim how to delete all words and characters not matching a pattern
Vim - Adding empty line between lines
参考上面链接里的内容,
可以使用下面的替换操作,
删除文件中多余的换行符。
思路:如果\n后面没有空白字符\s,就删除这个换行符(实际上是保留换行符之前的内容)。
%s/\(.\+\)\(\n\)\s\@!/\1/
Vim快捷键和键盘映射-Vim入门教程(30)
How to comment out a block of Python code in Vim
keep same column when navigating by pages
VIM学习笔记
Vim 配置入门
Open vimrc file in Vim
Make Vim show ALL white spaces as a character
^@ symbol in vim
Power of g
Vim Regular Expressions 101
Vim how to delete all words and characters not matching a pattern
Vim - Adding empty line between lines
参考上面链接里的内容,
可以使用下面的替换操作,
删除文件中多余的换行符。
思路:如果\n后面没有空白字符\s,就删除这个换行符(实际上是保留换行符之前的内容)。
%s/\(.\+\)\(\n\)\s\@!/\1/
Vim快捷键和键盘映射-Vim入门教程(30)
How to comment out a block of Python code in Vim
2020年7月18日星期六
python epub
select-all-text-in-vi-vim
html首行缩进2字符 <style type="text/css"> p{ text-indent:2em;} </style>
HTML 4.01 符号实体
How can I add a string to the end of each line in Vim?
the-easiest-way-to-escape-html-in-python
python html.escape(s, quote=True)
converting-text-file-to-html-file-with-python
EPub格式电子书的制作
手把手教你怎么制作epub电子书
Template Engines
html首行缩进2字符 <style type="text/css"> p{ text-indent:2em;} </style>
HTML 4.01 符号实体
How can I add a string to the end of each line in Vim?
the-easiest-way-to-escape-html-in-python
python html.escape(s, quote=True)
converting-text-file-to-html-file-with-python
EPub格式电子书的制作
手把手教你怎么制作epub电子书
Template Engines
2020年7月11日星期六
2020年7月10日星期五
vim 正则表达式
https://zhuanlan.zhihu.com/p/136058417
How do I close a single buffer (out of many) in Vim?
Run_a_command_in_multiple_buffers
Search_and_replace_in_multiple_buffers
vim下 :%s/^M//g 或者 :1,$s/^M//g 均可
补充一点:
^M是使用 "CTRL-V CTRL-M" 而不是字面上的 ^M
How do I close a single buffer (out of many) in Vim?
Run_a_command_in_multiple_buffers
Search_and_replace_in_multiple_buffers
windows平台下,
换行符是\r\n,
而在linux下是\n,
这多出来的\r被vim解释成了^M。
vim下 :%s/^M//g 或者 :1,$s/^M//g 均可
补充一点:
^M是使用 "CTRL-V CTRL-M" 而不是字面上的 ^M
2020年7月5日星期日
订阅:
博文 (Atom)