常用的Linux命令1、echo2、date3、reboot4、poweroff5、wget6、ps7、top8、pdiof9、kill10、ifconfig11、uname12、uptime13、free14、who15、last16、history17、sosreport18、pwd19、cd20、ls
分类:
系统相关 时间:
2019-11-11 14:20:31
阅读次数:
75
1.github https://github.com/justjavac/free-programming-books-zh_CN 编程语言、WEB、函数、大数据、操作系统、在线课程、数据库相关书籍 2.鸠摩 https://www.jiumodiary.com/ 3.图灵社区 https://w ...
分类:
其他好文 时间:
2019-11-11 00:20:27
阅读次数:
125
2019年11月10日 SHEEL 1.人不能够直接控制我们的硬件。 2.人一层一层控制我们的硬件的程序叫做SHELL;SHELL的中文意思叫做壳。 (shell的一个作用就是人与我们硬件的一个翻译官。) bash 1.当前主流的linux系统的终端,大部分都是bash,因此我们学习过后,大部分的系 ...
分类:
系统相关 时间:
2019-11-10 22:51:29
阅读次数:
138
题目传送门 A. Maximum Square 题目意思是给你n个长条,每个长条的高度是num[i](0 < i < n),每一条的宽度都是 1 ;然后求这些长条可以组成的最大面积的正方形的宽度是多少,将它输出来。 题目分析 :因为要求的是正方形,而且面积是最大的,所以既要看它的宽度也要看它的高度。 ...
分类:
其他好文 时间:
2019-11-10 22:50:11
阅读次数:
126
题目描述 Farmer John has purchased a lush new rectangular pasture composed of M by N (1 ≤ M ≤ 12; 1 ≤ N ≤ 12) square parcels. He wants to grow some yummy ...
分类:
其他好文 时间:
2019-11-10 15:16:03
阅读次数:
74
题外:本文只是记录自己所学,参考博客:https://ctf-wiki.github.io/ctf-wiki/pwn/linux/glibc-heap/fastbin_attack-zh/ fastbin attack大体思路是修改chunk的fd指针或通过free伪造的chunk,将其添加到fas ...
分类:
其他好文 时间:
2019-11-10 11:38:07
阅读次数:
88
#include<stdio.h> #include<stdlib.h> #include<string.h> typedef struct Teacher { char name[64]; int age; char *pname2; }teacher; /* 编译器的=号操作会把指针变量的值,从 ...
分类:
其他好文 时间:
2019-11-09 21:50:25
阅读次数:
66
/*** point_practice.c ***/ #include<stdio.h> #include<string.h> #include<stdlib.h> int sort( char **myp1 /*in*/, int num1, char (*myp2)[30], int num2, ...
分类:
其他好文 时间:
2019-11-09 21:33:43
阅读次数:
75
Date:2019-11-08 读前思考: Nginx是什么? Nginx因为什么而出生的? Nginx到底能解决什么问题?Nginx的优缺点? Nginx 的产生 Nginx 同 Apache 一样都是一种 Web 服务器。基于 REST 架构风格,以统一资源描述符(Uniform Resourc ...
分类:
其他好文 时间:
2019-11-09 19:46:25
阅读次数:
70
1.均方误差(Mean Square Error / Quadratic Loss): MSE保证没有特别异常的预测值,因为平方部分放大了这种误差。 2.平均绝对误差(Mean Absolute Error): MAE保证预测值在大多数情况下表现良好(不会刻意管异常值),因为所有的误差都按相同的线性 ...
分类:
其他好文 时间:
2019-11-09 19:29:01
阅读次数:
102