Afterlife -- Ingrid Michaelson

2016.10.04

Youtube video:

When the world is breaking down around you

Taking everything that you know

What you didn't know

Is that we can go forever i......

Bubble Sort

2016.08.21

Python

def bubbleSort(l):

l = l[:]

size = len(l)

for i in range(size - 1):

for j in range(size - 1 - i):

if l[j] > l[j + 1]:

l[j], l[j + 1] = l[j ......

Batch 批处理中的 EnableDelayedExpansion 详解

2016.08.13

在批处理文件中, setlocal enabledelayedexpansion 非常常见, 但是它的具体作用可能不是那么好理解. 虽然网上对它的作用的介绍很多, 但是感觉不是很准确. 所以写下这篇文章进行一下总结.

什么是 EnableDelayedExpansion?

它是 setl......

打印机相关知识(Printer related knowledges)

2016.08.10

- 什么是 PDL?

PDL 全称是 Page Description Language(页面描述语言).

PDL 有很多很多种, 具体可以查看 维基百科(英文) 或者 百度百科(中文).

个人理解 PDL 的作用就是描述一段话应该怎么打印在一张纸上, 打印在什么地方.......

IDA 教程 & DDK 相关

2016.08.07

IDA简易教程: http://www.360doc.com/content/06/0821/08/1130_186349.shtml

关于DDK中的编译知识: http://blog.csdn.net/wuyingfits/article/details/6599924

在slicke......