上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 31 下一页

2018年1月15日

为 git设置代理

摘要: 一、针对 http ```bash git config --global http.proxy 'socks5://127.0.0.1:1080' git config --global https.proxy 'socks5://127.0.0.1:1080' git config --glob 阅读全文

posted @ 2018-01-15 02:16 Lemo_wd 阅读(379) 评论(0) 推荐(0)

2018年1月4日

ffmpeg 转换 mp4 成 flv

摘要: ① mp4 转 flv 参考资料: https://addpipe.com/blog/flv-to-mp4/ ffmpeg -i demo.mp4 -c:v libx264 -crf 19 demo.flv 或者 ffmpeg -i demo.mp4 -c:v libx264 -ar 22050 - 阅读全文

posted @ 2018-01-04 01:27 Lemo_wd 阅读(4298) 评论(0) 推荐(0)

2017年12月31日

递归的四条基本法则

摘要: 概念 1.基础情形 2.不断推进 3.设计法则(design rule)假设所有的递归调用都能运行 4.合成效益法则(compound interest rule)同一实例切勿做重复性工作 阅读全文

posted @ 2017-12-31 10:23 Lemo_wd 阅读(408) 评论(0) 推荐(0)

sublime3 快速运行 java

摘要: build 系统 Java.sublime-build 阅读全文

posted @ 2017-12-31 10:02 Lemo_wd 阅读(305) 评论(0) 推荐(0)

2017年12月16日

javascript 缩写技巧

摘要: 19种JS高(炫)效(技)缩写法 https://segmentfault.com/a/1190000011229633 阅读全文

posted @ 2017-12-16 21:36 Lemo_wd 阅读(113) 评论(0) 推荐(0)

2017年12月15日

python 中的 list dict 与 set 的关系

摘要: 转自: http://www.cnblogs.com/soaringEveryday/p/5044007.html list arraylist 实现(数组) List 通过内置的 append()方法来添加到尾部,通过insert()方法添加到指定位置(下标从0开始): 通过pop()删除最后尾部 阅读全文

posted @ 2017-12-15 10:40 Lemo_wd 阅读(296) 评论(0) 推荐(0)

2017年12月14日

python的日志配置

摘要: yaml 示例 ini 配置文件 json 配置 end 阅读全文

posted @ 2017-12-14 14:55 Lemo_wd 阅读(312) 评论(0) 推荐(0)

2017年12月5日

git 的相关知识

摘要: 参考文章 git checkout HEAD <file> : master/HEAD -> index -> work directory index 暂存区有两行信息。分别用于比较本区与 工作目录和 本地仓库master 的变化。 当提交后,不再显示暂存区与本地仓库master 的变化。暂存区保 阅读全文

posted @ 2017-12-05 23:25 Lemo_wd 阅读(149) 评论(0) 推荐(0)

2017年12月2日

jsonp 的实质

摘要: 发送 get请求,可以通过 浏览器输入 url地址,也可以在 javascript 脚本中手动发送 ajax。 或者也可以在 Html网页中定义一个 带 src的 Html 标签,比如 <img src="" /> ,<script src=""></script>等。 那么 jsonp 就是通过在 阅读全文

posted @ 2017-12-02 23:31 Lemo_wd 阅读(138) 评论(0) 推荐(0)

2017年12月1日

关于 TG中 callback_data <= 64bytes 的解决方法

摘要: 解决方法: 以上 阅读全文

posted @ 2017-12-01 21:18 Lemo_wd 阅读(316) 评论(0) 推荐(0)

上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 31 下一页

导航