相关文章
Linux之防火墙命令
1、查看防火墙状态
systemctl status firewalld1.1、开启防火墙
service firewalld start1.2、重启防火墙
service firewalld restart1.3、关闭防火墙
service firewalld stop2、查看防火墙规则
firewall-cmd --list-all # 查看全部信息
firewall-cmd --list-ports # …
建站知识
2024/12/18 7:59:50
NumPy进阶(二)
2. NumPy进阶(二)
2.1 Numpy数组操作
2.1.1 添加元素 numpy.append 函数在数组的末尾添加值。 追加操作会分配整个数组,并把原来的数组复制到新数组中 注意: 插入的维度要保证所有数组的长度是相同的如果没有指定轴,数组会被扁平处理 ndarr…
建站知识
2024/12/16 20:37:38
骑砍2霸主MOD开发(2)-基础开发环境搭建
一.骑砍2霸主程序架构 二.骑砍2霸主C#接口层代码查看 1.C#反编译工具dnspy下载: 2.骑砍2霸主游戏引擎接口查看: 例如IMBAgent interface接口:
#调用TaleWorlds.Native.dll中的函数
[EngineMethod("get_movement_flags", false)]
uint GetMovementFlags(UIntPtr agen…
建站知识
2024/12/9 8:01:05
从0开始复习python~
//,int() , abs(), divmod() ,float() ,complex() ,pow(), ** , bool() ,or , and ,
len() , range() , str() , 其中 for i in xxx: else: xxxxx;
有点意思... # 地板除,向下取整
print(-3//2)
# 只保留整数部分
print(int(3.72))
# 绝对值
print…
建站知识
2024/12/18 17:09:33
git bash上传文件至github仓库
Linux运维工具-ywtool 目录 一.访问github二.新建仓库1.点击自己头像2.选择"your repositories"3.点击"New"4.创建新仓库 三.通过git bash软件上传文件1.提示2.打开git bash软件3.切换到本地仓库目录4.配置github的用户名和邮箱信息5.生成SSH Key6.github添…
建站知识
2024/12/21 19:29:51