Skip to content

Instantly share code, notes, and snippets.

@wuliaotc
wuliaotc / t.py
Last active October 28, 2020 05:32 — forked from cosven/t.py
导出网易云音乐歌单到 fuo 文件
"""
Usage:
1. 在 FeelUOwn 中登录网易云
2. fuo exec < t.py
"""
from fuo_netease import provider
from fuocore.models.uri import reverse
user = provider._user
@wuliaotc
wuliaotc / make_wallpaper
Last active November 1, 2020 12:19
收集当前目录所有图片,按照规则筛选可用图片(分辨率,长宽比例),并用md5重命名外文件
#!/bin/bash
init() {
readonly min_width=1920
readonly max_width=0
readonly min_height=1080
readonly max_height=0
readonly radio="0.15"
@wuliaotc
wuliaotc / CsvParser.hpp
Created May 25, 2020 13:32 — forked from ochinchina/CsvParser.hpp
A lightweighted Csv parser in C++ language
/**
* parse csv from file or string
*
*/
#ifndef _CSV_PARSER_HPP
#define _CSV_PARSER_HPP
#include <iostream>
#include <string>
#include <fstream>