上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 119 下一页
摘要: /* * _oo0oo_ * o8888888o * 88" . "88 * (| -_- |) * 0\ = /0 * ___/` '\___ * .' \\| |// '. * / \\||| : |||// \ * / _||||| -:- |||||- \ * | | \\\ - /// | 阅读全文
posted @ 2024-08-22 20:52 ®Geovin Du Dream Park™ 阅读(26) 评论(0) 推荐(0)
摘要: assembler汇编器 compiler编译器 interpreter 解释器 https://www.enterprisedb.com/downloads/postgres-postgresql-downloads Professional JavaScript for Web Develope 阅读全文
posted @ 2024-08-17 23:42 ®Geovin Du Dream Park™ 阅读(167) 评论(0) 推荐(0)
摘要: mysql: select * from tutorials; # CREATE TABLE IF NOT EXISTS `tutorials` (`id` INTEGER NOT NULL auto_increment , `title` VARCHAR(255), `description` V 阅读全文
posted @ 2024-08-09 08:50 ®Geovin Du Dream Park™ 阅读(31) 评论(0) 推荐(0)
摘要: mysql script: drop table `vuedustu`; CREATE TABLE `vuedustu` ( `stuId` int(11) NOT NULL AUTO_INCREMENT comment'学生编号', `stuname` varchar(255) DEFAULT N 阅读全文
posted @ 2024-08-07 20:17 ®Geovin Du Dream Park™ 阅读(19) 评论(0) 推荐(0)
摘要: mysql: select * from tutorials; # CREATE TABLE IF NOT EXISTS `tutorials` (`id` INTEGER NOT NULL auto_increment , `title` VARCHARuserinfos(255), `descr 阅读全文
posted @ 2024-08-07 18:04 ®Geovin Du Dream Park™ 阅读(43) 评论(0) 推荐(0)
摘要: 先安装路由包: npm install vue-router route/index.js import { createRouter, createWebHistory ,createWebHashHistory} from 'vue-router' import HomeView from '. 阅读全文
posted @ 2024-08-01 18:32 ®Geovin Du Dream Park™ 阅读(22) 评论(0) 推荐(0)
摘要: https://www.elby.ch/en/products/vcd.html Virtual CloneDrive --在windows PowerShell 管理身份运行 Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope Loca 阅读全文
posted @ 2024-07-27 23:46 ®Geovin Du Dream Park™ 阅读(166) 评论(0) 推荐(0)
摘要: #去重 A = ['geovindu','刘杰','江山','河水','刘杰','geovindu','张三','李五'] B = [] for i in A: if i not in B: B.append(i) print(B) C = set(A) print(list(C)) # 移动位置 阅读全文
posted @ 2024-07-06 19:16 ®Geovin Du Dream Park™ 阅读(30) 评论(0) 推荐(0)
摘要: tracert 实用程序可以用于分析互联网上的数据包传输路径,有助于检测在路由中连接变慢或无响应的位置。执行 tracert 命令后,会显示每个数据包沿途往返的时间以及跃点的 IP 地址或主机名。通过分析输出,可以对有问题的路由节点有一个大致的了解。 Tracert 参数说明 -d 不将地址解析成主 阅读全文
posted @ 2024-07-04 06:32 ®Geovin Du Dream Park™ 阅读(155) 评论(0) 推荐(0)
摘要: # python slicing 和函数range 差不多, 起始值,最后值,步长值 a='abcdefghijklmnopqrstuvwxyz' print(a[:],end=' \n') # abcdefghijklmnopqrstuvwxyz print(a[:5], end=' \n') # 阅读全文
posted @ 2024-07-03 08:53 ®Geovin Du Dream Park™ 阅读(33) 评论(0) 推荐(0)
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 119 下一页