v5tech
v5tech
http://www.ruoyi.vip (全能型) https://pig4cloud.com https://bladex.vip 以上两款结合起来更香 https://github.com/elunez/eladmin (基于 Spring Boot 2.1.0 、 Spring Boot Jpa、 JWT、Spring Security、Redis、Vue的前后端分离的后台管理系统) https://github.com/zhangdaiscott/jeecg-boot (前后端分离架构:SpringBoot 2.x,Ant Design&Vue,Mybatis-plus,Shiro,JWT) https://github.com/wenjianzhang/go-admin (基于Gin + Vue + Element UI的前后端分离权限管理系统脚手架)
### 第一种方法 ```bash brew install proxychains-ng ``` 创建配置文件 ~/.proxychains/proxychains.conf ``` # proxychains.conf VER 4.x # # HTTP, SOCKS4a, SOCKS5 tunneling proxifier with DNS. # The option below identifies how the...
# Python常见问题 1、ERROR: Cannot uninstall 'wrapt'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial...
### Vagrantfile ``` Vagrant.configure("2") do |config| config.vm.define "centos7" do |node| node.vm.box = "centos/7" node.vm.box_version = "1905.1" node.vm.box_check_update = false node.vm.provision "shell", inline: "echo This box contains CentOS 7 64-bit." node.vm.hostname...
企业 阿里开源:http://mirrors.aliyun.com/ 搜狐开源镜像站:http://mirrors.sohu.com/ 网易开源镜像站:http://mirrors.163.com/ 教育网 东北大学(IPv4 & IPv6):http://mirror.neu.edu.cn/ 东北大学(IPv6):http://mirror.neu6.edu.cn/ 大连理工大学(IPv4 & IPv6):http://mirror.dlut.edu.cn/ 大连东软信息学院(IPv4):http://mirrors.neusoft.edu.cn/ 哈尔滨工业大学(IPv4 & IPv6):http://run.hit.edu.cn/ 哈尔滨工业大学(IPv6):http://run.hit6.edu.cn/ 清华大学(IPv4 & IPv6):http://mirrors.tuna.tsinghua.edu.cn/ 清华大学(IPv4):http://mirrors.4.tuna.tsinghua.edu.cn/ 清华大学(IPv6):http://mirrors.6.tuna.tsinghua.edu.cn/ 北京理工大学(IPv4):http://mirror.bit.edu.cn/ 北京理工大学(IPv6):http://mirror.bit6.edu.cn/ 北京交通大学(IPv4 & IPv6):http://mirror.bjtu.edu.cn/ 天津大学(IPv4):http://mirror.tju.edu.cn/ 天津大学(IPv6):http://mirror.tju6.edu.cn/ 中国科学技术大学(IPv4...
问题描述 ``` objc[52336]: Class JavaLaunchHelper is implemented in both /Library/Java/JavaVirtualMachines/jdk1.7.0_80.jdk/Contents/Home/bin/java (0x10942a4c0) and /Library/Java/JavaVirtualMachines/jdk1.7.0_80.jdk/Contents/Home/jre/lib/libinstrument.dylib (0x1095a54e0). One of the two will be used. Which one is undefined. ``` 配置Intellij Idea 1、打开idea.properties文件 help->edit...
http://jlord.us/git-it/index.html ### 1.修改第一次提交 ``` bash git rebase -i --root git commit --amend git rebase --continue ``` _注_: 1)`git rebase -i`默认会打开`nano`编辑器,将要修改的`commit id`标记为`edit`,然后按下键盘`CTRL+O`保存、`CTRL+X`退出。 2)`git commit --amend` 修改提交 [参考链接](http://stackoverflow.com/questions/2246208/change-first-commit-of-project-with-git) ### 2.修改最近一次提交 ``` bash...
https://www.fangzhipeng.com/springcloud/2018/08/30/sc-f-all/ http://www.itmuch.com/spring-cloud/spring-cloud-index/ https://cloud.spring.io/spring-cloud-static/Finchley.SR2/single/spring-cloud.html https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/
### 安装`bash_completion` ```bash yum install bash_completion ``` ### 安装docker命令自动补全 ```bash sudo curl -L https://raw.githubusercontent.com/docker/docker/v$(docker version -f "{{.Client.Version}}")/contrib/completion/bash/docker -o /etc/bash_completion.d/docker ``` ### 安装docker-compose命令自动补全 ```bash sudo curl -L https://raw.githubusercontent.com/docker/compose/$(docker-compose version --short)/contrib/completion/bash/docker-compose -o...
数据模型 ``` java import java.io.Serializable; import java.util.Date; /** * author : fengjing * createTime : 2016-07-26 * description : 系统日志 * version : 1.0 */ public class Log implements Serializable{...