会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
极简世界
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
下一页
2022年7月12日
ffmpeg 初探【基本概念】
摘要: ffmpeg 中的工具集: ffmpeg :超快音视频编码器 ffplay :简单媒体播放器 ffprobe:简单多媒体流分析器 视频知识相关: 媒体:我们能看到的,感知到的,能用来存放信息和传播信息的都可以叫做媒体。 流媒体:流媒体指的是通过”网络”传输的”媒体“,它还是媒体,只不过是在网络中“流
阅读全文
posted @ 2022-07-12 17:37 XuTingYin
阅读(242)
评论(0)
推荐(0)
2021年11月3日
Oracle常见错误及其解决方案
摘要: 【ORA-01033: ORACLE正在初始化或关闭】https://www.jianshu.com/p/57f87ce77061
阅读全文
posted @ 2021-11-03 15:02 XuTingYin
阅读(73)
评论(0)
推荐(0)
2021年9月23日
su root 输入正确密码,切换不到root用户
摘要: 场景:在 su root 切换账户时,确保输入的root账户密码是正确的,但结果又回到当前账户 原因 : cat /root/.bashrc 里面显示exit【所以在切换root时,实际是切换过去了的,因为/root/.bashrc的环境变量里写了个exit,又退出了】,怎么写入的目前暂未知。 解决
阅读全文
posted @ 2021-09-23 14:47 XuTingYin
阅读(894)
评论(0)
推荐(0)
2021年9月7日
Linux常用命令
摘要: # 文本全局替换 全局替换命令为::%s/源字符串/目的字符串/g 例如: ```shell :%s/192.168.12.15/192.168.1.63/g ``` # 修改文件夹归属用户 ```shell chown -R tingyin ./git ``` # 修改文件夹归属组 ```shel
阅读全文
posted @ 2021-09-07 10:13 XuTingYin
阅读(49)
评论(0)
推荐(0)
2021年9月2日
在线工具
摘要: 图片压缩工具: https://tinypng.com/
阅读全文
posted @ 2021-09-02 09:51 XuTingYin
阅读(42)
评论(0)
推荐(0)
2021年8月12日
String字符串拼接
摘要: String字符串拼接的各种方式
阅读全文
posted @ 2021-08-12 09:32 XuTingYin
阅读(473)
评论(0)
推荐(0)
2021年8月11日
SpringBoot 启动报错 Failed to start component [StandardEngine[Catalina].StandardHost[localhost].StandardContex
摘要: SpringBoot 项目启动是报如下错误: Caused by: org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Tomcat].StandardHost[localhost]] a
阅读全文
posted @ 2021-08-11 10:09 XuTingYin
阅读(764)
评论(0)
推荐(0)
2021年8月6日
nginx常用相关
摘要: 运维使用相关 ## 校验配置文件 nginx -t # 需要指定位置可追加 -c /software/nginx/conf/nginx.conf nginx -t -c /software/nginx/conf/nginx.conf ## 重启 nginx -s reload ## 停止 ps -e
阅读全文
posted @ 2021-08-06 17:05 XuTingYin
阅读(62)
评论(0)
推荐(0)
2021年8月4日
MYSQL相关
摘要: 相同表字段更新 UPDATE hwy_km_stake_coordinate a JOIN hwy_km_stake_coordinate_copy b ON a.h_way_no = b.h_way_no AND a.line_no = b.line_no AND a.r_sect_direct
阅读全文
posted @ 2021-08-04 20:42 XuTingYin
阅读(33)
评论(0)
推荐(0)
2021年6月22日
Java8 新特性
摘要: #Optional 相关操作 Stream 相关操作 1、List 转Map<Integer,String> Map<Integer,String> roadMap = dtoList.stream().collect(Collectors.toMap(MaintPlanBaseDTO::getId
阅读全文
posted @ 2021-06-22 11:07 XuTingYin
阅读(76)
评论(0)
推荐(0)
上一页
1
2
3
4
5
下一页
公告