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
""" | |
Usage: | |
1. 在 FeelUOwn 中登录网易云 | |
2. fuo exec < t.py | |
""" | |
from fuo_netease import provider | |
from fuocore.models.uri import reverse | |
user = provider._user |
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 | |
init() { | |
readonly min_width=1920 | |
readonly max_width=0 | |
readonly min_height=1080 | |
readonly max_height=0 | |
readonly radio="0.15" | |
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
/** | |
* parse csv from file or string | |
* | |
*/ | |
#ifndef _CSV_PARSER_HPP | |
#define _CSV_PARSER_HPP | |
#include <iostream> | |
#include <string> | |
#include <fstream> |