今天完成内容: 学习web 用户注册页面 <!DOCTYPE html><html lang="en"><head> <!-- Basic --> <meta charset="utf-8" /> <!-- 告诉IE浏览器,IE8/9及以后的版本都会以最高版本IE来渲染页面 --> <meta ht ...
分类:
其他好文 时间:
2021-06-21 20:43:18
阅读次数:
0
初始结构搭建: index.html: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1. ...
分类:
其他好文 时间:
2021-06-20 18:17:40
阅读次数:
0
一、常用命令 1、关闭所有java进程命令: ps -ef | grep java | grep -v grep | awk '{print $2}' | xargs kill -9 2、批量文本操作 替换字符串:sed -i 's/原字符串/新字符串/g' /home/1.txt 删除字符串:se ...
分类:
系统相关 时间:
2021-06-20 18:10:37
阅读次数:
0
今天完成内容: 开发家庭小账本 1.编写代码 package com.edu.entity; import java.util.Date; public class User {private int id;private String username;private String useruse ...
分类:
其他好文 时间:
2021-06-20 17:56:05
阅读次数:
0
This time you are asked to tell the difference between the lowest grade of all the male students and the highest grade of all the female students. Inp ...
分类:
其他好文 时间:
2021-06-20 17:53:20
阅读次数:
0
import zlib import websocket import json import redis import pymysql import time rds = redis.StrictRedis(host='10.10.6.83', port=6379, db=3, password= ...
分类:
编程语言 时间:
2021-06-18 19:59:07
阅读次数:
0
#Git多分支管理 ##问题背景 实际工作过程中如果既定版本号为1.0的发布版本中包含两个最新的产品特性,而这两个特性分别由两个小组并行开发,那么两个小组的特性分支开发完毕之后应该如何合并入1.0的发布版本,不同merge参数带来不尽相同的效果让人容易混淆,这里就专门对比一下常用参数的异同。 ##举 ...
分类:
其他好文 时间:
2021-06-18 19:06:37
阅读次数:
0
petalinux-build -c bootloader petalinux-build -c bootloader -x distclean petalinux-build -c bootloader diff -uNr zynq_fsbl_old zynq_fsbl_new > diff.pa ...
分类:
系统相关 时间:
2021-06-17 17:02:18
阅读次数:
0
1:开机同步 开机时自动同步可编辑 /etc/ntp/step-tickers 文件 1 vim /etc/ntp/step-tickers 2 3 # List of NTP servers used by the ntpdate service. 4 5 ntp.aliyun.com 6 tim ...
分类:
其他好文 时间:
2021-06-17 16:54:51
阅读次数:
0
Promise模拟,尝试手写Promise 思考 Promise通过new Promise 使用,并通常会传入一个函数,这个函数有两个参数,一个是resolve,一个是reject,resolve应该是一个可以解决事情的函数,reject应该是一个当事情没有得到解决时的处理函数,所以Promise应 ...
分类:
其他好文 时间:
2021-06-17 16:31:23
阅读次数:
0