分享一个小智AI接线图
如有侵权,请联系作者哦!!!
如有侵权,请联系作者哦!!!
我的第100篇文章,长路漫漫,唯有坚持才能成功 创建部署文件在根目录下创建:.github/workflows/xx.yml文件 name: GitHub Actions Build and Deploy Demo on: push: branches: - main jobs: build-and-deploy: runs-on:...
平台:termux-app服务器版本: 8.0.40-0ubuntu0.20.04.1 修改配置文件默认在:/etc/mysql/mysql.conf.d/mysqld.cnf bind-address改为0.0.0.0即可 执行一堆命令mysql>use mysql; mysql>select host from user where ...
安装sudo apt update sudo apt upgrade sudo apt install redis-server 配置远程连接修改配置文件: vim /etc/redis/redis.conf # 注释掉绑定地址#bind 127.0.0.1,让Redis可远程访问 # bind 127.0.0.1 ::1 #取消注释requirepass 启动密码认证,并设置访问密码...
摘自文章:https://blog.csdn.net/m0_49073940/article/details/127779168 下载termux-app地址:https://github.com/termux/termux-app/releases 更新源apt update 更新软件apt upgrade -y 安装wget和prootapt install wget proot -...
前言所谓脚手架,就是提前写好一些固定的文件模板,所以你需要先上传自己的模板到git仓库 配置文件config.js这个里面可以写你所有项目模板 const projectList = { vueRouter: "https://github.com/ConsoleLZ/vue-router-cli.git" }; module.exports...
import MiniSearch from 'minisearch' const tokenizer = (str) => { // 分词逻辑,返回完整的单词以及单词的部分片段 const words = str.match(/[\u4e00-\u9fa5]+|[a-zA-Z0-9]+/g) || []; const subStrings ...
2D平面游戏角色移动代码(PC端)using System.Collections; using System.Collections.Generic; using UnityEngine; public class controler : MonoBehaviour { private Rigidbody2D rigidbody2D; private Anima...
基本配置const owner = "ConsoleLZ"; // 仓库所有者 const repo = "githubAPI"; // 仓库名称 const accessToken = "???"; // GitHub 个人访问令牌 const branch = 'main' // 仓库分支 获取文件sha值...
安装直接去官网下载Tiled编辑器:Tiled | Flexible level editor (mapeditor.org) 资源准备所有资源仅供学习使用,不可用于其他违法用途,违者与作者无关https://pan.baidu.com/s/12T3GwRrKB9uqLfYRMcSYcw 提取码:xy6s 开始使用Tiled1. 新建一个Map 目前phaser并不支持压缩,所以这里选csv...