NoteBook
ABOUT
UidGenerator
Algorithm
README
BigData
README
bigdata-Redis
bigdata-clean
bigdata-ecosphere
bigdata-flink
bigdata-hadoop
bigdata-hbase
bigdata-hive-sql
bigdata-hive
bigdata-huey
bigdata-kafka
bigdata-prestodb
bigdata-quality-analysis
bigdata-rabbitmq
bigdata-scylladb
bigdata-spark
bigdata-visualization-web
Languages
Go
go-env-config
go-info
readme
Linux
README
linux-apache
linux-bashshell
linux-centos8
linux-cmdn-test
linux-cmdn-tools
linux-ftp
linux-function
linux-https-cert
linux-locale
linux-network
linux-nfs
linux-ntpd
linux-pip
linux-raid
linux-restart-scripts
linux-ssh
linux-svn
linux-term-info
linux-trash
linux-using-cmd
linux-virtualenvwarapper
linux-yum
趣味命令
Python
README
learn1-base-know
learn1-class
learn1-data-type
learn1-func
learn1-info
learn1-install
learn1-knowledge
learn1-module
learn1-runoob
learn1-try-except
learn2-asyc-code
learn2-base-principle
learn2-decorator
learn2-design-mode
learn2-garbage-collection
learn2-generators
learn2-magic-func
learn2-optimization-tips
learn2-optimization-tools
learn2-process
learn5-algorithm-know
learn5-algorithm-topic
learn5-data-structure
learn9-code-format
learn9-py2-diff-py3
learn9-py2-to-py3
learn9-scripts-read-conf
learn9-terms
learn9-utils
lib-logging
lib-os
lib-re
lib-sys
lib-time
lib3-click
lib3-dask
lib3-faker
lib3-flask
lib3-ipython
lib3-jieba
lib3-nosetests
lib3-pandas
lib3-re
lib3-selenium
lib3-sqlalchemy
lib3-z-packages
Web
ReadMe
bootstrap
web-angularJs
web-echarts
web-gis
web-html
web-http-requests
web-javascripts
Projects
GUI编程
GUI
课堂抽签助手
config
database-4bcf258d288d59d13e33eafc4692e706
README
Stocks
01-选股思路
README
README
TODO
Tools
A-Tips
001-术语知识
002-知识清单
01-IT术语
03-数据结构
04-算法
A-hot-github
B04-趣味算法题
datastruct-chain
datastruct-index
info
readme
tips-cmd
tips001
策略知识
Anaconda
cmd
config
install
issue
readme
BigData
README
bigdata-Redis
bigdata-clean
bigdata-ecosphere
bigdata-flink
bigdata-hadoop
bigdata-hbase
bigdata-hive-sql
bigdata-hive
bigdata-huey
bigdata-kafka
bigdata-prestodb
bigdata-quality-analysis
bigdata-rabbitmq
bigdata-scylladb
bigdata-spark
bigdata-visualization-web
Centos8
README
Chrome
Win-Chrome
module
plugins
readme
Crawl
README
crawl-anti-spider
crawl-auth
crawl-download-progress-bar
crawl-framework-diff
crawl-info
crawl-lawer
crawl-pyquery
crawl-re
crawl-resumable-large-files
crawl-xpath
Databases
README
db-db2
db-mysql
db-oracle-config
db-oracle-optimization
db-oracle
Django
README
cmd
config
example
function
install
plugins-edit
plugins
Docker
docker-cdh
docker-cmd
docker-compose
docker-db2
docker-es
docker-function
docker-info
docker-install
docker-issue
docker-mysql
docker-neo4j
docker-oracle
docker-redis
readme
ElasticSearch
README
es-cmd
es-config
es-function
es-install
es-issue
Git
README
git
Github
github
plugins
readme
Graph
gremlin-cmd
hugegraph-cmd
hugegraph-info
hugegraph-install
hugegraph-issue
hugegraph-load
neo4j-cmd
neo4j-config
neo4j-function
neo4j-info
neo4j-install
neo4j-load
readme
Hexo
hexo
NodeJs
cmd
install
Pycharm
README
Win-Pycharm
crack
README
Server
CentOS8
README
Win10
Tips
README
Win-VNC
Win-Virtualbox
code-line-statis
drools-rule-engine
gitbook
sbt
Vscode
Win-VScode
plugins
readme
ml
README
docs
ml-01学习指南
ml-02相关术语
ml-03发展历程
ml-04代码实践
google-course
01快速链接
02机器学习概念
03机器学习工程
04机器学习系统在现实世界里的应用
readme
resources
代码优化技巧
优化原则核心技巧其他技巧Python 代码性能优化技巧 常用代码优化技巧 sort()优于 sorted. 字符串拼接。join 优于字符串相加 列表表达式优于列表循环。 减少不必要的临时对象 应避免在高频函数中使用 import 语句的开销。去除无用 import 语句,延迟 import 尽量 ...
2021-10-23
python
>
python-进阶
Python7 大原则与 24 种设计模式
TODO 需要补充 行为型模式 结构型模式 小结等 七大设计原则 24 种设计模式 创建型模式 结构型模式 行为型模式 设计模式-创建型 创建型-01 工厂模式 创建型-02 抽象工厂模式 创建型-03 生成器模式 创建型-04 原型模式 创建型-05 单例模式 创建型-06 多例模式 ...
2021-10-23
python
>
python-进阶
Python 垃圾回收机制
附件参考资源https://www.cnblogs.com/aashui/p/9871009.html Python 垃圾回收机制 [转载]Python 垃圾回收机制–完美讲解 ...
2021-10-23
python
>
python-进阶
Python 生成器
列表/字典推导式列表推导式 样例 12345678910111213# >> 实现列表自加一info = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]# 方法1 enumerate循环for index,i in enumerate(info): info[inde ...
2021-10-23
python
>
python-进阶
Python 装饰器
总结装饰器的作用就是为已经存在的函数或对象添加额外的功能 装饰器使用种类: 函数装饰器 类装饰器 函数装饰器装饰 类 类装饰器装饰 函数 装饰器样例 1234567@staticmethod@loggingdef a(): return 1 pass等价于a = staticmeth ...
2021-10-23
python
>
python-进阶
Python 异常处理
简介说明 Python3 官方异常文档 异常 语法或逻辑错误 因为程序出现了错误而在正常控制流以外采取的行为 引起异常发生的错误 检测(和采取可能的措施)阶段 基础使用try..except..else..finally12345678910import tracebacktry: ...
2021-10-23
Python 异步编程
tags: 2020年 05月 python3 异步编程 附件参考资源 深入理解 Python 异步编程(上) 从 0 到 1,Python 异步编程的演进之路 ...
2021-10-23
python
>
python-进阶
Python 底层原理
Python-底层实现清单 内存管理&垃圾回收 变量对象管理 数据类型底层实现 列表 元组 字符串 数值 字典 类封装 数据类型底层实现列表实现原理: 列表实现可以数组和链表 列表是一个线性的集合,它允许用户在任何位置插入、删除、访问和替换元素。 列表实现是基于数组或基于链表结构的。当 ...
2021-10-23
菜鸟驿站学习笔记
tags: Python 菜鸟驿站 2018 年 12 月 简介说明以下全文来自于菜鸟驿站官网,如需跳转请点击。 各类程序员学习路线图 学习资料站点地图:学习资料站点地图 Python 简介Python 是一种解释型、面向对象、动态数据类型的高级程序设计语言。Python 由 Guido van R ...
2021-10-23
python
>
python-基础
Python基础知识
tags: Python 基础 2019 年 10 月 内容说明: 变量 列表/元组 字典 数据转换 字符串12345a = 'string'a = "string"a = str()a = """ string " ...
2021-10-23
python
>
python-基础
<
1
…
17
18
19
20
21
…
25
>