你的心如利箭 在风中笔直的飞翔
github DNS ALEXA CDN
jquery JS CSS CSS3 HTML5 svg php --- isux w3cplus

21270

  博客园  :: 首页  ::  ::  ::  :: 管理

2021年8月2日

摘要: php mysql linux http://man.linuxde.net/ Linux命令大全(手册) 2017-11-26 ls ls -l 列出文件名、权限、所有者、文件大小等详细信息ls -l t* 列出当前目录中所有以“t”开头的目录的详细内容 cd cd / 进入目录cd ~ 进入"家 阅读全文
posted @ 2021-08-02 14:16 bjhhh 阅读(47) 评论(0) 推荐(0) 编辑

2021年7月11日

摘要: https://www.runoob.com/python/python-date-time.html 当前时间: import time now=time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(int(time.time())-24*60*60)) 阅读全文
posted @ 2021-07-11 20:52 bjhhh 阅读(80) 评论(0) 推荐(0) 编辑

2019年7月30日

摘要: 安装pdfminer模块: pip install pdfminer3k 安装docx模块: https://www.lfd.uci.edu/~gohlke/pythonlibs/ 下载 python_docx‑0.8.10‑py2.py3‑none‑any.whl 安装 pip install p 阅读全文
posted @ 2019-07-30 00:13 bjhhh 阅读(792) 评论(0) 推荐(0) 编辑

2019年6月27日

摘要: 国外站 stackoverflow.com github.com labs.play-with-docker.com www.youtube.com coderseye.com https://coderseye.com/best-php-frameworks-for-web-developers/ 阅读全文
posted @ 2019-06-27 01:42 bjhhh 阅读(273) 评论(0) 推荐(0) 编辑

2019年4月20日

摘要: 100以内奇数: ls = [x for x in range(100) if x % 2 == 1] 100以内偶数: ls = list(x for x in range(100) if x % 2 == 0) 20以内的2次方: ls = list(x * x for x in range(2 阅读全文
posted @ 2019-04-20 18:41 bjhhh 阅读(319) 评论(0) 推荐(0) 编辑

2018年5月21日

摘要: https://www.python.org/downloads/release/python-370/ python3.7.0 win10环境,选:Windows x86-64可执行安装程序。 https://www.python.org/ftp/python/3.7.0/python-3.7.0 阅读全文
posted @ 2018-05-21 19:57 bjhhh 阅读(414) 评论(0) 推荐(0) 编辑

2018年2月11日

摘要: MongoDB 是一个基于分布式文件存储的数据库。由 C++ 语言编写。旨在为 WEB 应用提供可扩展的高性能数据存储解决方案。 MongoDB 是一个介于关系数据库和非关系数据库之间的产品,是非关系数据库当中功能最丰富,最像关系数据库的。 http://www.runoob.com/mongodb 阅读全文
posted @ 2018-02-11 00:55 bjhhh 阅读(350) 评论(0) 推荐(0) 编辑

2018年2月4日

摘要: https://www.cnblogs.com/MnCu8261/p/5494807.html shutil模块 http://blog.csdn.net/rozol/article/details/71422712 操作系统与路径 模块(os / os.path / pathlib) os模块和s 阅读全文
posted @ 2018-02-04 12:36 bjhhh 阅读(759) 评论(0) 推荐(0) 编辑

2018年1月28日

摘要: https://www.youtube.com/watch?v=DnTn3Yx-Nvg join功能: Queue功能 https://www.youtube.com/watch?v=DnTn3Yx-Nvg https://github.com/MorvanZhou/tutorials/blob/m 阅读全文
posted @ 2018-01-28 01:38 bjhhh 阅读(406) 评论(0) 推荐(0) 编辑

2018年1月16日

摘要: http://www.numpy.org/ numpy官网 http://cwiki.apachecn.org/pages/viewpage.action?pageId=10030181 scikit-learn 0.18 中文文档(暂时先放这儿) https://www.imooc.com/lea 阅读全文
posted @ 2018-01-16 02:24 bjhhh 阅读(533) 评论(0) 推荐(0) 编辑