上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 14 下一页
摘要: 他们准备考研,我偷偷学习JS,找份好工作卷死他们。 基本语法 <script type="text/javascript"> alert("控制浏览器弹出一个警告框"); document.write("向body中输出一个内容"); console.log("向控制台输出"); </script> 阅读全文
posted @ 2022-01-15 17:57 anyiya 阅读(24) 评论(0) 推荐(0)
摘要: 数据库操作 db.getMongo() 查看当前连接的服务器 show dbs 查看数据库列表 use <db> 切换某个具体数据库,不存在则在创建集合后自动生成 show collections 查看该数据库中所有集合 db.getCollectionNames() 以JSON方式显示集合名称 d 阅读全文
posted @ 2021-12-26 22:12 anyiya 阅读(50) 评论(0) 推荐(0)
摘要: 先开个坑,现在是24号的晚上10:30,明天开始更新。冲鸭!! ############################################ 选择题 20题 每题1分(写上面空里) (默认单选,标多选就多选) 填空题 20题 每题1分 源自书上hbase及其之前内容 判断题 10题 每题 阅读全文
posted @ 2021-12-24 22:31 anyiya 阅读(70) 评论(0) 推荐(0)
摘要: #高中同学作业绘图 import matplotlib.pyplot as plt import numpy as np from matplotlib.pyplot import MultipleLocator x1 = np.arange(0, 2.3, 0.1) x2 = np.arange( 阅读全文
posted @ 2021-12-22 21:37 anyiya 阅读(99) 评论(0) 推荐(0)
摘要: 学习算法是件怎样的事,你以为你会学了一种算法,比方说BFS,看网上博客做了两道题,感觉自己会了,殊不知就这道题,过两天给你做,你压根做不出来。 再者,算法那么多,你要学到什么时候?学会一种算法,至少也要经历以下几个步骤: 在网上看讲解 看一道例题代码 找十几道考察到这个算法的题目自己独立做出来 这其 阅读全文
posted @ 2021-12-12 23:04 anyiya 阅读(56) 评论(0) 推荐(1)
摘要: 环境准备 图形化Ubuntu系统 环境配置 打开你的终端开始粘贴命令: sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu $(lsb_release -sc) main" > /etc/apt/sources.list.d/ros-la 阅读全文
posted @ 2021-12-11 20:34 anyiya 阅读(60) 评论(0) 推荐(0)
摘要: 首先需要大家配置好JAVA环境 详见我另一篇随笔:https://www.cnblogs.com/thx2199/p/15353737.html 配置tomcat 找个文件夹传入去官网下好的tar.gz安装包:https://dlcdn.apache.org/tomcat/tomcat-9/v9.0 阅读全文
posted @ 2021-12-10 23:41 anyiya 阅读(151) 评论(0) 推荐(0)
摘要: 先安装gcc-c++编译器 yum install gcc-c++ yum install -y openssl openssl-devel 再安装pcre包 yum install -y pcre pcre-devel 再安装zlib包 yum install -y zlib zlib-devel 阅读全文
posted @ 2021-12-08 21:32 anyiya 阅读(117) 评论(0) 推荐(0)
摘要: Centos7配置Python3.10.1环境 部署依赖环境 yum -y install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gdbm-devel db4-d 阅读全文
posted @ 2021-12-08 19:20 anyiya 阅读(293) 评论(0) 推荐(0)
摘要: 基于Centos7、PHP7.4环境部署wordpress # 前置 安装虚拟机,最好是完整的,避免不必要问题。 确定可以ping通外网 vi /etc/sysconfig/network-scripts/ifcfg-ens33 service network restart # 安装httpd s 阅读全文
posted @ 2021-12-08 18:18 anyiya 阅读(131) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 14 下一页