服务端生成密钥和公钥 ssh-keygen -t rsa Generating public/private rsa key pair. Enter file in which to save the key (/root/.ssh/id_rsa): Enter passphrase (empty ...
分类:
其他好文 时间:
2020-05-17 01:30:10
阅读次数:
83
spacemacs可以通过shell layer实现单独开一个终端窗口 问题: 1. 这个终端窗口打开的vim的del功能不管用, 在MacOS下 在.spacemacs中取消shell layer的注释,用 M-m f e R 安装 重启emacs后,来使用一下: 打开shell M-m ' 打开 ...
分类:
系统相关 时间:
2020-05-17 01:25:58
阅读次数:
128
如何从安装了Windows的工作电脑连远程接到Linux服务器?其实有很多软件,比如 PuTTY、XShell、CRT、MobaXterm等等。不过还是 PuTTY最简单易用、无需安装、并且开源免费。PuTTY其实是一个软件套装,里边除了最常用的putty之外,还包含了像 pscp、psftp等可以 ...
分类:
其他好文 时间:
2020-05-17 00:46:32
阅读次数:
361
0 setup 配置文件 import pandas as pd pd.plotting.register_matplotlib_converters() import matplotlib.pyplot as plt %matplotlib inline import seaborn as sns ...
分类:
其他好文 时间:
2020-05-16 18:25:50
阅读次数:
51
需求:用python绘制一个与中国传统节日有关的图像,如春节→中国结 1 import turtle as t 2 def goto(x,y): 3 t.penup() 4 t.goto(x,y) 5 t.pendown() 6 7 def init(): 8 t.setup(800,800) 9 ...
分类:
编程语言 时间:
2020-05-16 16:25:16
阅读次数:
162
上图: 上代码: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> .container{ width: 150px; height: 30px; position ...
分类:
Web程序 时间:
2020-05-16 13:59:14
阅读次数:
68
结论:关系数据库不适合做全文搜索:like '%xxx%' 效率很慢,建的索引将无效,查询的时候会像翻书一样一页一页的翻,返回的结果没有匹配度的概念,比如可能希望搜索的关键词在文章中出现的次数越多越是我想要的文章,当搜索 live 的时候,也想把 LIVE/lives/living 搜出来,但是数据 ...
分类:
Web程序 时间:
2020-05-16 12:40:15
阅读次数:
87
单页应用(SPA)和多页应用(MPA)的区别 英文解释 单页面应用:SinglePage Web Application,简称 SPA 多页面应用:MultiPage Application,简称 MPA 定义区分 (1)单页面应用 只有一个WEB主页面的应用,公共资源(js、css等)仅需加载一次 ...
分类:
其他好文 时间:
2020-05-16 12:35:45
阅读次数:
63
0 setup 配置文件 import pandas as pd pd.plotting.register_matplotlib_converters() import matplotlib.pyplot as plt %matplotlib inline import seaborn as sns ...
分类:
其他好文 时间:
2020-05-16 12:12:08
阅读次数:
63