自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(9)
  • 资源 (1)
  • 问答 (1)
  • 收藏
  • 关注

原创 Python 写入csv e被识别为科学计数法

csv_writer.writerow([key+ '\t', value+ '\t'])每一个单元格要写入的内容后加“+ ‘\t’”

2020-08-29 15:40:19 1985 1

原创 Latex 一半黑一半白的圆圈

1. 导入包\usepackage{tikz}\newcommand*\emptycirc[1][1ex]{\tikz\draw (0,0) circle (#1);} \newcommand*\halfcirc[1][1ex]{% \begin{tikzpicture} \draw[fill] (0,0)-- (90:#1) arc (90:270:#1) -- cycle ; \draw (0,0) circle (#1); \end{tikzpicture}}\newcommand*\

2020-08-24 16:29:37 2309

原创 Python 更改文件名

import osdef Rename(OldName, NewName): os.rename(OldName, NewName)OldName = "%s/%s"%(Path, oldname)NewName = "%s/%s"%(Path, newname)

2020-08-24 10:54:31 279

原创 Latex 表格内强制换行

1. 将该语句放入在latex文档的导言区\newcommand{\tabincell}[2]{\begin{tabular}{@{}#1@{}}#2\end{tabular}}2. 在表格内,使用该语句进行换行\tabincell{c}{word \\ word}需要换行的内容用“\”隔开

2020-08-18 17:23:13 1593

原创 Ubuntu 自动安装 gcc 4.6

添加以下代码到/etc/apt/sources.list:deb http://archive.ubuntu.com/ubuntu/ trusty universe deb-src http://archive.ubuntu.com/ubuntu/ trusty universe

2020-08-14 10:53:20 628

原创 Latex 表格双栏 单栏

双栏\begin{table*}...\end{table*}单栏\begin{table}...\end{table}

2020-08-14 10:52:10 6991

原创 Could not find a package configuration file provided by “Qt5“ with any of the following names

编译软件时出现以下错误: By not providing "FindQt5.cmake" in CMAKE_MODULE_PATH this project has asked CMake to find a package configuration file provided by "Qt5", but CMake did not find one. Could not find a package configuration file provided by "Qt5" with

2020-08-06 10:54:28 12106 8

原创 Latex 表格语法生成工具

Create LaTex Tables Online

2020-08-05 17:24:28 485

原创 Latex 表格中使用 \toprule、\midrule、\bottomrule,出现 undefined control sequence

缺少相对应的宏包,需要导入:\usepackage{booktabs}

2020-08-05 17:23:07 20775

ImportBinary.zip

IDA Python 先二进制文件导入IDA中,将函数地址和函数名存储至csv文件,并生成idb文件

2020-09-09

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除