- $0.015 per GB/m (at least 680 GB), $0.01 per GB/m for more than 100 TB, $0.006 per GB/m for more than 1 PB.
- git-annex discount: at least 100GB, paid annually)
- attic/borg discount: at least 100 GB, paid annually)
- Remote SSH commands (checksum, mv, cp, rm, tree, dd, etc.) supported
- git
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
i | |
me | |
my | |
myself | |
we | |
our | |
ours | |
ourselves | |
you | |
your |
(一)力挽狂澜的 Ellen Hancock http://history.programmer.com.cn/6727/
(二)Linus Torvalds 的短视 http://history.programmer.com.cn/6617/
(三)Mach 之父 Avie Tevanian http://history.programmer.com.cn/8121/
(四)政客的跨界
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
const fs = require("fs"); | |
const jwt = require("jsonwebtoken"); | |
const privateKey = fs.readFileSync("AuthKey.p8").toString(); | |
const teamId = "ABCDE12345"; | |
const keyId = "ABCDE12345"; | |
const jwtToken = jwt.sign({}, privateKey, { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function isLeapYear(year: number) { | |
return new Date(year, 1, 29).getDate() === 29 | |
} | |
export default isLeapYear |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"key": "cmd+shift+l", | |
"command": "editor.action.insertSnippet", | |
"when": "editorTextFocus", | |
"args": { | |
"snippet": "console.dir(${TM_SELECTED_TEXT}$1, { depth: null })$0;" | |
} | |
} | |
] |