摘要:
git首次上传 第一步:建立git仓库,cd到你的本地项目根目录下,执行git命令 git init 第二步:将项目的所有文件添加到仓库中 git add . 第三步:将add的文件commit到仓库 git commit -m "注释语句" 第四步:去github或gitee上创建自己的Repos 阅读全文
摘要:
nft api汇总etherscanhttps://etherscan.io/myaccountapi可以申请问题:调用nft相关api要收费199美元每月opensea文档地址:https://docs.opensea.io/问题:申请api key中,暂未通过quicknode文档地址:http 阅读全文
摘要:
package easyJava.controller; import com.alibaba.fastjson.JSON; import com.fasterxml.jackson.core.JsonProcessingException; import com.fasterxml.jackson 阅读全文
摘要:
#查看Linux内核版本 uname -r 4.18.0-80.7.2.el7.aarch64 #或者使用 uname -a #下载docker安装脚本 curl -fsSL get.docker.com -o get-docker.sh #执行脚本安装docker,它会检查环境并安装相应版本 sh 阅读全文
摘要:
输入以下命令:update mysql.user set authentication_string=PASSWORD('123'), plugin='mysql_native_password' where user='root'; 输入以下命令:flush privileges; 阅读全文
摘要:
虚拟机设置中点击扩展,并增加磁盘 进入虚拟机后: 1. 找到未使用的磁盘 df -hT,目前是1T的空间 文件系统 类型 容量 已用 可用 已用% 挂载点 devtmpfs devtmpfs 7.8G 0 7.8G 0% /dev tmpfs tmpfs 7.8G 0 7.8G 0% /dev/sh 阅读全文
摘要:
yum装好以后继续运行./ vmware-install.pl 然后出了下面的情况Enter the path to the kernel header files for the 3.10.0-957.el7.x86_64kernel? INPUT: [] default The path “” 阅读全文
摘要:
业务场景描述 有一批定向用户,要求活动只有这部分用户可以看到和参与,其他用户看不到,也无法完成。 量级 100万定向,200万总量 技术方案一: 使用布隆过滤器,提前初始化 每个用户查询活动时,利用布隆过滤器判断是否需要给他展示 技术方案二: 使用redis的set 每个用户查询活动时,利用set. 阅读全文
摘要:
int corePoolSize = 20; int maximumPoolSize = 40; long keepAliveTime = 20; TimeUnit unit = TimeUnit.SECONDS; BlockingQueue<Runnable> workQueue = new Ar 阅读全文
摘要:
package org.springframework.data.domain; import org.springframework.lang.Nullable; /** * Simple interface for entities. * * @param <ID> the type of th 阅读全文