摘要:
https://blog.csdn.net/qq_40861800/article/details/125060000 Ubuntu上硬盘挂载及卸载
阅读全文
posted @ 2022-10-14 08:17
shiningrise
阅读(40)
推荐(0)
摘要:
问题3:跳转 IdentityServer Admin 时,nginx报502错误 问题3:跳转 IdentityServer Admin 时,nginx报502错误上边一切就绪,但是在跳转到IdentityServer Admin时,出现了nginx 502错误,在查看了nginx容器的日志后,找
阅读全文
posted @ 2022-08-17 06:14
shiningrise
阅读(73)
推荐(0)
摘要:
builder.Services.AddIdentityServer() //配置存储客户端、资源等到数据库中。 .AddConfigurationStore(options => { options.ConfigureDbContext = dbBuilder => dbBuilder.UseMy
阅读全文
posted @ 2022-07-24 11:07
shiningrise
阅读(228)
推荐(0)
摘要:
共搜集整理26个网站。程序员客栈,CODING码市,开源众包,猪八戒,英选,快码众包,码易众包平台,开发邦,人人开发,Sxsoft,猿急送,实现网传送门,智城外包网,Upwork,Freelancer,Dribbble,Stackoverflow,99designs,Remoteok,Toptal,
阅读全文
posted @ 2022-07-18 18:48
shiningrise
阅读(2373)
推荐(0)
摘要:
https://www.cnblogs.com/coldairarrow/p/11870993.html
阅读全文
posted @ 2022-07-11 21:07
shiningrise
阅读(174)
推荐(0)
摘要:
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Drawing.Imaging; us
阅读全文
posted @ 2022-07-08 17:20
shiningrise
阅读(1534)
推荐(0)
摘要:
# python print中f格式化输出 name = 'Steven'age = 18 # 格式化输出方法一:print('我是{},我今年{}岁。'.format(name, age)) # 格式化输出方法二:print(f'我是{name},我今年{age}岁。') # 格式化输出方法三:p
阅读全文
posted @ 2022-04-25 14:37
shiningrise
阅读(1620)
推荐(0)
摘要:
#include <iostream> // std::cout #include <iterator> // std::advance #include <forward_list> using namespace std; int main() { //创建一个 forward_list 容器
阅读全文
posted @ 2022-04-13 08:07
shiningrise
阅读(132)
推荐(0)
摘要:
Official images for .NET and ASP.NET Core https://dotnet.microsoft.com/en-us/download https://blog.csdn.net/sugar_wxx/article/details/122240796 https:
阅读全文
posted @ 2022-04-12 17:04
shiningrise
阅读(514)
推荐(0)
摘要:
专业版:TD244-P4NB7-YQ6XK-Y8MMM-YWV2J企业版:VHF9H-NXBBB-638P6-6JHCY-88JWH
阅读全文
posted @ 2022-04-09 21:09
shiningrise
阅读(805)
推荐(0)
摘要:
https://zhuanlan.zhihu.com/p/125604620 cnpm的简介与使用 1.国内使用npm存在的问题 安装npm后,每次我们安装包时,我们的电脑都要和npm服务器进行对话,去npm仓库获取包。 npm默认的仓库地址为:http://registry.npmjs.org 查
阅读全文
posted @ 2022-04-09 18:34
shiningrise
阅读(1552)
推荐(0)
摘要:
#include<bits/stdc++.h> using namespace std; const int maxn=100000+10; const int INF=2*int(1e9)+10; #define LL long long int cmd(int a,int b){ return
阅读全文
posted @ 2022-03-29 11:14
shiningrise
阅读(61)
推荐(0)
摘要:
https://registry.npmmirror.com/binary.html?path=node/
阅读全文
posted @ 2022-03-27 14:15
shiningrise
阅读(671)
推荐(0)
摘要:
https://hub.docker.com/_/microsoft-dotnet?tab=description https://hub.docker.com/_/microsoft-dotnet-sdk/ https://hub.docker.com/_/microsoft-dotnet-asp
阅读全文
posted @ 2022-03-25 21:06
shiningrise
阅读(58)
推荐(0)
摘要:
https://leetcode-cn.com/problems/interval-list-intersections/ class Solution { public: vector<vector<int>> intervalIntersection(vector<vector<int>>& f
阅读全文
posted @ 2022-03-25 19:41
shiningrise
阅读(32)
推荐(0)
摘要:
docker run -itd --name node10 -v D:\GitHome\wxy\SocialClass\SocialClassWeb:/data node:10.0.0-alpine
阅读全文
posted @ 2022-03-25 09:14
shiningrise
阅读(45)
推荐(0)
摘要:
https://leetcode-cn.com/problems/k-th-smallest-in-lexicographical-order/ #include<bits/stdc++.h> using namespace std; int getSteps(int curr, long n) {
阅读全文
posted @ 2022-03-24 21:45
shiningrise
阅读(42)
推荐(0)
摘要:
#include<bits/stdc++.h> using namespace std; int main() { int x; x=8; cout<<bitset<sizeof(x)*8>(x)<<endl;//int占4字节,一个字节8位,最终输出的是32个0或1 cout<<bitset<si
阅读全文
posted @ 2022-03-21 16:46
shiningrise
阅读(71)
推荐(0)
摘要:
https://iai.sh.cn/problem/608 #include<stdio.h> #include<iostream> #include<cmath> #include<vector> #include<map> #include<algorithm> using namespace
阅读全文
posted @ 2022-03-17 17:37
shiningrise
阅读(36)
推荐(0)
摘要:
class Solution { public: vector<vector<int>> updateMatrix(vector<vector<int>>& mat) { int dx[4]={0,0,1,-1}; int dy[4]={1,-1,0,0}; int n=mat.size(); in
阅读全文
posted @ 2022-03-17 16:39
shiningrise
阅读(884)
推荐(0)
摘要:
https://ziyuan.baidu.com/linksubmit/url
阅读全文
posted @ 2021-12-20 13:06
shiningrise
阅读(208)
推荐(0)
摘要:
https://halo.run/
阅读全文
posted @ 2021-12-20 11:37
shiningrise
阅读(56)
推荐(0)
摘要:
python项目中必须包含一个 requirements.txt 文件,用于记录所有依赖包及其精确的版本号。以便新环境部署。 requirements.txt可以通过pip命令自动生成和安装 生成requirements.txt文件 pip freeze > requirements.txt 安装r
阅读全文
posted @ 2021-12-18 17:14
shiningrise
阅读(516)
推荐(0)
摘要:
安装Node.js Ubuntu 18.04在其默认存储库中包含一个版本的Node.js,可用于在多个系统间提供一致的体验。 在撰写本文时,存储库中的版本是8.10.0。 这不会是最新的版本,但它应该稳定且足以快速实验该语言。 要获得此版本,您可以使用apt软件包管理器。 键入以下内容刷新本地包索引
阅读全文
posted @ 2021-12-15 17:16
shiningrise
阅读(1788)
推荐(0)
摘要:
使用@ConfigurationProperties和@Component注解到bean定义类上没有注解@Component,导致无法在ioc时读取 读取到静态属性中springboot无法通过给静态变量赋值,在对应字段的set方法去掉static即可。 未开启支持需要在pom中开启对注解的支持 <
阅读全文
posted @ 2021-12-09 10:12
shiningrise
阅读(839)
推荐(0)
摘要:
项目中需要将application.yml放到jar包外面,这样便于之后的修改,解决方法如下: 将jar包上传到服务器上时,将application.yml也上传,在jar包外执行命令 java -jar aaa.jar(jar包名) --spring.config.location=/home/a
阅读全文
posted @ 2021-12-08 19:10
shiningrise
阅读(1066)
推荐(0)
摘要:
java -jar app.jar --spring.profiles.active=dev https://www.leftso.com/blog/111.html
阅读全文
posted @ 2021-12-08 18:59
shiningrise
阅读(91)
推荐(0)
摘要:
windows 命令行 jps查看java进程没有反应,如何用jps查看java进程 问题描述:windows 命令行 jps查看java进程没有反应,如何用jps查看java进程?解决方案:在 Windows系统上,每个 java 进程启动之后都在 %TMP%/hsperfdata_user (
阅读全文
posted @ 2021-12-06 15:29
shiningrise
阅读(1222)
推荐(0)
摘要:
查看Ubuntu版本cat /etc/issue1安装sudo apt install nodejs -ysudo apt install npm -y12查看当前安装版本sudo node -v sudo npm -v123修改npm源,提高下载速度sudo npm config set regi
阅读全文
posted @ 2021-10-12 10:02
shiningrise
阅读(291)
推荐(0)
摘要:
https://www.cnblogs.com/hellojesson/p/10613610.html docker打包,针对的是镜像,而不是运行中的容器。 查看当前系统的镜像文件: docker images 首先,将当前运行中的,已经自定义修改之后的容器保存为新的镜像。 docker commi
阅读全文
posted @ 2021-10-11 16:58
shiningrise
阅读(1358)
推荐(0)
摘要:
Failed to execute goal com.spotify:docker-maven-plugin:0.4.13:build (default-cli) 勾上即可
阅读全文
posted @ 2021-10-11 13:28
shiningrise
阅读(1623)
推荐(0)
摘要:
https://www.microsoft.com/zh-cn/software-download/windows10
阅读全文
posted @ 2021-10-11 10:44
shiningrise
阅读(108)
推荐(0)
摘要:
开启CPU虚拟化导致蓝屏系统为Windows10,关闭虚拟化则一切正常 1.使用管理员权限启动命令提示符2.运行bcdedit并检查状态hypervisorlaunchtype3.如果hypervisorlaunchtype设置为auto,则运行bcdedit /set hypervisorlaun
阅读全文
posted @ 2021-10-11 10:43
shiningrise
阅读(1370)
推荐(0)
摘要:
java启用swagger后访问地址为 /swagger-ui.html
阅读全文
posted @ 2021-10-09 11:35
shiningrise
阅读(407)
推荐(0)
摘要:
git log --graph --pretty=format:'%C(yellow)%h%Creset -%C(cyan)%d%Creset %s %Cgreen(%an, %cd)' --abbrev-commit Git log修改时间格式 git config --global log.da
阅读全文
posted @ 2021-07-05 13:50
shiningrise
阅读(371)
推荐(0)
摘要:
https://blog.csdn.net/weixin_30258027/article/details/96643686 { "date": "2018-10-30", "superServiceImplClassPackage": "com.baomidou.mybatisplus.exten
阅读全文
posted @ 2021-06-21 14:46
shiningrise
阅读(250)
推荐(0)
posted @ 2021-05-25 18:45
shiningrise
阅读(121)
推荐(0)
摘要:
一、背景团队其他成员修改了某文件并已提交入库,你在pull之前修改了本地该文件,等你修改完代码再pull时,这时会报错如下错误: error: Your local changes to the following files would be overwritten by merge 二、解决方案
阅读全文
posted @ 2021-05-23 14:33
shiningrise
阅读(2509)
推荐(0)
摘要:
tracert 10.0.19.28
阅读全文
posted @ 2021-05-20 09:10
shiningrise
阅读(108)
推荐(0)
摘要:
https://blog.csdn.net/xjf106/article/details/89361311 https://www.cnblogs.com/yulj/p/8494465.html // 响应拦截器 service.interceptors.response.use( /** * 通过
阅读全文
posted @ 2021-05-18 22:34
shiningrise
阅读(504)
推荐(0)