JackyCJ Blog

Thinking will not overcome fear but action will.

ADB

支持Windows/Mac

ADB调试 ADB 安装 adb devices Appium 安装 pip install Appium-Python-Client Usage # Android environment from appium import webdriver # Options are only available since ...

Python Shell使用

Python-Shell使用 Installation npm install python-shell 参考 https://www.npmjs.com/package/python-shell https://github.com/extrabacon/python-shell

Electron打包

Electron开发 环境部署 1.安装 npm install --save-dev @electron-forge/cli yarn add --dev @electron-forge/cli npx electron-forge import 2.打包 编译Vue npm run build 编译Electron ...

Redis

支持Windows/Mac

Redis Prerequisites First, make sure you have Homebrew installed. From the terminal, run: $ brew --version If this command fails, you'll need to follow the Homebrew installation instructions. I...

使用visual studio code进行qt开发

使用Visual Studio Code进行Qt开发 参考 使用VS Code进行Qt开发

从零开始学习electron开发

– layout: post title: 从零开始学习Electron开发 subtitle: 支持Windows/Mac date: 2021-04-21 author: JackyCJ header-img: img/post-bg-2015.jpg catalog: true tags: - Electron - npm ...

Electron生成可执行程序

支持Windows/Mac

Electron打包 npm install npm install @electron-forge/cli npx electron-forge import npm run make vue安装 npm install --global vue-cli vue搭建报错处理 用管理员启动powershell get-ExecutionPolicy set-ExecutionPo...

Python

开发

动态创建QPushButton信号响应 from PyQt5.QtWidgets import (QPushButton, QWidget) class app(QWidget): def __init__(): super().__init__() btn_list = ['btn1', 'btn2'] for each in btn_list: btn...

Python

开发

如何在Python调用cmd时隐藏窗口 from subprocess import Popen from win32process import CREATE_NO_WINDOW Popen(args, creationflags=CREATE_NO_WINDOW)

Python

删除字典元素

Python删除字典元素 a = {'1': 1, '2':2} # 清空字典 a.clear() # 弹出指定key b = a.pop('1') # 随机弹出 b = a.popitem() # 删除指定key del a['1'] 数组逆序 a = [1, 2, 3] for each in a[::-1] print(each)