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

21270

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

2024年6月22日

摘要: 2024-6-22,记录此时的阿里云域名价格,及续费价格。看看哪种最合算。 https://wanwang.aliyun.com/domain/ 上图中:黄色的是价格不错的。绿色、蓝色的是相对还行的。橙色标记的是热门域名。 有很多域名后缀没有列出,因为不常用,或者性价比没特色。 a56爆大奖在线娱乐,结论是: 1年 阅读全文
posted @ 2024-06-22 22:21 bjhhh 阅读(6) 评论(0) 推荐(0) 编辑

摘要: 数独:9x9 编了一段代码,就是末尾那里,重复“刷”几次,就排好了。 # -*- coding: utf-8 -*- #coding=utf-8 __author__ = 'bjhhh' ''' 数独 ''' import numpy as np a = np.array([[0,0,1,0,0,0 阅读全文
posted @ 2024-06-22 16:02 bjhhh 阅读(2) 评论(0) 推荐(0) 编辑

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 阅读(81) 评论(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 阅读(796) 评论(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 阅读(320) 评论(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日

摘要: /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) 编辑