-
Run the command:
python pixiv_auth.py login
This will open the browser with Pixiv login page.
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
| # encrypt | |
| tar cz my_folder/ | openssl enc -aes-256-cbc -e > encrypted.tar.gz.enc | |
| # decrypt | |
| openssl aes-256-cbc -d -in encrypted.tar.gz.enc | tar xz |
| Service | SSL | status | Response Type | Allowed methods | Allowed headers |
|---|
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
| -- ------------------------------- | |
| -- Watcher for changes of init.lua | |
| -- ------------------------------- | |
| function reloadConfig(files) | |
| doReload = false | |
| for _,file in pairs(files) do | |
| if file:sub(-4) == ".lua" then | |
| doReload = true | |
| end | |
| end |
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
| #!/bin/bash | |
| # Time-stamp: <Tue 2021-08-31 14:26 svarrette> | |
| ################################################################################ | |
| # Pre-commit hook to avoid accidentally adding unencrypted files with | |
| # [git-crypt](https://www.agwa.name/projects/git-crypt/) | |
| # Fix to [Issue #45](https://github.com/AGWA/git-crypt/issues/45) | |
| # | |
| # Usage: | |
| # $ cd /path/to/repository | |
| # $ git-crypt init |
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
| #! /usr/bin/python | |
| # -*- coding: utf-8 -*- | |
| # @author weishu @2015/12/7 | |
| import subprocess | |
| import os | |
| import re | |
| import json |
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
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| # Author: p0we7 | |
| # Email : i@iu.vc | |
| def handle_import_error(): | |
| print '\n' + "Import Error:" | |
| print 'Please install the required 3rd-party modules ' + '\033[4;95m' + 'requests' + '\033[0m' + '\n' | |
| import sys | |
| sys.exit() |
- Modify index.txt with your output path and proxy info
- Use Text Builder to build configuration for Surge:
$ text-builder -index /path/to/index.txtOr run$ sh build-allto build all your index files. - Import configuration via AirDrop/iTunes/Dropbox/iCloud
本人不提供任何保证和技术支持,使用者自负风险。
There are no guarantees, no any support. Use it at your own risk.
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
| /** | |
| * @module describe-it | |
| * | |
| * This module defines global variables to provide unit test case runner functions compatible with mocha and jasmine. | |
| * The codebase is written for brevity and facilitate being as lightweight as possible. | |
| * | |
| * The code is intended to be included in Postman Test Sandbox. | |
| */ | |
| /** |
NewerOlder