This file contains 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
{ | |
"systemVersion" : "10.3.1", | |
"systemName" : "iOS", | |
"model" : "Simulator (iPhone 6s)", | |
"identifiers" : [ | |
"af", | |
"af_NA", | |
"af_ZA", | |
"agq", | |
"agq_CM", |
This file contains 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
\documentclass[ | |
fontset = windowsnew, | |
zihao = -4, | |
linespread = 1.6, | |
oneside % 不设置会输出空白页 | |
]{ctexbook} | |
\usepackage[ | |
a4paper, | |
left = 25mm, % 左装订线 5 mm,仅限单面打印 |
This file contains 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
version: '3' | |
services: | |
FreshRSS: | |
image: linuxserver/freshrss | |
restart: always | |
ports: | |
- 4000:80 | |
volumes: | |
- './FreshRSS:/config' |
This file contains 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
#!/usr/bin/env swift | |
// | |
// PrintBootCampESDInfo.swift | |
// | |
// Created by nuomi1 on 8/5/18. | |
// Copyright © 2018年 nuomi1. All rights reserved. | |
// | |
import Foundation |
This file contains 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
on run {input, parameters} | |
set inputPath to "" | |
repeat with temp in input | |
set inputPath to inputPath & space & quoted form of POSIX path of temp | |
end repeat | |
tell application "Terminal" | |
activate | |
do script "Leanify " & inputPath & " " | |
end tell | |
end run |
This file contains 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
class Dumptorrent < Formula | |
desc "DumpTorrent is a non-interactive text mode program which displays BitTorrent .torrent file information, including size, file names, announce[-list], comment, publisher and info_hash. It can also query (scrape) tracker for current downloader count." | |
homepage "https://sourceforge.net/projects/dumptorrent/" | |
url "https://downloads.sourceforge.net/project/dumptorrent/dumptorrent/1.2/dumptorrent-1.2.tar.gz" | |
sha256 "f583a9a2cac2d9522f98fe3245e2214734ead5bd9b9e017109beb95bd700701c" | |
def install | |
system "make" | |
bin.install "dumptorrent" | |
end |