原文链接:https://gist.github.com/lattner/31ed37682ef1576b16bca1432ea9f782
作者: Chris Lattner
| #!/usr/bin/env bash | |
| # Download metadata, modify these as your needs. | |
| ## The directory to save the downloaded files. | |
| download_directory="/volume1/Download/EPUB" | |
| ## The website you want to visit. | |
| calibre_site="http://soulseeker.myds.me:25788" | |
| ## The formats you want to download. We only download the first present format. | |
| ## All the formats should be upper case. | |
| allow_formats=( EPUB MOBI AZW3 ) |
| // | |
| // Created by はるふ on 2017/12/11. | |
| // Copyright © 2017年 ha1f. All rights reserved. | |
| // | |
| import Foundation | |
| import CoreImage | |
| import AVFoundation | |
| extension CIFilter { |
| { | |
| "presets": [ | |
| "es2015" | |
| ], | |
| "plugins": [ | |
| "syntax-jsx", | |
| ["transform-react-jsx", {"pragma": "html"}], | |
| "transform-function-bind", | |
| ["babel-root-import", { | |
| "rootPathSuffix": "client/" |
| /* | |
| countUp.js | |
| Created by @inorganik | |
| Modified for TypeScript by @Ionaru | |
| */ | |
| export interface CountUpOptions { | |
| // All options are optional | |
| useEasing?: boolean; // Whether to use easing or not, default: true |
| license: gpl-3.0 |
| # This is a template .gitignore file for git-managed WordPress projects. | |
| # | |
| # Fact: you don't want WordPress core files, or your server-specific | |
| # configuration files etc., in your project's repository. You just don't. | |
| # | |
| # Solution: stick this file up your repository root (which it assumes is | |
| # also the WordPress root directory) and add exceptions for any plugins, | |
| # themes, and other directories that should be under version control. | |
| # | |
| # See the comments below for more info on how to add exceptions for your |