Linux操作系统安装好之后,可以通过 df -h 命令查看磁盘挂载信息和空间使用率 [root@localhost ~]# df -h Filesystem Size Used Avail Use% Mounted on devtmpfs 7.8G 0 7.8G 0% /dev tmpfs 7.8 ...
分类:
其他好文 时间:
2021-05-24 11:10:34
阅读次数:
0
在别人博客看到这样一句话,觉得总结得蛮到位的:程序运行平台 = CPU+OS+Compiler | | | 在C语言和C++中,经常会出现某一种数据类型所占的字节数为多大的问题,其实这些机器字长和和机器位数没有直接关系,但是和编译器有关系,由编译器在编译期间决定。 | | | | 16位编译器 | ...
分类:
编程语言 时间:
2021-05-24 11:01:21
阅读次数:
0
首先浏览器是多进程的,每开启一个网页至少会开一个进程,开启多个空白网页,默认为是一个进程,这个可以通过谷歌->更多工具->任务管理器查看(快捷键shift+Esc) 至于为什么是多进程是因为如果浏览器是单进程,那么某个Tab页崩溃了,就影响了整个浏览器,体验有多差;同理如果是单进程,插件崩溃了也会影 ...
分类:
系统相关 时间:
2021-05-24 10:46:57
阅读次数:
0
ThreadLocal 分析 首先我们看一下下面这个程序 public class ThreadLockDemo { //初始tl per对象名是 zs static ThreadLocal<per> tl = new ThreadLocal<per>() { protected per initi ...
分类:
其他好文 时间:
2021-05-24 07:59:20
阅读次数:
0
//导包import pandas as pd s1=pd.Series([1,2,3],index=[1,2,3],name='A') s2=pd.Series([10,20,30],index=[1,2,3],name='B') s3=pd.Series([100,200,300],index= ...
分类:
其他好文 时间:
2021-05-24 07:58:49
阅读次数:
0
1.停止服务 net stop mysql; 2.控制台输入 mysqld --console --shared-memory --skip-grant-tables 3.重新打开一个窗口,进入bin目录下,执行mysql,回车 4.密码置空 update user set authenticati ...
分类:
数据库 时间:
2021-05-24 07:35:02
阅读次数:
0
目的 将一些重复的代码交给IDEA生成,我们只需要关注那些可变的参数。 步骤 进入以下选项 File → Settings → Editor → Live Templates 2. 3.设置一个组名 MyTemplates 在 MyTemplates中新增一个代码模板 效果展示 默认为 Tab键代码 ...
分类:
其他好文 时间:
2021-05-24 05:58:31
阅读次数:
0
看到有不少朋友因为不知道什么时候不知道按了什么键,搞得Tab键变成在各个按钮和菜单中切换,再也不是那一步四个空格的Tab了。 这个问题按Ctrl + M就解决了,这个快捷键是用于切换Tab键的快捷功能,VS Code中也有提示,如下图所示: ...
分类:
其他好文 时间:
2021-05-24 04:33:23
阅读次数:
0
封装markdown.js /* * @Author: your name * @Date: 2021-05-04 16:07:50 * @LastEditTime: 2021-05-04 16:29:16 * @LastEditors: Please set LastEditors * @Desc ...
分类:
其他好文 时间:
2021-05-24 04:11:20
阅读次数:
0
Master in Burp Suite - Tools Introductions(1) Introduction to Burp Proxy tab How to configure proxy and intercept request Deploy our target website - ...
分类:
其他好文 时间:
2021-05-24 03:33:58
阅读次数:
0