替换上你的 API Token,域名ID,记录ID等参数,就可以运行了。 会在后台一直运行,每隔30秒检查一遍IP,如果修改了就更新IP。
获得 domain_id 可以用 curl
curl -k https://dnsapi.cn/Domain.List -d "login_token=TOKEN"`
替换上你的 API Token,域名ID,记录ID等参数,就可以运行了。 会在后台一直运行,每隔30秒检查一遍IP,如果修改了就更新IP。
获得 domain_id 可以用 curl
curl -k https://dnsapi.cn/Domain.List -d "login_token=TOKEN"`
i386 : iPhone Simulator | |
x86_64 : iPhone Simulator | |
arm64 : iPhone Simulator | |
iPhone1,1 : iPhone | |
iPhone1,2 : iPhone 3G | |
iPhone2,1 : iPhone 3GS | |
iPhone3,1 : iPhone 4 | |
iPhone3,2 : iPhone 4 GSM Rev A | |
iPhone3,3 : iPhone 4 CDMA | |
iPhone4,1 : iPhone 4S |
Recent releases have been pre-built using cross-compilers and this script and are downloadable below.
If you have found these packages useful, give me a shout out on twitter: @adammw
by fcicq, CC-BY
SmartMachine 是 Joyent 家的虚拟化方案.
SmartOS 主要的卖点是 ZFS + DTrace + Zones (SmartMachine) + KVM (运行 Linux, Windows 等).
实际上 SmartOS 是 Joyent 以 Solaris 为基础 (因为 OpenSolaris 项目被中止而改名 illumos) 打包的操作系统.
SmartOS 作为 HOST 时, 虽然支持 KVM 虚拟化, 但不支持突发的 vCPU.
而 SmartMachine 是基于 Zones 的 (存储则是 ZFS), 比较类似 Linux 平台下 OpenVZ 或者 LXC 的方案.
资源用量由调度器决定, 只需要修改配额 (ZFS 也支持在线扩展) 就可以伸缩, 所以伸缩不需要重启.
#!/bin/bash | |
set -e | |
set -o errtrace | |
node_version="0.10.20" | |
source_bundle="http://nodejs.org/dist/v${node_version}/node-v${node_version}.tar.gz" | |
# store the location of the base working area. |
在前两节中,我们安装完Git后,创建并备份了公钥,这篇教程让我们在使用 Git 时更加得心应手。
/** | |
* Autoprefixer 测试用例 | |
* @author: 一丝 | |
* @update: 2014-2-21 11:26:44; | |
*/ | |
/* ========================================================================== | |
常用属性测试 | |
========================================================================== */ |
var benchmarks = require('beautify-benchmark'); | |
var Benchmark = require('benchmark'); | |
var thunkify = require('thunkify'); | |
var zlib = require('zlib'); | |
var co = require('co'); | |
var fs = require('fs'); | |
var gzipPromise = require('mz/zlib').gzip; | |
var gzipThunk = thunkify(zlib.gzip); | |
var fsPromise = require('mz/fs'); |