歌单迁移到Spotify
生命在于折腾
最近被推荐了一手 Spotify,音质确实不错,曲库很全,歌曲免费(但非Premium 用户每隔30min会被推送一次广告)。于是决定逐渐放弃已经充了很久绿钻的QQ音乐,转战 Spotify 。
又来到了略显头疼的歌单迁移问题,一番翻找,找到了一位佬做的(可以白嫖的)小工具,还算比较好用,直接贴出原博文,方便日后需要时翻找:
迁移 网易云 / QQ 音乐到 Apple Music, Youtube Music, Spotify | yyrcd
步骤如下:
输入歌单ID
复制生成的文字版歌单
原博文给出的 TunemyMusic 网站不甚好用,推荐使用 Spotlistr ,选择 “Textbox to Spotify” 粘贴文字版歌单即可。可以逐个选择每个歌曲想要的版本,会提供置信度用来参考。
p.s. 另有一位佬用 golang 开发出了一个类似功能的工具,也留个档。
祝迁移顺利!
C/C++头文件
C Header files offer the features like library functions, data types, macros, etc by importing them into the program with the help of a preprocessor directive #include. The .h is the extension of it.
C++常用头文件C++ 标准库头文件 - C++中文 - API参考文档 (apiref.com)
万能头文件:#include <bits/stdc++.h>
数据流输入输出:#include <iostream>
算法类函数:#include <algorithm>
数学函数(max(), min(), sqrt()...):#include <math.h>或#include <cmath>
时间函数:#include <time.h>
字符串操作:#include <string> ...
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post1$ hexo new "My New Post"
More info: Writing
Run server1$ hexo server
More info: Server
Generate static files1$ hexo generate
More info: Generating
Deploy to remote sites1$ hexo deploy
More info: Deployment