主板成本效益 Get link Facebook X Pinterest Email Other Apps - March 23, 2019 主板这东西确实水深。。。盲目的相数真的没有意义,甚至真正使用时,有的用不到。。。 跟CPU一样,多核围观的状态。许多主板CPU供电的部分确实要散热,顶上部分供电soc和核内显卡的部分确实不太需要散热装甲也无所谓,很多人用独显,soc这部分供电确实不需要太多相数。 Get link Facebook X Pinterest Email Other Apps Comments
git 使用小记 - February 11, 2019 一、git安装 我使用linux系统,以linux为例...... `Linux` Debian/Ubuntu : (ubuntu16.04自带git 2.7.4,官网是2.10.1) > $ sudo apt install git git-core ....... 其他Linux发行版本看这里:[ Linux/unix安装git ] `Windows` 下载地址:[ https://git-scm.com/download/win ] github for windows: [ http://windows.github.com/ ] `Mac` 下载地址:[ https://git-scm.com/download/mac ] 二、常见命令 这些是各种场合常见的 Git 命令: ``` > 开始一个工作区(参见:git help tutorial) clone 克隆一个仓库到一个新目录 init 创建一个空的 Git 仓库或重新初始化一个已存在的仓库 > 在当前变更上工作(参见:git help everyday) add 添加文件内容至索引 mv 移动或重命名一个文件、目录或符号链接 reset 重置当前 HEAD 到指定状态 rm 从工作区和索引中删除文件 > 检查历史和状态(参见:git help revisions) bisect 通过二分查找定位引入 bug 的提交 grep 输出和模式匹配的行 log ... Read more
Linux下ape切分并转换为mp3 - February 24, 2019 #转化为flac ffmpeg -i test.ape test.flac # 分割 iconv -f gbk -t utf8 test.cue > test_utf8.cue shntool split -t "%n.%p.%t" -f test.cue -o flac test.flac -d output # flac转为mp3 flac -cd test.flac | lame --preset insane test.mp3 #转化为flac ffmpeg -i test.ape test.flac # 分割 iconv -f gbk -t utf8 test.cue > test_utf8.cue shntool split -t "%n.%p.%t" -f test.cue -o flac test.flac -d output # flac转为mp3 flac -cd test.flac | lame --preset insane test.mp3 也可以flac直接分割成mp3 shntool split -t "%n.%p.%t" -f CD01.cue -o "cust ext=mp3 lame -b 320 - %f" CD01.flac -d output Read more
Comments
Post a Comment