拆分:
tar cjf - 1.tar.gz |split -b 18G - 1.tar.gz.
合并:
cat 1.tar.gz.* | tar xj
阿里云
# 替换brew.git
cd "$(brew --repo)"
git remote set-url origin https://mirrors.aliyun.com/homebrew/brew.git
# 替换homebrew-core.git
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"...
项目名称:test
mkdir goproject
cd goproject
mkdir src
mkdir test
进入IDEA, 打开到 test项目,然后配置IDEA的gopath和代理网址:
说明:配置gopath是为了找到bee命令,配置代理网址:http...
package main
import (
"fmt"
"github.com/go-redis/redis"
"time"
)
// 定义redis链接池
var RedisTest *redis.Client
// 初始化redis链接池
func init() {
RedisTest = redis.NewClien...
pom.xml 添加依赖
<!--mysql-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa...
配置MySQL链接,进入 view-tool windows-database
点击 【+】进行配置
关联jpa和Databse,进入 view-tool windows-persistence
配置完成之后,错误即可消失。
添加依赖
<!--devtools热部署-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</ar...
创建配置文件:site.properties
site.name = gopher
site.url = https://ijackey.com
创建获取配置参数的实体类:SiteConfig.java
package com.example.demo.config;
import org.sp...
点击 File-new-project
选择【Spring Initializr】,注意右边的选项,Default: https://start.spring.io/,这个站点经常会访问不到,如果访问不到,需要更改成:Custom,然后在框内输入:https://start....
mac下编译Linux, Windows平台的64位可执行程序:
$ CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build test.go
$ CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build test.go
要求
比较两个版本号 version1 和 version2。
如果 version1 > version2 返回 1,如果 version1 < version2 返回 -1, 除此之外返回 0。
你可以假设版本字符串非空,并且只包含数字和 . 字符。
. ...
要求
编写一个函数来查找字符串数组中的最长公共前缀。
如果不存在公共前缀,返回空字符串 ""。
示例 1:
输入: ["flower","flow","flight"]
输出: "fl"
示例 2:
输入: ["dog","racecar","car"]
输出:...
一键解决:自动脚本(全部国内地址)(在Mac os终端中复制粘贴回车下面这句话)
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"
参考链接:https://zhuanlan.zhihu.co...
什么是策略模式?
不同的算法按照统一的标准封装,客户端根据不同的场景,决策使用何种算法。
优势
典型的高内聚:算法和算法之间完全独立、互不干扰
典型的松耦合:客户端依赖的是接口的抽象方法
...