- API
- status
- album cover image
- Player control
- next/prev
- seek
- volume(+/-/mute)
- shuffle/repeat mode
- Metadata
- status
- song info/full lyrics
View LIST.md
View fastocr.khotkeys
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
[Data] | |
DataCount=1 | |
[Data_1] | |
Comment=should never see | |
DataCount=5 | |
Enabled=false | |
Name=should never see | |
SystemGroup=2 | |
Type=ACTION_DATA_GROUP |
View windows.py
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 time | |
from winrt.windows.foundation import Uri, TimeSpan | |
from winrt.windows.media import SystemMediaTransportControls, MediaPlaybackStatus, \ | |
SystemMediaTransportControlsDisplayUpdater, MediaPlaybackType, SystemMediaTransportControlsTimelineProperties | |
from winrt.windows.media.playback import MediaPlayer | |
from winrt.windows.storage.streams import RandomAccessStreamReference | |
if __name__ == '__main__': | |
player = MediaPlayer() |
View electron-netease-cloud-music.json
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": "0.9.32", | |
"description": "UNOFFICIAL client for music.163.com . Powered by Electron, Vue, and Muse-UI.", | |
"url": [ | |
"https://github.com/Rocket1184/electron-netease-cloud-music/releases/download/v0.9.32/electron-netease-cloud-music_v0.9.32.asar#/app.asar", | |
"https://npm.taobao.org/mirrors/electron/15.3.0/electron-v15.3.0-win32-x64.zip", | |
"https://raw.githubusercontent.com/Rocket1184/electron-netease-cloud-music/master/assets/icons/icon.ico#/ElectronNCM.ico" | |
], | |
"extract_to": [ | |
"", |
View export.py
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 | |
#*-- coding:utf8 -- | |
import aiohttp | |
import asyncio | |
import json | |
json_str = '' | |
async def main(): | |
session = aiohttp.ClientSession() |
View config.json
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
{ | |
"inbounds": [ | |
{ | |
"tag": "transparent", | |
"port": 1080, | |
"protocol": "dokodemo-door", | |
"settings": { | |
"network": "tcp,udp", | |
"followRedirect": true | |
}, |
View proxy-helper.sh
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 bash | |
# Network presets | |
declare -A address="" | |
declare -A proxy="" | |
adb_connect() { | |
adb start-server | |
connected_devices=$(($(adb devices | wc -l)-2)) | |
if [ $connected_devices = "0" ]; |
View dingtalk_webhook.py
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 | |
#*-- coding: utf-8 --* | |
import json | |
import argparse | |
import time | |
import hmac | |
import hashlib | |
import base64 | |
from urllib import parse, request |
View openpgp.txt
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
This Gist confirms the Linked Identity in my OpenPGP key, and links it to this GitHub account. | |
Token for proof: | |
[Verifying my OpenPGP key: openpgp4fpr:504357523094066c67e56cf58d99aa5cad3908b0] |
View __init__.py
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
# *-- coding: utf-8 --* | |
import logging | |
from .backup import Backup | |
__alias__ = 'FeelUOwn Collection Backup' | |
__version__ = '0.0.1' | |
__feeluown_version__ = '2.3.0' | |
__desc__ = 'Backup FeelUOwn collections with GitHub gist.' |
NewerOlder