IntelliJ ---- Java IDE
创建 gradle 项目
没有 gradle-wrapper.properties
原因
- 没有 gradle wrapper 相关文件
intellij Bug
- 公司电脑没问题,家中的有问题
解决
运行命令
1gradle wrapper
没有 src 文件夹
解决
在 build.gradle 文件中,添加如下代码
1 2 3 4 5 6 7 8 9 10task 'create-dirs' { doLast { sourceSets*.java.srcDirs*.each { it.mkdirs() } sourceSets*.resources.srcDirs*.each { it.mkdirs() } } }- 在 gradle tasks 中 Other 分类下运行 create-dirs 任务
快捷键
隐藏 侧边栏
- Ctrl + Shift + F12
查看 所有补全内容
- Ctrl + .
cracking
Clash
linux 使用 clash GUI
clash_for_windows_linux
Tap 模式
| |
clash service
| |
archlinux 路径
Chemistry
名词
Cython Notes
教程
官方 Tutorial
编译单个文件
制作 setup.py
1 2 3 4 5 6from setuptools import setup from Cython.Build import cythonize setup( ext_modules = cythonize("helloworld.pyx") )- 这里假设我们要处理的脚本是 helloworld.pyx
命令行执行
1python setup.py build_ext --inplace
obfuscation ---- python 代码混淆
工具
- pyminifier
pyarmor
可以与 pyinstaller 一起使用
- 低层调用 pyinstaller 打包
更多
- GitHub - 0sir1ss/Anubis: A Python script to obfuscate and protect your code t…
Carbon: GitHub - 0sir1ss/Carbon: A Python script to obfuscate and protect your code b…
- 删除 comment
- 重命名 class, variables, functions, parameters