首页
关于
统计
留言
Search
1
IPTV直播源抓取
3,827 阅读
2
解除网页限制(禁止右键,复制,f12,文字选择)
1,866 阅读
3
armbian命令行设置中文
1,286 阅读
4
linux使用cups实现usb打印机远程打印
766 阅读
5
linux一键安装npc脚本
713 阅读
经验分享
程序代码
生活随笔
实用软件
其他
搞机
登录
Search
星扬
累计撰写
52
篇文章
累计收到
14
条评论
首页
栏目
经验分享
程序代码
生活随笔
实用软件
其他
搞机
页面
关于
统计
留言
搜索到
52
篇与
的结果
2023-12-20
win11恢复win10右键菜单
新建文本文件改后缀名为.batWin11-修改为传统模式右键菜单.bat@echo off reg add "HKEY_CURRENT_USER\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /ve /f taskkill /f /im explorer.exe start explorer.exeWin11-恢复默认模式右键菜单.bat@echo off reg delete "HKEY_CURRENT_USER\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f taskkill /f /im explorer.exe start explorer.exe
2023年12月20日
146 阅读
0 评论
5 点赞
2023-10-07
海康监控接入HA实现云服务效果
一、添加监控在HA配置中选择设备与服务,添加onvif集成,关闭自动搜索,提交,输入监控ip,端口用户名密码等信息,接着你应该就可以在Camera里看到监控了,如果无法查看可能监控不支持onvif,可以使用rtsp方式连接二、接入传感器大部分监控都有,这里以海康为例,打开监控后台,在配置中选择普通事件,启用移动侦测,绘制区域,记得勾选联动上传中心到监控下走动,Home Assistant 日志里出现检测到有人移动即为配置成功三、自动化录像我这里的想法是检测到人移动即开始录制30秒,可以直接在HA的conf里面的automations.yaml文件里加自动化配置- id: motion_video_capture alias: Capture Motion Video trigger: - platform: state entity_id: binary_sensor.motion_sensor # 替换为运动传感器实体ID to: 'on' action: - service: camera.record data_template: entity_id: camera.camera_name # 替换为摄像头实体ID filename: "/config/www/motion_video_{{ now().strftime('%Y%m%d%H%M%S') }}.mp4" # 使用时间戳作为文件名 duration: 30 # 录制的时长(秒)
2023年10月07日
274 阅读
1 评论
1 点赞
2023-07-04
jdck获取
import java.util.Scanner; public class jdck { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); System.out.print("请输入Cookie字符串:"); String cookie = scanner.nextLine(); String ptKey = extractValueFromCookie(cookie, "pt_key"); String ptPin = extractValueFromCookie(cookie, "pt_pin"); System.out.println("pt_key=" + ptKey+";"+"pt_pin="+ptPin+";"); } private static String extractValueFromCookie(String cookie, String key) { String value = null; String keyWithEqualSign = key + "="; int startIndex = cookie.indexOf(keyWithEqualSign); if (startIndex != -1) { startIndex += keyWithEqualSign.length(); int endIndex = cookie.indexOf(";", startIndex); if (endIndex == -1) { endIndex = cookie.length(); } value = cookie.substring(startIndex, endIndex).trim(); } return value; } }
2023年07月04日
157 阅读
0 评论
2 点赞
2023-02-17
mysql忘记root密码解决方法
修改mysql配置文件,my.ini在my.ini里新加一条skip-grant-tables然后正常登录#连接mysql,直接回车即可,不需要输入密码 mysql -u root -p #更新root用户密码 update mysql.user set authentication_string=password('新密码') where user='root' and Host = 'localhost'; #刷新权限 flush privileges; #推出mysql exit
2023年02月17日
165 阅读
0 评论
2 点赞
2023-01-03
此内容被密码保护
加密文章,请前往内页查看详情
2023年01月03日
16 阅读
0 评论
0 点赞
2023-01-03
linux一键安装npc脚本
wget -O npc_install.sh https://pan.m88y.cn/f/4KuE/npc_installm.sh && sudo bash npc_install.sh
2023年01月03日
713 阅读
0 评论
8 点赞
2022-12-29
fastboot擦除分区及各分区作用
一.各分区作用system:系统分区.userdata:数据分区.cache:缓存分区recovery:Recovery分区.boot:存放内核和ramdisk的分区.hboot:SPL所在的分区,fastboot在此分区内splash1:这个就是开机第一屏幕了.radio:这个基带所在的分区oem:运营商配置分区二.擦除分区fastboot erase <要清空的分区名>例:fastboot erase cache #擦除cache分区 fastboot erase system #擦除system分区 fastboot erase boot #擦除boot分区 fastboot erase cache #擦除cache分区 fastboot erase userdata #擦除userdata分区
2022年12月29日
646 阅读
0 评论
6 点赞
1
2
...
8