持之以恒

导航

#

[置顶] python基础教程

摘要: 转自:http://www.cnblogs.com/vamei/archive/2012/09/13/2682778.htmlPython快速教程作者:Vamei 出处:http://www.cnblogs.com/vamei 欢迎转载,也请保留这段声明。谢谢!怎么能快速地掌握Python?这是和朋... 阅读全文

posted @ 2015-02-02 21:52 beilei 阅读(194) 评论(0) 推荐(0) 编辑

#

[置顶] css样式表中四种属性选择器

摘要: 学习此连接的总结http://developer.51cto.com/art/201009/226158.htmcss样式表中四种属性选择器1> 简易属性 tag[class]{ font-weight:bold } It will affect all tag with any class. e.g. or 2>精确属性值 a[href="http://www.beilei123.cn"][title="textTitle"]{font-size:10%} It will affect 3>部分属性值 类似使用perl中得... 阅读全文

posted @ 2014-02-06 23:07 beilei 阅读(400) 评论(0) 推荐(0) 编辑

2023年5月24日 #

ros.bridge

摘要: source /opt/ros/noetic/setup.bash source /opt/ros/foxy/setup.bash ros2 run ros1_bridge dynamic_bridge --bridge-all-topics https://blog.csdn.net/weixin 阅读全文

posted @ 2023-05-24 10:15 beilei 阅读(16) 评论(0) 推荐(0) 编辑

linux.udev

摘要: * udevadm info * udevadm monitor * udevadm control --reload https://www.tecmint.com/udev-for-device-detection-management-in-linux/ 阅读全文

posted @ 2023-05-24 10:10 beilei 阅读(4) 评论(0) 推荐(0) 编辑

2023年5月17日 #

px4.gps

摘要: [PX4|Mavros] Ubuntu 20.04 配置 ROS2 下的 PX4 开发环境 https://mp.weixin.qq.com/s?__biz=MzU1NjEwMTY0Mw==&mid=2247526342&idx=1&sn=116e813d91758bc4ec9b67321a6d47 阅读全文

posted @ 2023-05-17 15:58 beilei 阅读(10) 评论(0) 推荐(0) 编辑

2023年4月22日 #

route

摘要: IP ROUTE: https://www.cnblogs.com/sudochen/p/15992994.html ip route: https://blog.csdn.net/weixin_42319496/article/details/127158734 阅读全文

posted @ 2023-04-22 15:20 beilei 阅读(29) 评论(0) 推荐(0) 编辑

2021年11月10日 #

K8S 虚拟化场景 常用命令

摘要: #Check image history docker history --format {{.CreatedBy}} --no-trunc=true $DockerImage |sed "s//bin/sh\ -c\ #(nop)\ //g"|sed "s//bin/sh\ -c/RUN/g" | 阅读全文

posted @ 2021-11-10 14:09 beilei 阅读(62) 评论(0) 推荐(0) 编辑

call expect script content in bash shell

摘要: expect <<EOF set timeout 10 spawn ssh $user@$ip expect { "yes/no" { send "yes\n";exp_continue } "password" { send "$password\n" } } expect "]#" { send 阅读全文

posted @ 2021-11-10 13:56 beilei 阅读(9) 评论(0) 推荐(0) 编辑

2021年11月8日 #

curl 使用代理或忽略代理

摘要: curl --proxy "http://user:pwd@hostname:8080" "http://hostname/url" curl --noproxy "*" "http://hostname/url" 阅读全文

posted @ 2021-11-08 15:06 beilei 阅读(674) 评论(0) 推荐(0) 编辑

2021年11月3日 #

labelImg 快捷键 - 真香

摘要: Ctrl + u Load all of the images from a directory Ctrl + r Change the default annotation target dir Ctrl + s Save Ctrl + d Copy the current label and r 阅读全文

posted @ 2021-11-03 16:53 beilei 阅读(407) 评论(0) 推荐(0) 编辑

2021年9月29日 #

yolov5 训练部署 - 爬坑记录

摘要: yolov5爬坑记 training prepare images need to be trained and manual label training images prepare data for ./data/testImage.yaml python train.py --img 130 阅读全文

posted @ 2021-09-29 22:46 beilei 阅读(161) 评论(0) 推荐(0) 编辑

2021年9月27日 #

慎重在linux平台上使用c++中调用system API

摘要: the SIG_IGN for SIGCHLD will impect system function SIGINT:ctrl+c 终止信号 SIGQUIT:ctrl+\ 退出信号 SIGSTOP:ctrl+z 暂停信号 SIGSCONT:ctrl+z 继续信号 SIGALRM:闹钟信号 收到此信号 阅读全文

posted @ 2021-09-27 22:40 beilei 阅读(202) 评论(0) 推荐(0) 编辑