https://www.jarvisoj.com/challenges(pwn网址) nc pwn2.jarvisoj.com 9881(远程连接) 在ubuntu16.04上进行连接,看下图 连接之后屏幕出现一行字符 在pwn的网址上看到: 使用file指令 hacker@ubuntu:~$ fi ...
分类:
其他好文 时间:
2020-02-07 15:08:02
阅读次数:
72
线程池之 Executors + 面试题 线程池的创建分为两种方式:ThreadPoolExecutor 和 Executors,上一节学习了 ThreadPoolExecutor 的使用方式,本节重点来看 Executors 是如何创建线程池的。 Executors 可以创建以下六种线程池。 Fi ...
分类:
编程语言 时间:
2020-02-07 14:58:09
阅读次数:
61
Java的三种循环 Java三种循环结构: 1、for循环 2、while循环 3、do...while循环 循环结构组成部分:1、条件初始化语句,2、条件判断语句 , 3、循环体语句,4、条件控制语句 条件初始化语句:用于表示循环开启时的起始状态,简单说就是循环开始的时候条件是什么样的; 条件判断 ...
分类:
编程语言 时间:
2020-02-07 12:54:28
阅读次数:
67
Makefile引言 第1课 - make 和 makefile 第2课 - 初识makefile的结构 第3课 - makefile伪目标的引入 第4课 - 变量和不同的赋值方式 第5课 - 预定义变量的使用 第6课 - 变量的高级主题(上) 第7课 - 变量的高级主题(下) 第8课 - 条件判断 ...
分类:
其他好文 时间:
2020-02-07 01:36:40
阅读次数:
99
[TOC] 9 SWIG 库 To help build extension modules, SWIG is packaged with a library of support files that you can include in your own interfaces. These fi ...
分类:
其他好文 时间:
2020-02-06 20:07:14
阅读次数:
71
1、grep 1 ## a为一个data frame,取含有RNA-Seq的行 2 index <- grep("RNA-Seq", a$Assay_Type) 3 b <- a[index,] 2、读取文件,选择不读哪一行 1 ##不读取带有!的行 2 data <- read.table("fi ...
分类:
其他好文 时间:
2020-02-06 16:13:01
阅读次数:
72
protected void Button2_Click(object sender, EventArgs e) { FileInfo fi = new FileInfo(Server.MapPath(".") + @"\kk.xls"); if (fi.Exists) { fi.Delete(); ...
配置文件读取ini config_handler.py from configparser import ConfigParser class configHandler(ConfigParser): def __init__(self,file,encoding='utf-8'): """ :fi ...
分类:
其他好文 时间:
2020-02-04 20:47:37
阅读次数:
87
Java if 判断语句 package XunHuanPanDuan;import java.util.Scanner;public class ifDemo01 { //if 判断语句 public static void main(String[] args) { Scanner scanne ...
分类:
编程语言 时间:
2020-02-01 23:43:19
阅读次数:
167
面试题64:求1+2+…+n 题目描述 求1+2+…+n,要求不能使用乘除法、for、while、if、else、switch、case等关键字及条件判断语句(A?B:C)。 问题分析 有了那么多限制,剩下的我们可以选择 单目运算符:++和 ,双目运算符:+, ,移位运算符 ,关系运算符 ,1) & ...
分类:
其他好文 时间:
2020-02-01 19:24:39
阅读次数:
83