Hunter的大杂烩 技术学习笔记

2021-09-03

k8s简单脚本

Filed under: 技术话题 — hunter @ 7:37 pm

把常用命令用脚本简化

 
[code]
#!/bin/sh

if [ $# -lt 2 ]; then
echo "USAGE: $0 <logs|pod|search> <podname>"
exit 0
fi

if [ $1 = "search" ];then
kubectl get -n <namespace> -o wide pods|grep $2
elif [ $1 = "pod" ];then
kubectl describe pod -n <namespace> $2
elif [ $1 = "logs" ];then
kubectl logs -n <namespace> -f $2
elif [ $1 = "cmd" ];then
kubectl exec -it -n <namespace> $2 — /bin/bash
elif [ $1 = "restart" ];then
#kubectl get pod $2 -n <namespace> -o yaml |kubectl replace –force -f –
kubectl rollout restart deployment -n <namespace> $2
fi

[/code]

2021-08-21

Xshell 6 提示 “要继续使用此程序,您必须应用最新的更新或使用新版本”

Filed under: 技术话题 — hunter @ 10:49 pm

from https://blog.csdn.net/lookingatsky/article/details/103760372

使用二进制编辑器修改nslicense.dll文件

步骤3:搜索“7F 0C 81 F9 80 33 E1 01 0F 86 81”
步骤4:修改“86”为“83”
步骤5:保存文件

2020-09-15

dos批处理脚本修改文件名

Filed under: 技术话题 — hunter @ 1:48 am

参考:

https://blog.csdn.net/A_BlackMoon/article/details/79998515

https://blog.csdn.net/txl199106/article/details/79266785

https://zhidao.baidu.com/question/233580687.html

批处理知识:

1. 使用set local enabledelayedexpansion之后,局部变量要使用 !var!方式引用

2. %%~i 表示完整路径的文件名, %%~nxi表示不带路径的文件名

3. 使用 set nfn=%nfn:你要排除的字符串=% 来替换掉想要去除的字符或字符串

完整批处理脚本如下:

(more…)

批量正常化MP4脚本

Filed under: 技术话题 — hunter @ 1:40 am

参考:http://www.voidcn.com/article/p-qjobbzbr-byt.html

某些嵌入式系统播放器可能不支持MP4格式下不同的major_brand(参考:https://www.it1352.com/751868.html),这时可以用:

-vpre normal

参数转化一下MP4,新版ffmpeg将-vpre参数更改为 -preset medium ,批量转化脚本如下:

(more…)

2020-06-17

Windows 10 下运行Android模拟器蓝屏解决方法

Filed under: 技术话题 — hunter @ 1:19 am

本机一开始装有Hyper-V,实在不想禁用,后来参考文章(https://blog.csdn.net/qq_21187515/article/details/103056299),说是新版本Android Studio可以使用WHPX,微软文献也说可行(https://docs.microsoft.com/en-us/xamarin/android/get-started/installation/android-emulator/hardware-acceleration?pivots=windows),按上述建议,勾选Hyper-V and Windows Hypervisor Platform之后,用 emulator-check.exe accel 检查,提示可以加速。

但实际运行模拟器时,时不时系统就蓝屏,错误码是 HYPERVISION ERROR,实在让人崩溃。

最后还是禁用Hyper-V了事,安装流程:

(more…)

« Newer PostsOlder Posts »

Powered by WordPress