摘要: -- coding: utf-8 -- """ Created on Wed Jun 1 15:34:00 2022 @author: guess who i am """ 说明: 1 本文共一百八九十道题,涵盖了截止2022.6.30我在网上所见到的所有题,真正的最全题库,只有答案没有题目。 ht 阅读全文
posted @ 2023-04-21 15:16 进击的bug~ 阅读(38) 评论(0) 推荐(0) 编辑
摘要: https://www.hello-algo.com/chapter_preface/about_the_book/ 阅读全文
posted @ 2022-12-30 16:34 进击的bug~ 阅读(20) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/hong-fithing/tag/Jenkins/ 阅读全文
posted @ 2022-12-30 16:20 进击的bug~ 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 返回json数据: { "data": { "offset": 2, "total": 2952, "restTotal": 2950, "dataList": [{ "ISBN": "9787539197456", "bookStar": "93.6", "tag": "", "commentTi 阅读全文
posted @ 2022-12-26 17:50 进击的bug~ 阅读(712) 评论(0) 推荐(0) 编辑
摘要: js引入的三种方式 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <script> // js引入的三种方式 /* 1、第一种:行间事件: 直接在元素上 通过给元素添加事件绑定,来执行js代码 2、第二种:通 阅读全文
posted @ 2022-12-14 16:41 进击的bug~ 阅读(14) 评论(0) 推荐(0) 编辑
摘要: css三种引入方式 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <!-- 1、通过link标签引入外部的css文件 2、在head中通过style标签定义样式 3、在标签中通过 阅读全文
posted @ 2022-12-14 16:15 进击的bug~ 阅读(23) 评论(0) 推荐(0) 编辑
摘要: <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, 阅读全文
posted @ 2022-12-13 18:19 进击的bug~ 阅读(26) 评论(0) 推荐(0) 编辑
摘要: <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, 阅读全文
posted @ 2022-12-13 18:17 进击的bug~ 阅读(19) 评论(0) 推荐(0) 编辑
摘要: mysql查询练习 新建一个查询用的数据库:selectTest CREATE DATABASE selectTest; 选择该数据库: USE selectTest; 学生表: student 学号 姓名 性别 出生日期 所在班级 CREATE TABLE student( s_no VARCHA 阅读全文
posted @ 2022-12-11 17:24 进击的bug~ 阅读(9) 评论(0) 推荐(0) 编辑
摘要: Allure+jenkins配置 http://plugincompat.herokuapp.com/ https://docs.pytest.org/en/latest/reference.html#ini-options-ref 1、Allure 的使用 1、下载Allure: # 下载 All 阅读全文
posted @ 2022-12-10 18:16 进击的bug~ 阅读(483) 评论(0) 推荐(0) 编辑