https://git-scm.com/download/win
苹果系统git客户端包含在Xcode Command Line Tools里,可以使用命令:
# based in part on information from here: | |
# http://www.linuxquestions.org/questions/debian-26/how-to-install-debian-using-debootstrap-4175465295/ | |
#### Part 1 - Knoppix | |
# boot Knoppix 7.2 | |
knoppix64 2 vga=788 noaudio | |
# configure networking |
import std.stdio, std.variant; | |
//============================================================================== | |
// registry for query field names | |
template registerQuery(T, string file, size_t line) | |
{ | |
__gshared string[] fields; | |
} |
#!/bin/sh | |
# cross & static compile shadowsocks-libev | |
PCRE_VER=8.41 | |
PCRE_FILE="http://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-$PCRE_VER.tar.gz" | |
MBEDTLS_VER=2.6.0 | |
MBEDTLS_FILE="https://tls.mbed.org/download/mbedtls-$MBEDTLS_VER-gpl.tgz" |
https://git-scm.com/download/win
苹果系统git客户端包含在Xcode Command Line Tools里,可以使用命令:
This gist assumes:
www-data
(may be apache
on other systems)import std.conv; | |
import std.stdio; | |
import std.traits; | |
import std.range; | |
struct Element | |
{ | |
string _name; | |
string[string] _attributes; | |
string _content; |