摘要:
安装miniconda3 echo ". /home/[username]/miniconda3/etc/profile.d/conda.sh" >> ~/.bashrc echo "conda activate" >> ~/.bashrc 使用conda安装py 3.6环境 conda creat 阅读全文
摘要:
conda create --name env_name python=3.10 安装pytorch:https://pytorch.org/get-started/locally/ conda install jupyter conda install -c huggingface transfo 阅读全文
摘要:
Overview 本文介绍如何使用FANUC官方提供的开发套件FOCAS1/2采集 编程语言:C++ API说明:https://www.inventcom.net/fanuc-focas-library/general/fwlib32 创建项目 1.新建vs2022中的c++控制台项目 2.添加头 阅读全文
摘要:
Overview 本文介绍如何使用三菱提供的开发套件,与三菱机床M70进行通信 开发套件下载地址:官方地址(需要注册账号) 如图,目前官方更新到了A7版本(需要购买序列号): com开发基础 参考:https://www.cnblogs.com/dayw/category/512428.html P 阅读全文
摘要:
报告人:彭思达-浙江大学 视频地址:https://www.bilibili.com/video/BV1DA4m1V7D3?vd_source=2a1098ef026894eda67d493f700d2246 GitHub:https://github.com/pengsida/learning_r 阅读全文
摘要:
boofuzz基本使用 官方手册:https://boofuzz.readthedocs.io/en/stable/index.html GitHub:https://github.com/jtpereyda/boofuzz boofuzz分类:协议模糊测试,黑盒,基于生成 boofuzz源码 问题 阅读全文
摘要:
 ### **基本信息** **题目:** **Rogue7: Rogue Engineering-Sta 阅读全文
摘要:
BlackHat官网:https://www.blackhat.com/ 查看Black Hat历史文章: 选择会议: 选择主题: 或者可以Ctrl+F搜索具体的文章 阅读全文
摘要:
使用如下python代码: import os dir = os.getcwd() #获取当前目录 subdirlist = os.listdir(dir) #获取当前目录下文件列表 total = 0 for subdir in subdirlist: path = os.path.join(di 阅读全文