02 2021 档案
1. 基本工具-NETCAT
摘要:0x01 工具命令参数 root@main:/# netcat -h [v1.10-41.1+b1] connect to somewhere: nc [-options] hostname port[s] [ports] ... listen for inbound: nc -l -p port
C# 打印数组的方法
摘要:1. for 循环 using System; using static System.Console; namespace syqwq { class Program { static void Main(string[] args) { int[] array = new int[] { 1,
二、C++ (C Plus Plus) 教程 之 Hello World代码分析
摘要:上一篇文章, 我们看了 Hello World 的实现方法, 但我们仍然不知道, 他是如何起效的. 那么我们这节课就来讲一讲, 这个代码究竟做了些什么 ? Hello World! 代码如下: #include <iostream> using namespace std; int main() {
css 选择器
摘要:在玩 python爬虫 时, 我们经常要定位标签, 获取属性 在这个过程中, 靠 css选择器 是一个十分有利的方法, 不仅简洁而且边界 就个人看来, 在正则 , xpath , 和 css选择器 中, 如果 css选择器 能用, 我肯定会选 css选择器 我们先来看这个 html: <!DOCTY
BBC 爬虫 QwQ
摘要:BBC 爬虫 一只可以用来爬取 BBC 音频 和 文字材料 的网络机器人.....emmm 该爬虫只抓取网页第一页的内容, 因为懒得写页码循环了... 到了高中, 随着英语的全球化流行(逼格蛮高的), 英语考试越来越重要了, 这其中英语听力也是很重要的一部分. 因此, 多听原汁原味的音频就很重要了.
一、C++ (C Plus Plus) 教程 之 Hello World
摘要:按照一般学习编程的惯例, 在学习一门新的编程语言的第一节课, 我们总会以 在屏幕上输出 "Hello World!" 为起点. 所以, 我们现在就开始学习 在屏幕上输出 "Hello World!" 的C++实现方法. 在此之前, 我们知道要编程肯定需要工具, 我们将这种能够帮助我们写代码, 编译代