摘要: 项目地址:https://github.com/piotr-jura-udemy/laravel-course-2023/tree/master/event-management 要搭建好php环境和composer环境。默认你有点基础,这个项目用的编译器是phpstorm // 详细版本 lara 阅读全文
posted @ 2024-03-26 01:49 漫漫长路</> 阅读(396) 评论(0) 推荐(0)
摘要: https://www.youtube.com/watch?v=0jk3aleuwUM 项目地址:https://gitee.com/ChinaGoogles/Vue3ViteTailwindTypescript Vite Vue3 Vue Router4 Typescript Pinia Tail 阅读全文
posted @ 2023-03-24 01:14 漫漫长路</> 阅读(1468) 评论(0) 推荐(0)
摘要: 部署 1. 2. 3. 4. 使用的库 Pipe service 依赖注入原因 控制反转 3个module 连接在一起 TypeORM 连接数据库 建立数据库表 路由,请求 插入数据库后编辑的 登录 最简单的开发流程增删改查 controller import { Controller, Get, 阅读全文
posted @ 2025-07-28 21:15 漫漫长路</> 阅读(2) 评论(0) 推荐(0)
摘要: 1. 电视机分开拆,就是机盖子透明。可以像电脑一样更换零件 2025-7-17 2. 电动车安装雨伞,就像电动车安装手机导航一样。这种雨伞就是家常用的伞。在下雨天和大太阳的时候开电动车可以使用左手刹车。 2025-7-17 3.集成摄像头,可以区分男女小孩,做路边人流统计。2025-7-28 阅读全文
posted @ 2025-07-17 22:59 漫漫长路</> 阅读(4) 评论(0) 推荐(0)
摘要: https://github.com/jackfrued/Python-100-Days/blob/master/Day36-45/44.Python%E6%8E%A5%E5%85%A5MySQL%E6%95%B0%E6%8D%AE%E5%BA%93.md pip install pymysql c 阅读全文
posted @ 2025-04-14 11:30 漫漫长路</> 阅读(12) 评论(0) 推荐(0)
摘要: 要先安装pip和python 1 2 3 4. 5. 6.打开cmd测试 第三方库openpyxl如何进行 Excel 文件操作,首先需要先安装它。 pip install openpyxl from openpyxl import Workbook from openpyxl.chart impo 阅读全文
posted @ 2025-04-14 10:53 漫漫长路</> 阅读(24) 评论(0) 推荐(0)
摘要: https://www.englishclub.com/grammar/rules.php Here are 20 simple rules and tips to help you avoid mistakes in English grammar. For more comprehensive 阅读全文
posted @ 2025-03-03 14:12 漫漫长路</> 阅读(101) 评论(0) 推荐(0)
摘要: 1.求整数的位数及各位数字之和,对于给定的正整数 N,求它的位数及其各位 数字之和。 输入示例: 9875 输出示例: 4 29 简化版 #include <stdio.h> int main() { int number,sum=0,count=0; printf("请输入一个正整数:"); sc 阅读全文
posted @ 2025-02-17 16:16 漫漫长路</> 阅读(167) 评论(0) 推荐(0)
摘要: 1. 直接插入排序 #include <stdio.h> void insertionSort(int arr[], int n) { for (int i = 1; i < n; i++) { int key = arr[i]; int j = i - 1; // 将大于 key 的元素移动到后面 阅读全文
posted @ 2025-02-15 11:53 漫漫长路</> 阅读(24) 评论(0) 推荐(0)
摘要: 顺序查找的实现 #include <stdio.h> #define SIZE 10 // 静态查找表的大小 // 顺序查找函数 int sequentialSearch(int arr[], int size, int target) { for (int i = 0; i < size; i++ 阅读全文
posted @ 2025-02-15 10:01 漫漫长路</> 阅读(89) 评论(0) 推荐(0)
摘要: 结束句子的三种方法 认识逗号 阅读全文
posted @ 2025-01-14 23:25 漫漫长路</> 阅读(29) 评论(0) 推荐(0)
摘要: 认识介词 例子: 例子: 识别介词 时间介词 at 精确的时间 by 不缺定的时间 for 持续的时间 in 固定的时间 on 某一天的时间 since 开始时间 until 直到 空间介词 at 指一个点 by 近的意思 from 从别处到这里 in 一个封闭的区域 off 离开 on 开启 ou 阅读全文
posted @ 2025-01-14 18:59 漫漫长路</> 阅读(37) 评论(0) 推荐(0)