博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
一些经验
阅读量:6335 次
发布时间:2019-06-22

本文共 1409 字,大约阅读时间需要 4 分钟。

hot3.png

积累经验吧

利用 image magick 处理图片——电脑硬盘太小,照片太大占空间,又不好删了,试着修改下尺寸:

#!/bin/sh# 参考文章:用ImageMagick命令行处理图片for img in `ls *.JPG`do	convert -sample 25%x25% ${img} thm${img}done

VIM 拼写检查:开启 set spell        <---->     关闭 set nospell

-------------------------------------------------------------------------------------

perldoc Spreadsheet::WriteExcel
:5060: warning [p 63, 0.0i]: can't break line
:5128: warning [p 64, 1.7i]: can't break line
:5128: warning [p 64, 1.8i]: can't break line
:5128: warning [p 64, 2.2i]: can't break line
:5128: warning [p 64, 2.3i]: can't break line
:5309: warning [p 66, 8.7i]: can't break line
:5370: warning [p 67, 7.5i]: can't break line
对此,perldocspec 里面说:
Pod formatters should tolerate lines in verbatim blocks that are of any length, even if that means having to break them (possibly several times, for very long lines) to avoid text running off the side of the page. Pod formatters may warn of such line-breaking. Such warnings are particularly appropriate for lines are over 100 characters long, which are usually not intentional.

#==========================================================

Vim代码缩进设置

#==========================================================

windows XP Vim 字体设置:

"VIM字体set guifont=Consolas:h14:cANSI

转换为 html ------>    :TOhtml

转载于:https://my.oschina.net/u/727594/blog/133470

你可能感兴趣的文章
ios电话拨打进行监听电话状态
查看>>
京东基于Spark的风控系统架构实践和技术细节
查看>>
什么时候使用CountDownLatch
查看>>
C#之MemberwiseClone与Clone
查看>>
Android性能优化之利用Rxlifecycle解决RxJava内存泄漏
查看>>
转: 如何为你的开源项目选择一个合适的开源协议?
查看>>
关系型数据库和NOSQL数据库对比
查看>>
Atitit 记录方法调用参数上下文arguments
查看>>
webstorm常用功能FTP,及常用快捷键
查看>>
eclipse html 打开方式
查看>>
[求助] win7 x64 封装 出现 Administrator.xxxxx 的问题
查看>>
人类投资经理再也无法击败电脑的时代终将到来了...
查看>>
一个最小手势库的实现
查看>>
HoloLens开发手记 - Vuforia开发概述 Vuforia development overview
查看>>
Android支付之支付宝封装类
查看>>
<亲测>CentOS中yum安装ffmpeg
查看>>
【分享】马化腾:产品设计与用户体验
查看>>
【机器学习PAI实践十】深度学习Caffe框架实现图像分类的模型训练
查看>>
全智慧的网络:思科十年来最具颠覆性的创新
查看>>
怎样将现有应用迁移到 VMware NSX
查看>>