会员
周边
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
profesor
首页
新随笔
订阅
管理
上一页
1
···
71
72
73
74
75
76
77
78
79
···
88
下一页
2020年10月23日
fedora 32 root password修改
摘要: 安装过程不再提醒设置root password 安装后,如果想登录root账号,通过 sudo -i passwd 来修改(或者叫重新获取吧)root密码
阅读全文
posted @ 2020-10-23 15:04 profesor
阅读(357)
评论(0)
推荐(0)
2020年10月22日
在windows上安装小狼毫 五笔拼音混合输入法,远离国产五笔输入法
摘要: 国产输入法,都会监控记录用户输入的敏感词条,并上传到服务器,侵犯了用户的隐私,但维护了国家安全。 国产输入法的替换,那就非小狼毫莫属了。 先去官网下载并安装最新版的小狼毫输入法,https://rime.im/download/ 下载exe文件后,点击安装。 接下来下载安装词库,两种方式,一种是在线
阅读全文
posted @ 2020-10-22 23:32 profesor
阅读(2175)
评论(0)
推荐(0)
how to install VLC Player on Fedora 32 Workstation
摘要: 1. $ sudo dnf install \ https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm 2. Install VLC $ sudo dnf inst
阅读全文
posted @ 2020-10-22 16:06 profesor
阅读(140)
评论(0)
推荐(0)
2020年10月20日
Centos 8.2 2004镜像地址
摘要: 中科大源: https://mirrors.ustc.edu.cn/centos/8.2.2004/isos/x86_64/ 注:如何更改为科大源: https://mirrors.ustc.edu.cn/help/centos.html 阿里云: http://mirrors.aliyun.com
阅读全文
posted @ 2020-10-20 18:01 profesor
阅读(1385)
评论(0)
推荐(0)
2020年10月19日
Fedora 33 Workstation: x86_64 DVD ISO
摘要: 官方下载页面: https://getfedora.org/en/workstation/download/ 中科大下载页面: https://mirrors.ustc.edu.cn/fedora/releases/33/Workstation/x86_64/iso/ 32版: https://mi
阅读全文
posted @ 2020-10-19 19:15 profesor
阅读(496)
评论(0)
推荐(0)
2020年10月18日
[听力/口语]每天十分鐘回音練習
摘要: 適合做「每天十分鐘回音練習」的建議電視影集:Gilmore Girls, Seinfeld, The Good Wife, Grey's Anatomy, ER, Mad Men, Six Feet Under, Modern Family, West Wing, The Office, Ugly
阅读全文
posted @ 2020-10-18 17:10 profesor
阅读(178)
评论(0)
推荐(0)
2020年7月18日
[C]extern char **environ
摘要: man environ extern char **environ;
阅读全文
posted @ 2020-07-18 22:24 profesor
阅读(229)
评论(0)
推荐(0)
2020年7月10日
[C]Armstrong Number
摘要: // 1234 = 1^4 + 2^4 + 3^4 + 4^4; // 341 = 3^3 + 4^3 + 1^3 // 类似于水仙花数 #include <stdio.h> #include <math.h> int digitCount(int n) { //此函数用于获取整数的位数 int i
阅读全文
posted @ 2020-07-10 10:54 profesor
阅读(147)
评论(0)
推荐(0)
2020年7月9日
[C]struct, union的结合
摘要: #include <stdio.h> typedef union { double math; double phys; double chem; } Score; typedef struct student { char name[10]; int age; Score grade; char
阅读全文
posted @ 2020-07-09 22:46 profesor
阅读(551)
评论(0)
推荐(0)
[C]enum类型
摘要: #include <stdio.h> typedef enum {FALSE, TRUE} Boolean; Boolean isEven(int i) { if ( i % 2 == 0 ) return TRUE; else return FALSE; } int main() { int i
阅读全文
posted @ 2020-07-09 20:46 profesor
阅读(128)
评论(0)
推荐(0)
上一页
1
···
71
72
73
74
75
76
77
78
79
···
88
下一页
公告