Windows 与 Mac 系统共享文件夹互访

2016.10.13

Windows 系统访问 Mac 系统共享文件夹:

直接在文件夹地址栏输入目标地址. 例如 \\MacAir

如何将 Mac 文件夹设置为共享, 不在此处讨论范围内. 不过可以参考最后方参考资料.

Mac 系统访问 Windows 系统共享文件夹:

打开 Fin......

记 cmd 中 start 命令中的一个小坑

2016.10.13

使用 Git 的时候, 最开始是完全使用命令行的, 但是毕竟不方便, 于是下载了一个图形界面的 TortoiseGit, 可以 GUI 操作了. 但是想要 Commit 的时候不能直接使用 .ssh 文件夹中配好的 key, 需要使用 Pageant 添加 key 后才可以. 这样操作有很麻烦了, ......

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......