摘要: 项目地址:https://github.com/piotr-jura-udemy/laravel-course-2023/tree/master/event-management 要搭建好php环境和composer环境。默认你有点基础,这个项目用的编译器是phpstorm // 详细版本 lara 阅读全文
posted @ 2024-03-26 01:49 漫漫长路</> 阅读(424) 评论(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 漫漫长路</> 阅读(1500) 评论(0) 推荐(0)
摘要: 视频:https://www.bilibili.com/video/BV1jsTMz9EUz?t=144.0 饱受自动更新之苦,现提供一个3分钟可以“永久”关闭Windows更新的思路。具体步骤: 1、Win+R,regedit打开注册表编辑器; 2、找到路径HKEY_LOCAL_MACHINE\S 阅读全文
posted @ 2025-10-20 00:57 漫漫长路</> 阅读(67) 评论(0) 推荐(0)
摘要: 部署 1. 2. 3. 4. 使用的库 Pipe service 依赖注入原因 控制反转 3个module 连接在一起 TypeORM 连接数据库 建立数据库表 路由,请求 插入数据库后编辑的 登录 最简单的开发流程增删改查 controller import { Controller, Get, 阅读全文
posted @ 2025-07-28 21:15 漫漫长路</> 阅读(6) 评论(0) 推荐(0)
摘要: 1. 电视机分开拆,就是机盖子透明。可以像电脑一样更换零件 2025-7-17 2. 电动车安装雨伞,就像电动车安装手机导航一样。这种雨伞就是家常用的伞。在下雨天和大太阳的时候开电动车可以使用左手刹车。 2025-7-17 3.集成摄像头,可以区分男女小孩,做路边人流统计。2025-7-28 阅读全文
posted @ 2025-07-17 22:59 漫漫长路</> 阅读(8) 评论(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 漫漫长路</> 阅读(17) 评论(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 漫漫长路</> 阅读(38) 评论(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 漫漫长路</> 阅读(134) 评论(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 漫漫长路</> 阅读(305) 评论(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 漫漫长路</> 阅读(29) 评论(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 漫漫长路</> 阅读(107) 评论(0) 推荐(0)
摘要: 结束句子的三种方法 认识逗号 阅读全文
posted @ 2025-01-14 23:25 漫漫长路</> 阅读(30) 评论(0) 推荐(0)