摘要:
禁用原来的FreeBSD.conf # ee /etc/pkg/FreeBSD.conf 将 enabled: yes 改为 enabled: no 保存(ESC, 然后 a → a)即可 创建另外一个 FreeBSD.conf # mkdir -p /usr/local/etc/pkg/repos 阅读全文
该文被密码保护。 阅读全文
摘要:
C #include <stdio.h> int main(void) { FILE *fptr = fopen("ip.txt", "w"); for(int k=1; k<255; k++){ for(int j=1; j<255; j++){ for(int i=1; i<255; i++){ 阅读全文
摘要:
打开vim vim 进入vim命令模式 :help usr_toc.txt 你可以查询 usr_01.txt 到 usr_90.txt :help usr_01.txt ... :help usr_90.txt 阅读全文
摘要:
Poor Economics - social experiments to fight poverty 中文翻译为 贫穷的本质,我认为翻译对抗贫穷更好一些。 援助与GDP Q1: Can aid end poverty? 下图是援助的资金(蓝色柱状)和非洲GDP(红色线条)的关系,似乎援助对非洲G 阅读全文
摘要:
可移除的方式嵌入字幕 MP4 方法一: ffmpeg -i infile.mp4 -i infile.srt -c copy -c:s mov_text outfile.mp4 方法二: ffmpeg -i input.mp4 -sub_charenc 'UTF-8' -f srt -i input 阅读全文