Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Quick StartCreate a new post1$ hexo new "My New Post" More info: Writing Run server1$ hexo server More info: Server Generate static files1$ hexo generate More info: Generating Deploy to remote sites1$ hexo deploy More info: Deployment
sdkman 安装与使用
SDKMan 安装与使用一、介绍 SDKMan是多SDK下管理的工具,可以通过命令方便环境中的SDK快速切换 二、安装步骤Windows安装安装Linux环境官方提供3中安装方式,可以任选一种 安装Windows Linux Subsystem (WLS)和其他一些工具 安装Cygwin以及一些工具 安装Git Bash for Windows,包含MinGW(Minimalist GNU for Windows),以及一些工具。 安装Git Bash 正常安装git的流程 下载git Bash 点击安装 右击出现Git Bash的图标命令行工具 安装命令 要sdkman能正常安装,需要安装一些其他工具,看信息提示主要有curl,unzip,zip和sed,由于Git Bash自带的MinGW是简单版本的,已经有部分软件已经安装上了,如果缺少会报错 访问Gnuwin网站下载缺少的命令 选择对应的命令的最高版本 下载${}-bin.zip文件 解压文件,将bin目录中的文件放入Git安装目录mingw的bin中(例如:D:\Git\mingw64\bin) 下载及安装 ...
sprint boot 3.0 Native Image
GraalVM 安装 Install GraalVM and Native Image 进入官网https://www.graalvm.org/downloads/下载 解压文件,并将内容设置为JAVA_HOME 安装Native Image 1gu install native-image 检查安装结果 1gu list Install Visual Studio Build Tools or Windows 10 SDK Download the Visual Studio Build Tools (C development environment) from visualstudio.microsoft.com. Start the Visual Studio Build Tools installation by clicking on the .exe file, and then press Continue: Check the Desktop development with C++ box in the main window. Also, on ...
工具网站
https://repository.apache.org/content/repositories/releases/ 一些网站 https://java-design-patterns.com/patterns/ https://search.maven.org/ 仓库服务https://developer.aliyun.com/mvn/guide 代码美化https://carbon.now.sh/字符画https://asciiflow.com/#/学习appStack Exchange 插件安装插件扩展https://www.extfans.com/Tampermonkey 油猴 英语词源学https://www.etymonline.com/ js语法https://developer.mozilla.org/zh-CN/ 培养孩子https://www.starfall.com/h/ 一些类库https://www.21doc.net/java/awesomejava shell 学习https://explainshell.com/https://www.shell.h ...
powershell 禁止运行脚本
1.使用管理员运行windows powershell 2.执行set-executionpolicy remotesigned 命令 3.输入Y ![image-20221121203940801](../img/windows powershell/image-20221121203940801.png) 源自CSDN https://blog.csdn.net/Ximerr/article/details/123498701
AI神经网络介绍及应用
生成对抗网络(Generative Adversarial Network, GAN)原理:生成对抗网络核心在于“生成”与“对抗”,他们在网络中是生成器与判断器,通过他们两个之间互相较量,来生成新的结果。 生成器:通过收集现实的一些元素与素材,生成图片或音频,达到拥有生成(伪造)的能力 判断器:通过学习真实世界中的元素与素材,达到拥有鉴别真伪的能力 整个网络的过程就是生成器与判断器的较量过程,生成器生成的结果发送给判断器,让判断器判断真伪,如果不通过则生成器会再次学习,重新生成新的结果,发送给判断器。从此往复循环,达到生成器生成的结果,判断器辨别为真,并且生成器再也无法通过判断器的反馈而提升生成能力的时候,就是达到了平衡。 经典网络:cyclegen 作用: 生成图片 人脸替换 变声 视频替换 代表英剧:真相捕捉
PyCharm 插件
翻译类Translation 翻译软件,点击就可以翻译 效率类activate-power-mode 效果强化插件,减少审美疲劳 Rainbow Brackets 代码变色,括号层级变色 Json Parser json 校验和格式化 Markdown Image Support Markdown编辑器一键上传图片支持,适用于Jetbrains系列的常见产品。特性:多种存储支持,如本地/七牛/阿里云OSS/MinIO等。自定义文件名命名策略,并提供多种预设方案。提供图片压缩功能,按照设置的压缩率压缩图片。直接从粘贴图片到编辑器,自动上传图片并转换为Markdown标签。直接复制一个或者多个图片文件到编辑器,自动上传图片并转换为Markdown标签。通过Alt+Enter快捷键,智能删除图片,删除Markdown标记的同时,移除对应存储中的源文件。 显示类Background Image Plus 替换背景图片 Material Theme UI 主题插件,更换更多的主题 统计类Statistic 统计代码量
Anaconda更换源
Anaconda更换源换源清华源1234567conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/menpo/conda config --set show_channel_urls yes 中科大 ...
GitHub 疑难杂症
OpenSSL错误:fatal: unable to access ‘https://github.com/…’: OpenSSL SSL_read: Connection was reset, errno 10054 原因:产生原因:一般是这是因为服务器的SSL证书没有经过第三方机构的签署,所以才报错 解决方法: 1git config --global http.sslVerify false GitHub加速错误:Failed to connect to github.com port 443: Timed out 根本原因 GitHub的CDN(Content Delivery Network,即内容分发网络)域名遭到DNS污染,无法连接使用GitHub的加速分发服务器,所以国内访问速度较慢。 解决方案:修改hosts文件 修改本地host文件,增加配置内容,绕过域名解析,达到加速的目的。 获取方式1: 访问链接:https://raw.hellogithub.com/hosts(ps:这链接定时更新),获取对应的host配置。 如果 ...
MySQL 运维
MySQL 运维死锁问题解决查看所有线程show processlist; 当前运行的所有事务SELECT * FROM information_schema.INNODB_TRX; 当前运行的所有锁SELECT * FROM information_schema.INNODB_LOCKs; 使用Kill 命令杀死线程