字体

💠 字体 1.1. 基础知识 1.2. 资源 1.3. Tips 1.3.1. 使用字体保护网页敏感信息 符号 2.1. 制表符 个人习惯 3.1. 操作系统默认字体 3.2. 编辑器 3.3. IDEA 3.4. 终端 💠 2024-05-09 14:32:49 字体 Deepin wiki 字体 有哪些适合用于

Java异常处理

💠 异常 1.1. 异常的继承关系 1.2. 常见异常 1.3. 常见问题 1.3.1. 异常被吞 1.3.2. 异常栈被隐藏 1.3.3. 应该使用大块的try还是细颗粒度的try? 1.3.4. try和for谁包住谁更好?

Java8

💠 Java8 1.1. 实战库项目 接口的变化 2.1. default方法 2.2. static方法 函数式 3.1. 函数式接口 3.1.1. 构造函数的引用 3.2. 函数式接口案例 Lambda 4.1. 行为参数化 4.2. Lambd

Web性能调优

💠 Web应用性能优化 客户端 服务端 3.1. 压力测试准备 3.2. 性能基准 指标 3.2.1. 性能监控平台 3.3. 测试工具 3.3.1. Apache BenchMark 3.3.2. Jmeter 3.3.3. wrk 3.3.4. ali 3.3.5. Httperf 3.3.6. k6 数据库 4.0.1. MySQL 4.0.1.1. 主从复制以及读写分

PythonGUI

💠 GUI 1.1. GTK 1.2. Tkinter 1.3. PyQt 1.4. kivy 1.5. wxPython 1.6. NiceGUI 💠 2024-11-20 19:35:19 GUI GTK Official Doc | pygtk pygtk wiki stuartlangridge/ColourPicker拾色器 yucefsourani/python-gtk4-examples World / lollypop · GitLab maoschanz/drawing: Simple image editor for Linux Tkinter Offcial

PythonGame

目录 start pygame 安装 目录 end|2020-04-27 23:42| pygame 安装 python2 安装 pygame sudo apt install python-pygame python3 安装 pygame sudo apt install python3-dev mercurial sudo apt install libsdl-image1.2-dev libsdl2-dev libsdl-ttf2.0-dev 安装一些声音的功能 sudo apt install libsdl-mixer1.2-dev libimportmidi-dev sudo apt install libswscale-dev libsmpeg-dev libavformat-dev libavcode-dev sudo apt install python-numpy 执行这个安装pyg

Python 基础

💠 Python 基础 2.1. 代码风格 2.2. 序列 2.2.1. 列表 list 2.2.2. 元组 tuple 2.2.3. 字符串 str 2.2.3.1. 字符串编码问题 2.2.4. 字典 dict 2.3. 运算符 2.4. 函数 2.5. 包 2.6. 类 2.6.1. 继承 2.7. 异常 2.8. 读取命令行参数 2.8.1. docopt 2.8.2. Python Fire 应用 3.1.

Python Concurrency

💠 Concurrency 1.1. GIL 1.2. 协程 asyncio 1.3. 多线程 threading 1.4. 多进程 multiprocessing 实践 2.1. Ray 💠 2024-10-10 10:41:00 Concurrency Python中的并发编程可大致分为: 协程,多线程,多进程 协程Coroutine(asyn