上一页 1 2 3 4 5 6 7 8 9 ··· 29 下一页
摘要: https://www.cnblogs.com/coldairarrow/p/11870993.html 阅读全文
posted @ 2022-07-11 21:07 shiningrise 阅读(158) 评论(0) 推荐(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 阅读(1512) 评论(0) 推荐(0) 编辑
摘要: # python print中f格式化输出 name = 'Steven'age = 18 # 格式化输出方法一:print('我是{},我今年{}岁。'.format(name, age)) # 格式化输出方法二:print(f'我是{name},我今年{age}岁。') # 格式化输出方法三:p 阅读全文
posted @ 2022-04-25 14:37 shiningrise 阅读(1587) 评论(0) 推荐(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 阅读(92) 评论(0) 推荐(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 阅读(270) 评论(0) 推荐(0) 编辑
摘要: 专业版:TD244-P4NB7-YQ6XK-Y8MMM-YWV2J企业版:VHF9H-NXBBB-638P6-6JHCY-88JWH 阅读全文
posted @ 2022-04-09 21:09 shiningrise 阅读(734) 评论(0) 推荐(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 阅读(1398) 评论(0) 推荐(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 阅读(49) 评论(0) 推荐(0) 编辑
摘要: https://registry.npmmirror.com/binary.html?path=node/ 阅读全文
posted @ 2022-03-27 14:15 shiningrise 阅读(649) 评论(0) 推荐(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 阅读(43) 评论(0) 推荐(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 阅读(20) 评论(0) 推荐(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 阅读(32) 评论(0) 推荐(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 阅读(23) 评论(0) 推荐(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 阅读(58) 评论(0) 推荐(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 阅读(27) 评论(0) 推荐(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 阅读(859) 评论(0) 推荐(0) 编辑
摘要: https://ziyuan.baidu.com/linksubmit/url 阅读全文
posted @ 2021-12-20 13:06 shiningrise 阅读(163) 评论(0) 推荐(0) 编辑
摘要: https://halo.run/ 阅读全文
posted @ 2021-12-20 11:37 shiningrise 阅读(44) 评论(0) 推荐(0) 编辑
摘要: python项目中必须包含一个 requirements.txt 文件,用于记录所有依赖包及其精确的版本号。以便新环境部署。 requirements.txt可以通过pip命令自动生成和安装 生成requirements.txt文件 pip freeze > requirements.txt 安装r 阅读全文
posted @ 2021-12-18 17:14 shiningrise 阅读(478) 评论(0) 推荐(0) 编辑
摘要: 安装Node.js Ubuntu 18.04在其默认存储库中包含一个版本的Node.js,可用于在多个系统间提供一致的体验。 在撰写本文时,存储库中的版本是8.10.0。 这不会是最新的版本,但它应该稳定且足以快速实验该语言。 要获得此版本,您可以使用apt软件包管理器。 键入以下内容刷新本地包索引 阅读全文
posted @ 2021-12-15 17:16 shiningrise 阅读(1648) 评论(0) 推荐(0) 编辑
摘要: 使用@ConfigurationProperties和@Component注解到bean定义类上没有注解@Component,导致无法在ioc时读取 读取到静态属性中springboot无法通过给静态变量赋值,在对应字段的set方法去掉static即可。 未开启支持需要在pom中开启对注解的支持 < 阅读全文
posted @ 2021-12-09 10:12 shiningrise 阅读(788) 评论(0) 推荐(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 阅读(1004) 评论(0) 推荐(0) 编辑
摘要: java -jar app.jar --spring.profiles.active=dev https://www.leftso.com/blog/111.html 阅读全文
posted @ 2021-12-08 18:59 shiningrise 阅读(76) 评论(0) 推荐(0) 编辑
摘要: windows 命令行 jps查看java进程没有反应,如何用jps查看java进程 问题描述:windows 命令行 jps查看java进程没有反应,如何用jps查看java进程?解决方案:在 Windows系统上,每个 java 进程启动之后都在 %TMP%/hsperfdata_user ( 阅读全文
posted @ 2021-12-06 15:29 shiningrise 阅读(1155) 评论(0) 推荐(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 阅读(271) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/hellojesson/p/10613610.html docker打包,针对的是镜像,而不是运行中的容器。 查看当前系统的镜像文件: docker images 首先,将当前运行中的,已经自定义修改之后的容器保存为新的镜像。 docker commi 阅读全文
posted @ 2021-10-11 16:58 shiningrise 阅读(1219) 评论(0) 推荐(0) 编辑
摘要: Failed to execute goal com.spotify:docker-maven-plugin:0.4.13:build (default-cli) 勾上即可 阅读全文
posted @ 2021-10-11 13:28 shiningrise 阅读(1593) 评论(0) 推荐(0) 编辑
摘要: https://www.microsoft.com/zh-cn/software-download/windows10 阅读全文
posted @ 2021-10-11 10:44 shiningrise 阅读(81) 评论(0) 推荐(0) 编辑
摘要: 开启CPU虚拟化导致蓝屏系统为Windows10,关闭虚拟化则一切正常 1.使用管理员权限启动命令提示符2.运行bcdedit并检查状态hypervisorlaunchtype3.如果hypervisorlaunchtype设置为auto,则运行bcdedit /set hypervisorlaun 阅读全文
posted @ 2021-10-11 10:43 shiningrise 阅读(1201) 评论(0) 推荐(0) 编辑
摘要: java启用swagger后访问地址为 /swagger-ui.html 阅读全文
posted @ 2021-10-09 11:35 shiningrise 阅读(396) 评论(0) 推荐(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 阅读(331) 评论(0) 推荐(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 阅读(240) 评论(0) 推荐(0) 编辑
摘要: sc delete 加上服务名 阅读全文
posted @ 2021-05-25 18:45 shiningrise 阅读(95) 评论(0) 推荐(0) 编辑
摘要: 一、背景团队其他成员修改了某文件并已提交入库,你在pull之前修改了本地该文件,等你修改完代码再pull时,这时会报错如下错误: error: Your local changes to the following files would be overwritten by merge 二、解决方案 阅读全文
posted @ 2021-05-23 14:33 shiningrise 阅读(2360) 评论(0) 推荐(0) 编辑
摘要: tracert 10.0.19.28 阅读全文
posted @ 2021-05-20 09:10 shiningrise 阅读(101) 评论(0) 推荐(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 阅读(467) 评论(0) 推荐(0) 编辑
摘要: 1. 删除某软件,及其安装时自动安装的所有包 sudo apt-get autoremove docker docker-ce docker-engine docker.io containerd runc 2. 删除docker其他没有没有卸载 dpkg -l | grep docker dpkg 阅读全文
posted @ 2021-05-17 08:57 shiningrise 阅读(1059) 评论(0) 推荐(0) 编辑
摘要: //获取所有参数值input()//获取get参数input(‘get.’)//获取post参数input(‘post.’)//获取sessioninput(‘session.’)//获取cookieinput(‘cookie.’)//判断是否存在,如果get.id存在,返回trueinput(‘? 阅读全文
posted @ 2021-05-17 08:36 shiningrise 阅读(1657) 评论(0) 推荐(0) 编辑
摘要: composer require topthink/think-multi-app php think build demo 阅读全文
posted @ 2021-05-15 09:05 shiningrise 阅读(74) 评论(0) 推荐(0) 编辑
摘要: 3.3版本的编排 version: '3.4' services: proxy: image: jwilder/nginx-proxy container_name: nginx-proxy restart: always ports: - 80:80 - 443:443 labels: com.g 阅读全文
posted @ 2021-05-10 01:00 shiningrise 阅读(60) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 29 下一页
// 侧边栏目录 // https://blog-static.cnblogs.com/files/douzujun/marvin.nav.my1502.css