git log 显示从最近到最远的所有提交日志 git reflog 显示每次提交的 commit 的 comit id git reset --hard HEAD^ // 回退到 最后一次提交的版本 git reset --hard 版本id // 回退到 当前id 提交的版本 -> id 可以通 ...
分类:
其他好文 时间:
2021-04-28 12:05:46
阅读次数:
0
[MySQL数据库之表的详细操作:存储引擎、表介绍、表字段之数据类型] 表的详细操作 存储引擎 mysql中建立的库 >文件夹 库中建立的表 >文件 用来存储数据的文件有不同的类型,每种文件类型对应各自不同的处理机制: 处理图片用jpg、png 处理视频用mp4 处理音频用mp3 处理文本用txt ...
分类:
数据库 时间:
2021-04-28 11:50:44
阅读次数:
0
文件读写操作「c++」 #include <fstream> void test01() { //ofstream ofs("./test.txt",ios::out | ios::trunc); //后期指定打开方式 ofstream ofs; ofs.open("./test.txt",ios: ...
分类:
编程语言 时间:
2021-04-27 15:05:25
阅读次数:
0
运行环境python3.7 #coding=utf-8 import requests import time import json import re import sqlite3 url=[] for i in open("AURL.txt"): url.append(i) yaoqing=u ...
分类:
其他好文 时间:
2021-04-27 14:10:35
阅读次数:
0
在虚拟环境使用以下命令将当前虚拟环境中的依赖包以版本号生成至文件中: pip freeze >requirements.txt pip install -r requirements.txt ## SQLAlchemy from flask import Flask from flask_sqlal ...
分类:
数据库 时间:
2021-04-24 13:23:20
阅读次数:
0
1、测试数据 [root@centos7 test3]# cat b.txt e t s e s g m x w d g i d t e g x g e w 2、打印匹配w的行 [root@centos7 test3]# cat b.txt e t s e s g m x w d g i d t e ...
分类:
系统相关 时间:
2021-04-24 13:18:10
阅读次数:
0
#新建url文件,以名filelist.txt为例 vim filelist.txt #把文件下载地址url填进去 #执行命令下载 wget -bc -i filelist.txt #选项说明 -b, --background 启动后转入后台。 -c, --continue 继续下载部分下载的文件。 ...
分类:
Web程序 时间:
2021-04-24 13:11:34
阅读次数:
0
1. 用Pyspark自主实现词频统计过程。 >>> s = txt.lower().split()>>> dd = {}>>> for word in s:... if word not in dd:... dd[word] = 1... else:... dd[word] = dic[word] ...
分类:
其他好文 时间:
2021-04-23 12:19:08
阅读次数:
0
>>> s = txt.lower().split()>>> dd = {}>>> for word in s:... if word not in dd:... dd[word] = 1... else:... dd[word] = dic[word] + 1...>>> ss = sorted( ...
分类:
其他好文 时间:
2021-04-23 12:18:32
阅读次数:
0
from wordcloud import WordCloud,ImageColorGeneratorimport jiebaimport numpy as npimport matplotlib.pyplot as pltfrom PIL import Image with open('西游记.t ...
分类:
其他好文 时间:
2021-04-23 12:11:32
阅读次数:
0