JackyCJ Blog

Thinking will not overcome fear but action will.

Android文件操作

Android开发

文件读写 //获取文件路径 context.getFilesDir(); //获取缓存路径 context.getCacheDir(); //获取当前应用安装包路径 context.getPackageResourcePath(); //获取其他应用安装包路径 getPackageManager().getApplicationInfo(packageName, 0).sourceDir;...

Pyttsx3 (offline tts or text to speech converter for python 3)

layout: post title: pyttsx3 subtitle: Python开发 date: 2019-11-22 author: JackyCJ header-img: img/post-bg-2015.jpg catalog: true tags: - Python - pyttsx3 pyttsx3 (of...

Python-docx

Python开发

Python-docx pip install docx pip install python-docx 修改字体 python-docx

Python装饰器使用

Python开发

Python装饰器使用 def run_time(func): def wrapper(): start = time() func() # 函数在这里运行 end = time() cost_time = end - start print("func three r...

Android安装与开发

Android开发

AndroidStudio安装 AndroidStudio下载 javaJDK下载 Android开发 listview root url + 参考 Mac系统安卓开发第一天

BeautifulSoup安装与使用

BeautifulSoup安装与使用

BeautifulSoup安装与使用 参考 Beautiful Soup

MakDown基本用法

MakDown基本用法

makdown语法 常用语法 1. > 大于号使用 >示例 示例 2. - 减号使用 - 示例 示例 3. 多级有序列表 1. 一级标题 1. 二级标题 1. 三级标题 1. 二级标题 1. 一级标题 1. 二级标题 1. 二级标题 一级标题 二级标题 三级标题...

Flask-SocketIO使用

推荐工具

Flask-SocketIO pip install Flask-SocketIO pip install websocket-client 报错 The client is using an unsupported version of the Socket.IO or Engine.IO protocols (further occurrences of this error...

算法篇

推荐工具

算法篇 一、排序算法 排序算法 平均时间复杂度T(n) 最好情况 最坏情况 稳定度 空间复杂度S(n) 冒泡排序 O(n^2) O(n) O(n^2) 稳定 O(1) ...

Mac安装mysql

推荐工具

一、安装 1、执行安装命令 brew install mysql 2、安装完后启动mysql mysql.server start 3、执行安全设置 mysql_secure_installation 显示如下 There are three levels of password validation policy: LOW Length >= 8 MEDIUM Le...