会员
T恤
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
马肯尼煤牙巴骨
博客园
首页
新随笔
联系
管理
订阅
随笔- 232 文章- 0 评论- 43 阅读-
75598
[置顶]
《kubernetes + .net core 》dev ops部分
摘要: 1.kubernetes 预备知识 kubernetes是一个用go语言写的容器编排框架,常与docker搭配使用。 kubernetes是谷歌内部的容器编排框架的开源实现。可以用来方便的管理容器集群。具有很多 优点,要了解这些优点,需要先来了解一下kubernetes中的集群资源。这里指的是kub
阅读全文
posted @ 2020-10-02 23:15 马肯尼煤牙巴骨
阅读(1543)
评论(5)
推荐(10)
2025年4月14日
cmake打印可用变量(find_package后不知道有什么变量的话
摘要: message(1111111111111) # 打印所有与 xxx 有关的变量(粗暴但有效) get_cmake_property(_vars VARIABLES) foreach(_var ${_vars}) if(_var MATCHES ".*CEF.*" OR _var MATCHES "
阅读全文
posted @ 2025-04-14 00:02 马肯尼煤牙巴骨
阅读(1)
评论(0)
推荐(0)
2025年4月12日
mac cef 从编译到分发
摘要: fetch source 稳定的chromium版本 官方自动构建参数 建议用python虚拟环境做一个python 3.9 用来操作整个过程 如果要在其他gui app中使用cef, 不可直接引用git clone后的cef源码, 要么基于cef-project 修改, 要么自己编译, 由于我希望
阅读全文
posted @ 2025-04-12 17:29 马肯尼煤牙巴骨
阅读(1)
评论(0)
推荐(0)
2025年4月11日
gdb调试断点
摘要: #确认编译时符号文件位置 readelf -wi libdv_common.so | grep dv_common_config.cpp list file:line break file:line (gdb) break main if x == 5 (gdb) break main if str
阅读全文
posted @ 2025-04-11 11:54 马肯尼煤牙巴骨
阅读(2)
评论(0)
推荐(0)
2025年3月25日
linux硬盘自动fsck
摘要: sudo tune2fs -l /dev/nvme0n1p2 | grep 'Maximum mount count' 这个命令可以查目前的值,如果是-1 表示永远不会检查 fsck sudo tune2fs -c 1 /dev/nvme0n1p2 这样应该就每次开机都会执行fsck,但是可能会影响
阅读全文
posted @ 2025-03-25 11:07 马肯尼煤牙巴骨
阅读(7)
评论(0)
推荐(0)
2025年2月9日
rsync 同步 qml
摘要: #!/bin/bash SOURCE_DIR="." DEST_DIR="/repos/dv_app_solution" REMOTE_USER="dv" REMOTE_HOST="10.2.1.203" rsync -av -e ssh --include='*/' --include='*.sv
阅读全文
posted @ 2025-02-09 10:47 马肯尼煤牙巴骨
阅读(6)
评论(1)
推荐(0)
2025年1月19日
tightvnc/tigervnc 启动脚本
摘要: #!/bin/bash xhost + xrdb "$HOME/.Xresources" xsetroot -solid grey autocutsel -fork autocutsel -fork -selection CLIPBOARD #x-terminal-emulator -geometr
阅读全文
posted @ 2025-01-19 16:09 马肯尼煤牙巴骨
阅读(22)
评论(0)
推荐(0)
2024年12月6日
ubuntu22 程序图标
摘要: 添加.desktop后 sudo update-desktop-database
阅读全文
posted @ 2024-12-06 17:45 马肯尼煤牙巴骨
阅读(2)
评论(0)
推荐(0)
2024年12月5日
tightvnc 不能粘贴
摘要: xstartup脚本 加 autocutsel -fork autocutsel -fork -selection CLIPBOARD
阅读全文
posted @ 2024-12-05 23:02 马肯尼煤牙巴骨
阅读(7)
评论(0)
推荐(0)
2024年10月2日
find 批量修改文件后辍名
摘要: find . -name "*.txt" -exec sh -c 'mv "$0" "${0%.txt}.predict"' {} ;
阅读全文
posted @ 2024-10-02 16:09 马肯尼煤牙巴骨
阅读(7)
评论(0)
推荐(0)
2024年7月17日
windows上,c++ utf8程序 通过命令行传参给python,pytorch交互的问题
摘要: 1.python返回的字符串在 utf8的c++程序中筹码 设置环境变量PYTHONIOENCODING=utf-8 把python脚本的标准输入输出改为utf8 2.命令行传入的utf8路径, 在python中用于pytorch的模型保存,会保存失败 可以用 with open("utf8_pat
阅读全文
posted @ 2024-07-17 10:00 马肯尼煤牙巴骨
阅读(18)
评论(0)
推荐(0)
下一页
公告
昵称:
马肯尼煤牙巴骨
园龄:
7年6个月
粉丝:
7
关注:
5
<
2025年4月
>
日
一
二
三
四
五
六
30
31
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
1
2
3
4
5
6
7
8
9
10
搜索
常用链接
我的随笔
我的评论
我的参与
最新评论
我的标签
更多链接
随笔分类
[.net core](12)
CPP(8)
EF CORE(2)
entityFramework(9)
k8s(8)
Linux(11)
mac os(1)
QT Quick(6)
vim(8)
Webassembly_Blazor(1)
WPF(26)
调试(2)
算法(2)
随笔档案
2025年4月(3)
2025年3月(1)
2025年2月(1)
2025年1月(1)
2024年12月(2)
2024年10月(1)
2024年7月(3)
2024年6月(3)
2024年5月(4)
2024年4月(3)
2024年3月(3)
2024年2月(6)
2024年1月(2)
2023年12月(3)
2023年11月(5)
2023年10月(1)
2023年9月(2)
2023年8月(11)
2023年7月(9)
2023年6月(8)
2023年5月(3)
2023年4月(3)
2023年3月(6)
2023年2月(3)
2023年1月(10)
2022年12月(6)
2022年11月(7)
2022年10月(3)
2022年8月(4)
2022年7月(4)
2022年6月(2)
2022年5月(2)
2022年4月(1)
2022年3月(2)
2021年8月(1)
2021年7月(1)
2021年5月(2)
2021年4月(2)
2021年1月(2)
2020年12月(1)
2020年10月(1)
2020年9月(2)
2020年8月(1)
2020年7月(1)
2020年6月(2)
2020年5月(4)
2020年4月(2)
2020年3月(1)
2019年12月(3)
2019年11月(5)
2019年10月(3)
2019年9月(13)
2019年8月(14)
2019年7月(7)
2019年6月(1)
2019年5月(1)
2019年4月(4)
2019年3月(12)
2019年2月(3)
2019年1月(3)
2018年11月(1)
2018年10月(1)
2018年9月(1)
2018年7月(1)
2018年5月(3)
2018年4月(3)
2018年1月(1)
2017年12月(1)
更多
阅读排行榜
1. NPOI 替换word模版(3520)
2. error: RPC failed; curl 92 HTTP/2 stream 1 was not closed cleanly before end of the underlying stream(3391)
3. cef chromium 编译(2918)
4. WPF,通过修改dataGrid的cell的style,改变选中行失去焦点时的颜色 4.0可用(2365)
5. 部署kubernetes v1.18的windows 节点(1578)
评论排行榜
1. cef chromium 编译(11)
2. 删除kubernetes节点的正确姿势(6)
3. 《kubernetes + .net core 》dev ops部分(5)
4. 为什么我要学习qt quick(3)
5. 部署kubernetes v1.18的windows 节点(3)
推荐排行榜
1. 《kubernetes + .net core 》dev ops部分(10)
2. 删除kubernetes节点的正确姿势(2)
3. WPF中画蚂蚁线的实现(2)
4. msvc 上设置源码为utf8的编译选项(1)
5. WPF 绑定到静态属性(4.5)(1)
最新评论
1. Re:rsync 同步 qml
结合 ssh -A 使用
--马肯尼煤牙巴骨
2. Re:vcpkg切换到mingw
VCPKG_DEFAULT_HOST_TRIPLET : The term 'VCPKG_DEFAULT_HOST_TRIPLET' is not recognized as the name of ...
--找不到服务器zhn
3. Re:vimscript 正则小记
在使用@<!环视时发现一个问题, 貌似target 是当前字符而不是左边字符
--马肯尼煤牙巴骨
4. Re:ubuntu 16.04 安装多个gcc版本
--马肯尼煤牙巴骨
5. Re:rdlc水晶报表在wpf里的使用
ReportParameter reportParameter = new ReportParameter("EmployeeName", "张三"); bookReportViewer.LocalR...
--铉桦
点击右上角即可分享