
Other
J先生的编程笔记
一杯茶,一包烟,一个 BUG 改一天!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
How to Organize Files?
The goal of organizing files is to access files quickly anywhere and anytime. How to Access Files Quickly? A Good Structure We need a structure that makes it easy to find any file or folder quickly. A hierarchical structure is a good choice, almost all mod原创 2020-10-07 00:08:25 · 552 阅读 · 2 评论 -
scanf("3c",&c);
scanf("%3c", &c); My girlfriend CC asked me a question about C programming language today, “What does scanf("%mc", &c) mean?” When I heard this question, I immediately thought that it should r...原创 2020-04-23 11:27:01 · 3057 阅读 · 9 评论 -
LNK1104 cannot open file 'libboost_regex-vc142-mt-gd-x32-1_71.lib'
I was following Boost Getting Started on Windows to learn Boost. I linked the example solution to a Boost library within the Visual Studio IDE the same as 6.1 Link From Within the Visual Studio IDE....原创 2019-11-12 20:52:28 · 1861 阅读 · 0 评论 -
山东大学计算机学院夏令营经验贴.2019
山东大学青岛校区共有 6 个学院,8 个研究所。 计算机科学与技术专业入选了双一流学科,入选学科是数学和数据科学。 招生政策 学硕专业名称为计算机科学技术,专硕专业名称今年改为电子信息,以前叫计算机技术。 博士生 3 篇 CCF A 类论文可提前毕业。 优秀营员 关于夏令营优秀营员评选,通过8号下午以及9号上午实验室参观过程中与导师交流互动,由导师推荐给我们优秀营员,届时将通过学院网...原创 2019-10-16 15:15:29 · 3780 阅读 · 4 评论 -
.gitignore
.DS_Store */.DS_Store转载 2019-04-10 19:27:47 · 143 阅读 · 0 评论 -
Common Math Typesetting in LaTeX
Equation set in LaTeX \begin{equation} X=\left\{ \begin{aligned} 1 \\ 2 \\ \end{aligned} \right. \end{equation} X={12 X=\left\{ \begin{aligned} 1 \\ 2 \\ \end{aligned} \right. X={12 LaTeX 各种命令,符号...原创 2019-04-08 10:03:35 · 368 阅读 · 0 评论 -
Windows 系统新建 .gitignore 文件出现“必须键入文件名”错误的解决办法
Windows 新建 .gitignore 文件报错如下: 创建 gitignore.txt 文件 按住 Shift 键并右键选择 在此处打开命令窗口 执行命令 ren gitignore.txt .gitignore转载 2019-05-14 22:33:03 · 505 阅读 · 0 评论 -
0x80131505
0x80131505转载 2019-04-26 09:33:06 · 1262 阅读 · 0 评论 -
'/' and '\'
/ \ Forward slash Back slash 在unix系统中, 表示目录。由于遵循unix命名,所以在网址(URL)中,/ 表示目录。 在windows系统中,\ 用来表示目录。 In Unix system, / is used to represent the directory. In Windows system and web, \ is used ...原创 2019-04-07 22:32:06 · 140 阅读 · 0 评论