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 python3 | |
# Author : weaming | |
# Mail : [email protected] | |
# Created : 2021-07-12 15:07:12 | |
# 解决以下几个方面的问题:色彩空间、文件压缩、EXIF 处理、水印 | |
import argparse | |
import io | |
import os | |
from PIL import Image |
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
ETHBTC | |
LTCBTC | |
BNBBTC | |
NEOBTC | |
QTUMETH | |
EOSETH | |
SNTETH | |
BNTETH | |
BCCBTC | |
GASBTC |
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
import ( | |
"fmt" | |
"log" | |
"os" | |
"sync" | |
"time" | |
) | |
var KEEP_CALLS = os.Getenv("KEEP_CALLS") != "" |
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
package main | |
import ( | |
"bytes" | |
"encoding/json" | |
"fmt" | |
"time" | |
) | |
type Duration struct { |
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
package main | |
import ( | |
"flag" | |
"fmt" | |
"os" | |
"strings" | |
) | |
type Cli struct { |
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
/* MIT License | |
* | |
* Copyright (c) 2017 Roland Singer [[email protected]] | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining a copy | |
* of this software and associated documentation files (the "Software"), to deal | |
* in the Software without restriction, including without limitation the rights | |
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
* copies of the Software, and to permit persons to whom the Software is | |
* furnished to do so, subject to the following conditions: |
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
where | type | name | sha | remote | |
---|---|---|---|---|---|
local | tag | 0.7.0-rc1 | cd9a8ecfa9d7a810e42717ddc93ae066880d6519 | ||
local | tag | 0.9.1-pre1 | 26ed6af0405b027470b88f893577d35fca9af5bd | ||
local | tag | 1.1.0-pre1 | 8f4ab925fafb7b7d5f565d0561f149d17edbda59 | ||
local | tag | interop.5.13 | d11e375f828526eab2a59fd6fd3db88e3c5cb9d3 | ||
local | tag | interop.6.1 | 06670f4caecc9b37fc4b1467e4447359f92852f0 | ||
local | tag | interop.6.16.0 | bead3bf412954c02ac82e5367e6e9c498a8a897b | ||
local | tag | interop.6.5 | 613226dec59d3ed2a48b228aa8ed5c1ca7cdafe8 | ||
local | tag | interop.6.6 | 4068c9a7d863d56347f3256566889b909d2cc51b | ||
local | tag | interop.6.8 | 96a5e579cfb3fdb67bd2c22b202db3c312928995 |
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
import queue | |
import threading | |
import traceback | |
import sys | |
def map_do(fn, iterable, n=20): | |
from concurrent.futures import ThreadPoolExecutor | |
with ThreadPoolExecutor(n) as executor: |
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
alias gcl='git clone' | |
alias gs='git status' | |
alias gd='git diff' | |
alias gdc='git diff --cached' | |
alias gl='git lg' | |
alias gps='git push -u' | |
alias gconf='vi .git/config' | |
alias gamend='git commit --amend' | |
alias gamendy='git commit --amend --no-edit' | |
alias gback='git reset --hard HEAD~' |
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
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
; #Warn ; Enable warnings to assist with detecting common errors. | |
#SingleInstance Force | |
SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
CapsLock::Esc | |
return |