首次提交

This commit is contained in:
2026-06-16 10:23:51 +08:00
commit aaeb52173b
740 changed files with 173337 additions and 0 deletions
+114
View File
@@ -0,0 +1,114 @@
破解clion
https://3.jetbra.in/
https://jb.1157pt.top/
2024.3 新版激活注意事项
设置->外观与行为->语言及地区->不要设置成中国大陆
LLDB 乱码
https://blog.csdn.net/gitblog_07374/article/details/148683197
安装的时候首先找到 /aenv/jetbra/scripts/install.sh 执行
检查 clion64.vmoptions 注意不是 jetbrains_client64.vmoptions
windows下是 clion64.exe.vmoptions
加上这几行
--add-opens=java.base/jdk.internal.org.objectweb.asm=ALL-UNNAMED
--add-opens=java.base/jdk.internal.org.objectweb.asm.tree=ALL-UNNAMED
-javaagent:/aenv/jetbra/ja-netfilter.jar=jetbrains
cmake 子命令乱码 解决修改cmd.exe 永久为utf8
https://blog.csdn.net/h_hxx/article/details/105730043
代理成功会出现下面的几行
============================================================================
ja-netfilter 2022.2.0
A javaagent framework :)
https://github.com/ja-netfilter/ja-netfilter
============================================================================
tar -czvf a.tar.gz ./aa
tar -xzvf a.tar.gz
sudo chown <新用户> <文件路径>
注意文件所属的用户要是 你自己的那个用户
权限必须是
所有者 读取和写入
组 只能读取
其他 只能读取
[Desktop Entry]
Name=clion
Comment=Multi-platform code editor for Linux
Exec=/aenv/clion/bin/clion.sh
Icon=/aenv/clion/bin/clion.png
Type=Application
Categories=GNOME;GTK;Utility;
#Terminal=true
参考 /usr/share/applications
shift+ctrl+alt+/
Clion 插件开发
C:\Program Files\JetBrains\IntelliJ IDEA 2024.3.5\plugins\maven\lib\maven3\conf\settings.xml
官网文档
https://plugins.jetbrains.com/docs/intellij/welcome.html
<mirror>
<id>mirrorId</id>
<mirrorOf>central</mirrorOf>
<name>Human Readable Name for this Mirror.</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
</mirror>
IDEA 插件开发教程
https://www.cnblogs.com/moutory/p/17752679.html
gradle代理 gradle.properties文件添加
# HTTP
systemProp.http.proxyHost=127.0.0.1
systemProp.http.proxyPort=9081
# HTTPS
systemProp.https.proxyHost=127.0.0.1
systemProp.https.proxyPort=9081
# no strict
systemProp.http.proxyStrict=false
systemProp.https.proxyStrict=false