会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
snail1502
博客园
首页
新随笔
联系
订阅
管理
2025年1月2日
NetPlier 复现笔记
摘要: 安装miniconda3 echo ". /home/[username]/miniconda3/etc/profile.d/conda.sh" >> ~/.bashrc echo "conda activate" >> ~/.bashrc 使用conda安装py 3.6环境 conda creat
阅读全文
posted @ 2025-01-02 10:03 snail1502
阅读(147)
评论(0)
推荐(0)
2024年7月25日
conda配hugging face环境 & 服务器系统盘容量不足
摘要: conda create --name env_name python=3.10 安装pytorch:https://pytorch.org/get-started/locally/ conda install jupyter conda install -c huggingface transfo
阅读全文
posted @ 2024-07-25 09:58 snail1502
阅读(69)
评论(0)
推荐(0)
2024年3月12日
FANUC发那科数控采集方法
摘要: Overview 本文介绍如何使用FANUC官方提供的开发套件FOCAS1/2采集 编程语言:C++ API说明:https://www.inventcom.net/fanuc-focas-library/general/fwlib32 创建项目 1.新建vs2022中的c++控制台项目 2.添加头
阅读全文
posted @ 2024-03-12 18:19 snail1502
阅读(1241)
评论(2)
推荐(0)
2024年3月11日
三菱数控采集方法
摘要: Overview 本文介绍如何使用三菱提供的开发套件,与三菱机床M70进行通信 开发套件下载地址:官方地址(需要注册账号) 如图,目前官方更新到了A7版本(需要购买序列号): com开发基础 参考:https://www.cnblogs.com/dayw/category/512428.html P
阅读全文
posted @ 2024-03-11 21:02 snail1502
阅读(875)
评论(0)
推荐(1)
2024年2月29日
学术论文写作-完成一篇论文的科研历程与经验
摘要: 报告人:彭思达-浙江大学 视频地址:https://www.bilibili.com/video/BV1DA4m1V7D3?vd_source=2a1098ef026894eda67d493f700d2246 GitHub:https://github.com/pengsida/learning_r
阅读全文
posted @ 2024-02-29 20:29 snail1502
阅读(154)
评论(0)
推荐(0)
2024年1月26日
boofuzz入门与源码简析
摘要: boofuzz基本使用 官方手册:https://boofuzz.readthedocs.io/en/stable/index.html GitHub:https://github.com/jtpereyda/boofuzz boofuzz分类:协议模糊测试,黑盒,基于生成 boofuzz源码 问题
阅读全文
posted @ 2024-01-26 15:22 snail1502
阅读(1029)
评论(0)
推荐(0)
2023年6月6日
Rogue7: Rogue Engineering-Station Attacks on S7 Simatic PLCs 阅读笔记
摘要:  ### **基本信息** **题目:** **Rogue7: Rogue Engineering-Sta
阅读全文
posted @ 2023-06-06 16:15 snail1502
阅读(127)
评论(0)
推荐(0)
2023年6月5日
如何查找Black Hat会议文章
摘要: BlackHat官网:https://www.blackhat.com/ 查看Black Hat历史文章: 选择会议: 选择主题: 或者可以Ctrl+F搜索具体的文章
阅读全文
posted @ 2023-06-05 16:16 snail1502
阅读(85)
评论(0)
推荐(0)
2023年4月20日
批量计算文件夹下所有代码总行数
摘要: 使用如下python代码: import os dir = os.getcwd() #获取当前目录 subdirlist = os.listdir(dir) #获取当前目录下文件列表 total = 0 for subdir in subdirlist: path = os.path.join(di
阅读全文
posted @ 2023-04-20 16:43 snail1502
阅读(61)
评论(0)
推荐(0)
公告