├── .github ├── CODE_TEMPLATE │ ├── document-template.md │ └── report-template.md └── ISSUE_TEMPLATE │ ├── discussion-template.md │ ├── meetup-template.md │ ├── question-template.md │ ├── report-template.md │ └── task-template.md ├── .gitignore ├── LICENSE ├── README.md └── meeting ├── 210425.md ├── 210511-DatabaseTemplate.xls ├── 210512.md └── 210608.md /.github/CODE_TEMPLATE/document-template.md: -------------------------------------------------------------------------------- 1 | # 文档标题 2 | 3 | ## 1. 摘要 4 | 5 | 好摘要让读者一目了然,快速获取重点。 6 | 7 | ## 6. Reference(重要) 8 | 9 | 提供相应资料、资源、索引,让读者可快速访问、调取。 10 | 11 | ## 7. ChangeLog(重要) 12 | 13 | - 190101 XX 完成初稿 14 | -------------------------------------------------------------------------------- /.github/CODE_TEMPLATE/report-template.md: -------------------------------------------------------------------------------- 1 | # 标题 2 | 3 | ## 0. 目录(可选) 4 | 5 | ## 1. 摘要 6 | 7 | 好摘要让读者一目了然,快速获取重点。 8 | 9 | ## 2. 背景 10 | 11 | 背景说明是解释报告由来、题目设置等必要的背景信息,方便读者快速代入情境。如果你的报告在其它环境被陌生人看到,对方也能快速明白为什么会有这份报告、报告主要解决什么问题,就算写清晰啦。 12 | 13 | 严格的背景说明应按 5W1H 分析法描述 —— 对象 (What)、场所 (Where)、时间和程序 (When)、人员 (Who)、为什么(Why)、方式 (How)。一个完整的背景说明如下: 14 | 15 | - xx 18 年 4 月参与「信息分析」课程,这是完成第 x 周任务分析题目后,撰写的「信息分析」报告。 16 | - 题目具体内容是:(补充相应信息)。 17 | - 接下来,我将从分析背景、思路与分析步骤、主要结论、进一步讨论、参考文献等 5 个方面,展示我的探索过程。 18 | 19 | 具体情境下,可适当裁剪。 20 | 21 | ## 3. 分析过程 22 | 23 | 整份报告最核心关键的部分,好的分析过程能使读者完整复现你的过程及思考。完整复杂的信息分析步骤应包含:思路、步骤、相应推理过程。简单的信息分析任务,只需要呈现关键步骤即可。描述此部分内容,需格外注意: 24 | 25 | - 明确告知检索使用的关键词 / 检索式 26 | - 明确告知涉及的网站及工具 27 | - 附上关键步骤截图及链接,在截图中使用线条、箭头标记关键信息更佳 28 | - 告知重要的转折点 / 推论,以便读者跟上你的思路 29 | - 使用有序列表标记步骤,会使文章更有条理。 30 | 31 | ### 3.1 思路一 32 | 33 | 介绍主要思路与步骤,能使读者完整复现。增补关键步骤截图及链接,能让读者更轻松跟上你的思路。 34 | 35 | ### 3.2 思路二 36 | 37 | ### 3.3 具体操作 38 | 39 | ## 4. 结论 40 | 41 | 若有详细到位的分析,结论水到渠成。结论只需应实事求陈述,逐条列出。实验结果应诚实,不能随意修改。 42 | 43 | 使用图表更直观表述你的答案,会使报告更赏心悦目。 44 | 45 | ## 5. 讨论 46 | 47 | 这是整个学习过程非常关键的一步:元认知。你将反思整个过程、结论,探索其它可能情况。此部分也是全文可发挥空间最大的一部分,希望看到你的精彩思考哦~ 48 | 49 | 可包含以下内容: 50 | 51 | - 对结论的讨论:可能存在哪些偏差、结果何时会失效、是否认同结论、是否存在其它可能 52 | - 对检索过程的反思:哪里可以优化、有哪些收获 53 | - 给他人的建议:可综合上述提供一些建议,让他人少走弯路 ;) 54 | 55 | 其实,最佳情况就是在搜索过程中不要被各种新信息的刺激带着走,保持警惕。 56 | 57 | ### 5.1 对结论的讨论 58 | 59 | 可能存在偏差、结果何时会失效、是否认同结论、是否存在其它可能。 60 | 61 | ### 5.2 可优化的环节 62 | 63 | ### 5.3 收集到的工具 64 | 65 | ### 5.4 把问题推向无穷 66 | 67 | ## 6. Reference(重要) 68 | 69 | 提供相应资料、资源、索引,让读者可快速访问、调取。 70 | 71 | ## 7. ChangeLog(重要) 72 | 73 | - 190101 XX 完成初稿 74 | 75 | 这里记录报告版本迭代。 76 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/discussion-template.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Discussion Template 3 | about: 开展讨论 4 | title: '' 5 | labels: 讨论 6 | assignees: '' 7 | 8 | --- 9 | 10 | 讨论的触发背景 11 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/meetup-template.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Meetup Template 3 | about: 举行会议 4 | title: '' 5 | labels: 讨论 6 | assignees: '' 7 | 8 | --- 9 | 10 | # 标题(时间 + 主题要点) 11 | 12 | ## 0. 摘要(参与人 + 地点 + 摘要) 13 | 14 | - 参会人 15 | - 地点 16 | - 摘要 17 | 18 | ## 1. 信息点 19 | 20 | ### 话题 1 21 | 22 | - 分享人 23 | - 讨论 24 | - 关键点 25 | - 结论 26 | 27 | ### 话题 1 28 | 29 | - 分享人 30 | - 讨论 31 | - 关键点 32 | - 结论 33 | 34 | ## 2. 行动点(一条尽量只涉及一个人、一件事) 35 | 36 | ## 3. 疑问点(会议没有达成共识的地方、有待确认的地方) 37 | 38 | ## 4. Reference(有助于队友更好地使用本文档的资料链接) 39 | 40 | ## 5. ChangeLog(记录文档修订过程) 41 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question-template.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Question Template 3 | about: 提出问题 4 | title: '' 5 | labels: 提问 6 | assignees: '' 7 | 8 | --- 9 | 10 | (此处所有文字全部可删除) 11 | 12 | 提问时请描述清楚 背景、现象、你的分析、你的解决方案。以下为提问模板,供参考,可根据个人情况删改。 13 | 14 | Title:简要描述你的问题 15 | 16 | ## 背景 17 | 18 | 19 | - 我期待实现的效果/欲达成的目的是: 20 | - 我的系统、版本等环境配置是:(非技术问题请删掉这行) 21 | 22 | 23 | ## 现象 24 | 25 | 我想实现上述效果/目的时,遇到了这样的情况: 26 | 27 | - 输入:……(我做了什么) 28 | - 触发:……(得到什么,最好能附图说明) 29 | - 问题:……(我的困惑) 30 | 31 | ## 分析 32 | 33 | 我已经做了以下尝试: 34 | 35 | - 尝试 0: 36 | - 参考:(请给出检索到的参考文档链接) 37 | - 判断: 38 | - 实验: 39 | - 结论: 40 | - 尝试1: 41 | - …… 42 | 43 | ## 方案 44 | 45 | 我推测可以有以下几种解决方案,请问大家哪种思路正确,或有其它思路建议? @AIWriter/writer005stu 46 | 47 | - 解决思路 0: 48 | - 参考:(请给出检索到的参考文档链接) 49 | - 设想: 50 | - 解决思路 1: 51 | - …… 52 | 53 | 54 | > 注意:问题解决后 55 | 56 | > 1. 你需更新可用的解决方案在首个 comment 中,以便后来的同伴参考 57 | > 2. 顺手点击 Issue 下方右下角 close issue ,归档 58 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/report-template.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Report Template 3 | about: 撰写报告 4 | title: '' 5 | labels: 报告 6 | assignees: '' 7 | 8 | --- 9 | 10 | # 标题 11 | 12 | ## 0. 目录(可选) 13 | 14 | ## 1. 摘要 15 | 16 | 好摘要让读者一目了然,快速获取重点。 17 | 18 | ## 2. 背景 19 | 20 | 背景说明是解释报告由来、题目设置等必要的背景信息,方便读者快速代入情境。如果你的报告在其它环境被陌生人看到,对方也能快速明白为什么会有这份报告、报告主要解决什么问题,就算写清晰啦。 21 | 22 | 严格的背景说明应按 5W1H 分析法描述 —— 对象 (What)、场所 (Where)、时间和程序 (When)、人员 (Who)、为什么(Why)、方式 (How)。一个完整的背景说明如下: 23 | 24 | - xx 18 年 4 月参与「信息分析」课程,这是完成第 x 周任务分析题目后,撰写的「信息分析」报告。 25 | - 题目具体内容是:(补充相应信息)。 26 | - 接下来,我将从分析背景、思路与分析步骤、主要结论、进一步讨论、参考文献等 5 个方面,展示我的探索过程。 27 | 28 | 具体情境下,可适当裁剪。 29 | 30 | ## 3. 分析过程 31 | 32 | 整份报告最核心关键的部分,好的分析过程能使读者完整复现你的过程及思考。完整复杂的信息分析步骤应包含:思路、步骤、相应推理过程。简单的信息分析任务,只需要呈现关键步骤即可。描述此部分内容,需格外注意: 33 | 34 | - 明确告知检索使用的关键词 / 检索式 35 | - 明确告知涉及的网站及工具 36 | - 附上关键步骤截图及链接,在截图中使用线条、箭头标记关键信息更佳 37 | - 告知重要的转折点 / 推论,以便读者跟上你的思路 38 | - 使用有序列表标记步骤,会使文章更有条理。 39 | 40 | ### 3.1 思路一 41 | 42 | 介绍主要思路与步骤,能使读者完整复现。增补关键步骤截图及链接,能让读者更轻松跟上你的思路。 43 | 44 | ### 3.2 思路二 45 | 46 | ### 3.3 具体操作 47 | 48 | ## 4. 结论 49 | 50 | 若有详细到位的分析,结论水到渠成。结论只需应实事求陈述,逐条列出。实验结果应诚实,不能随意修改。 51 | 52 | 使用图表更直观表述你的答案,会使报告更赏心悦目。 53 | 54 | ## 5. 讨论 55 | 56 | 这是整个学习过程非常关键的一步:元认知。你将反思整个过程、结论,探索其它可能情况。此部分也是全文可发挥空间最大的一部分,希望看到你的精彩思考哦~ 57 | 58 | 可包含以下内容: 59 | 60 | - 对结论的讨论:可能存在哪些偏差、结果何时会失效、是否认同结论、是否存在其它可能 61 | - 对检索过程的反思:哪里可以优化、有哪些收获 62 | - 给他人的建议:可综合上述提供一些建议,让他人少走弯路 ;) 63 | 64 | 其实,最佳情况就是在搜索过程中不要被各种新信息的刺激带着走,保持警惕。 65 | 66 | ### 5.1 对结论的讨论 67 | 68 | 可能存在偏差、结果何时会失效、是否认同结论、是否存在其它可能。 69 | 70 | ### 5.2 可优化的环节 71 | 72 | ### 5.3 收集到的工具 73 | 74 | ### 5.4 把问题推向无穷 75 | 76 | ## 6. Reference(重要) 77 | 78 | 提供相应资料、资源、索引,让读者可快速访问、调取。 79 | 80 | ## 7. ChangeLog(重要) 81 | 82 | - 190101 XX 完成初稿 83 | 84 | 这里记录报告版本迭代。 85 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/task-template.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Task Template 3 | about: 公示任务 4 | title: '' 5 | labels: 任务 6 | assignees: Spehhhhh 7 | 8 | --- 9 | 10 | - 任务(下一步行动): 11 | - 截止日期: 12 | - 预计产出:这里存放信息归档后的位置,可以是 Code,也可以是 Wiki。 13 | - 每日进展: 14 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # gitignore 2 | 3 | ## Common 4 | 5 | .resource 6 | .vscode 7 | .obsidian 8 | .idea 9 | .DS_Store 10 | .markdownlint.json 11 | .Ulysses-Group.plist 12 | .Ulysses-Settings.plist 13 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Attribution-ShareAlike 4.0 International 2 | 3 | ======================================================================= 4 | 5 | Creative Commons Corporation ("Creative Commons") is not a law firm and 6 | does not provide legal services or legal advice. Distribution of 7 | Creative Commons public licenses does not create a lawyer-client or 8 | other relationship. Creative Commons makes its licenses and related 9 | information available on an "as-is" basis. Creative Commons gives no 10 | warranties regarding its licenses, any material licensed under their 11 | terms and conditions, or any related information. Creative Commons 12 | disclaims all liability for damages resulting from their use to the 13 | fullest extent possible. 14 | 15 | Using Creative Commons Public Licenses 16 | 17 | Creative Commons public licenses provide a standard set of terms and 18 | conditions that creators and other rights holders may use to share 19 | original works of authorship and other material subject to copyright 20 | and certain other rights specified in the public license below. The 21 | following considerations are for informational purposes only, are not 22 | exhaustive, and do not form part of our licenses. 23 | 24 | Considerations for licensors: Our public licenses are 25 | intended for use by those authorized to give the public 26 | permission to use material in ways otherwise restricted by 27 | copyright and certain other rights. Our licenses are 28 | irrevocable. Licensors should read and understand the terms 29 | and conditions of the license they choose before applying it. 30 | Licensors should also secure all rights necessary before 31 | applying our licenses so that the public can reuse the 32 | material as expected. Licensors should clearly mark any 33 | material not subject to the license. This includes other CC- 34 | licensed material, or material used under an exception or 35 | limitation to copyright. More considerations for licensors: 36 | wiki.creativecommons.org/Considerations_for_licensors 37 | 38 | Considerations for the public: By using one of our public 39 | licenses, a licensor grants the public permission to use the 40 | licensed material under specified terms and conditions. If 41 | the licensor's permission is not necessary for any reason--for 42 | example, because of any applicable exception or limitation to 43 | copyright--then that use is not regulated by the license. Our 44 | licenses grant only permissions under copyright and certain 45 | other rights that a licensor has authority to grant. Use of 46 | the licensed material may still be restricted for other 47 | reasons, including because others have copyright or other 48 | rights in the material. A licensor may make special requests, 49 | such as asking that all changes be marked or described. 50 | Although not required by our licenses, you are encouraged to 51 | respect those requests where reasonable. More_considerations 52 | for the public: 53 | wiki.creativecommons.org/Considerations_for_licensees 54 | 55 | ======================================================================= 56 | 57 | Creative Commons Attribution-ShareAlike 4.0 International Public 58 | License 59 | 60 | By exercising the Licensed Rights (defined below), You accept and agree 61 | to be bound by the terms and conditions of this Creative Commons 62 | Attribution-ShareAlike 4.0 International Public License ("Public 63 | License"). To the extent this Public License may be interpreted as a 64 | contract, You are granted the Licensed Rights in consideration of Your 65 | acceptance of these terms and conditions, and the Licensor grants You 66 | such rights in consideration of benefits the Licensor receives from 67 | making the Licensed Material available under these terms and 68 | conditions. 69 | 70 | 71 | Section 1 -- Definitions. 72 | 73 | a. Adapted Material means material subject to Copyright and Similar 74 | Rights that is derived from or based upon the Licensed Material 75 | and in which the Licensed Material is translated, altered, 76 | arranged, transformed, or otherwise modified in a manner requiring 77 | permission under the Copyright and Similar Rights held by the 78 | Licensor. For purposes of this Public License, where the Licensed 79 | Material is a musical work, performance, or sound recording, 80 | Adapted Material is always produced where the Licensed Material is 81 | synched in timed relation with a moving image. 82 | 83 | b. Adapter's License means the license You apply to Your Copyright 84 | and Similar Rights in Your contributions to Adapted Material in 85 | accordance with the terms and conditions of this Public License. 86 | 87 | c. BY-SA Compatible License means a license listed at 88 | creativecommons.org/compatiblelicenses, approved by Creative 89 | Commons as essentially the equivalent of this Public License. 90 | 91 | d. Copyright and Similar Rights means copyright and/or similar rights 92 | closely related to copyright including, without limitation, 93 | performance, broadcast, sound recording, and Sui Generis Database 94 | Rights, without regard to how the rights are labeled or 95 | categorized. For purposes of this Public License, the rights 96 | specified in Section 2(b)(1)-(2) are not Copyright and Similar 97 | Rights. 98 | 99 | e. Effective Technological Measures means those measures that, in the 100 | absence of proper authority, may not be circumvented under laws 101 | fulfilling obligations under Article 11 of the WIPO Copyright 102 | Treaty adopted on December 20, 1996, and/or similar international 103 | agreements. 104 | 105 | f. Exceptions and Limitations means fair use, fair dealing, and/or 106 | any other exception or limitation to Copyright and Similar Rights 107 | that applies to Your use of the Licensed Material. 108 | 109 | g. License Elements means the license attributes listed in the name 110 | of a Creative Commons Public License. The License Elements of this 111 | Public License are Attribution and ShareAlike. 112 | 113 | h. Licensed Material means the artistic or literary work, database, 114 | or other material to which the Licensor applied this Public 115 | License. 116 | 117 | i. Licensed Rights means the rights granted to You subject to the 118 | terms and conditions of this Public License, which are limited to 119 | all Copyright and Similar Rights that apply to Your use of the 120 | Licensed Material and that the Licensor has authority to license. 121 | 122 | j. Licensor means the individual(s) or entity(ies) granting rights 123 | under this Public License. 124 | 125 | k. Share means to provide material to the public by any means or 126 | process that requires permission under the Licensed Rights, such 127 | as reproduction, public display, public performance, distribution, 128 | dissemination, communication, or importation, and to make material 129 | available to the public including in ways that members of the 130 | public may access the material from a place and at a time 131 | individually chosen by them. 132 | 133 | l. Sui Generis Database Rights means rights other than copyright 134 | resulting from Directive 96/9/EC of the European Parliament and of 135 | the Council of 11 March 1996 on the legal protection of databases, 136 | as amended and/or succeeded, as well as other essentially 137 | equivalent rights anywhere in the world. 138 | 139 | m. You means the individual or entity exercising the Licensed Rights 140 | under this Public License. Your has a corresponding meaning. 141 | 142 | 143 | Section 2 -- Scope. 144 | 145 | a. License grant. 146 | 147 | 1. Subject to the terms and conditions of this Public License, 148 | the Licensor hereby grants You a worldwide, royalty-free, 149 | non-sublicensable, non-exclusive, irrevocable license to 150 | exercise the Licensed Rights in the Licensed Material to: 151 | 152 | a. reproduce and Share the Licensed Material, in whole or 153 | in part; and 154 | 155 | b. produce, reproduce, and Share Adapted Material. 156 | 157 | 2. Exceptions and Limitations. For the avoidance of doubt, where 158 | Exceptions and Limitations apply to Your use, this Public 159 | License does not apply, and You do not need to comply with 160 | its terms and conditions. 161 | 162 | 3. Term. The term of this Public License is specified in Section 163 | 6(a). 164 | 165 | 4. Media and formats; technical modifications allowed. The 166 | Licensor authorizes You to exercise the Licensed Rights in 167 | all media and formats whether now known or hereafter created, 168 | and to make technical modifications necessary to do so. The 169 | Licensor waives and/or agrees not to assert any right or 170 | authority to forbid You from making technical modifications 171 | necessary to exercise the Licensed Rights, including 172 | technical modifications necessary to circumvent Effective 173 | Technological Measures. For purposes of this Public License, 174 | simply making modifications authorized by this Section 2(a) 175 | (4) never produces Adapted Material. 176 | 177 | 5. Downstream recipients. 178 | 179 | a. Offer from the Licensor -- Licensed Material. Every 180 | recipient of the Licensed Material automatically 181 | receives an offer from the Licensor to exercise the 182 | Licensed Rights under the terms and conditions of this 183 | Public License. 184 | 185 | b. Additional offer from the Licensor -- Adapted Material. 186 | Every recipient of Adapted Material from You 187 | automatically receives an offer from the Licensor to 188 | exercise the Licensed Rights in the Adapted Material 189 | under the conditions of the Adapter's License You apply. 190 | 191 | c. No downstream restrictions. You may not offer or impose 192 | any additional or different terms or conditions on, or 193 | apply any Effective Technological Measures to, the 194 | Licensed Material if doing so restricts exercise of the 195 | Licensed Rights by any recipient of the Licensed 196 | Material. 197 | 198 | 6. No endorsement. Nothing in this Public License constitutes or 199 | may be construed as permission to assert or imply that You 200 | are, or that Your use of the Licensed Material is, connected 201 | with, or sponsored, endorsed, or granted official status by, 202 | the Licensor or others designated to receive attribution as 203 | provided in Section 3(a)(1)(A)(i). 204 | 205 | b. Other rights. 206 | 207 | 1. Moral rights, such as the right of integrity, are not 208 | licensed under this Public License, nor are publicity, 209 | privacy, and/or other similar personality rights; however, to 210 | the extent possible, the Licensor waives and/or agrees not to 211 | assert any such rights held by the Licensor to the limited 212 | extent necessary to allow You to exercise the Licensed 213 | Rights, but not otherwise. 214 | 215 | 2. Patent and trademark rights are not licensed under this 216 | Public License. 217 | 218 | 3. To the extent possible, the Licensor waives any right to 219 | collect royalties from You for the exercise of the Licensed 220 | Rights, whether directly or through a collecting society 221 | under any voluntary or waivable statutory or compulsory 222 | licensing scheme. In all other cases the Licensor expressly 223 | reserves any right to collect such royalties. 224 | 225 | 226 | Section 3 -- License Conditions. 227 | 228 | Your exercise of the Licensed Rights is expressly made subject to the 229 | following conditions. 230 | 231 | a. Attribution. 232 | 233 | 1. If You Share the Licensed Material (including in modified 234 | form), You must: 235 | 236 | a. retain the following if it is supplied by the Licensor 237 | with the Licensed Material: 238 | 239 | i. identification of the creator(s) of the Licensed 240 | Material and any others designated to receive 241 | attribution, in any reasonable manner requested by 242 | the Licensor (including by pseudonym if 243 | designated); 244 | 245 | ii. a copyright notice; 246 | 247 | iii. a notice that refers to this Public License; 248 | 249 | iv. a notice that refers to the disclaimer of 250 | warranties; 251 | 252 | v. a URI or hyperlink to the Licensed Material to the 253 | extent reasonably practicable; 254 | 255 | b. indicate if You modified the Licensed Material and 256 | retain an indication of any previous modifications; and 257 | 258 | c. indicate the Licensed Material is licensed under this 259 | Public License, and include the text of, or the URI or 260 | hyperlink to, this Public License. 261 | 262 | 2. You may satisfy the conditions in Section 3(a)(1) in any 263 | reasonable manner based on the medium, means, and context in 264 | which You Share the Licensed Material. For example, it may be 265 | reasonable to satisfy the conditions by providing a URI or 266 | hyperlink to a resource that includes the required 267 | information. 268 | 269 | 3. If requested by the Licensor, You must remove any of the 270 | information required by Section 3(a)(1)(A) to the extent 271 | reasonably practicable. 272 | 273 | b. ShareAlike. 274 | 275 | In addition to the conditions in Section 3(a), if You Share 276 | Adapted Material You produce, the following conditions also apply. 277 | 278 | 1. The Adapter's License You apply must be a Creative Commons 279 | license with the same License Elements, this version or 280 | later, or a BY-SA Compatible License. 281 | 282 | 2. You must include the text of, or the URI or hyperlink to, the 283 | Adapter's License You apply. You may satisfy this condition 284 | in any reasonable manner based on the medium, means, and 285 | context in which You Share Adapted Material. 286 | 287 | 3. You may not offer or impose any additional or different terms 288 | or conditions on, or apply any Effective Technological 289 | Measures to, Adapted Material that restrict exercise of the 290 | rights granted under the Adapter's License You apply. 291 | 292 | 293 | Section 4 -- Sui Generis Database Rights. 294 | 295 | Where the Licensed Rights include Sui Generis Database Rights that 296 | apply to Your use of the Licensed Material: 297 | 298 | a. for the avoidance of doubt, Section 2(a)(1) grants You the right 299 | to extract, reuse, reproduce, and Share all or a substantial 300 | portion of the contents of the database; 301 | 302 | b. if You include all or a substantial portion of the database 303 | contents in a database in which You have Sui Generis Database 304 | Rights, then the database in which You have Sui Generis Database 305 | Rights (but not its individual contents) is Adapted Material, 306 | 307 | including for purposes of Section 3(b); and 308 | c. You must comply with the conditions in Section 3(a) if You Share 309 | all or a substantial portion of the contents of the database. 310 | 311 | For the avoidance of doubt, this Section 4 supplements and does not 312 | replace Your obligations under this Public License where the Licensed 313 | Rights include other Copyright and Similar Rights. 314 | 315 | 316 | Section 5 -- Disclaimer of Warranties and Limitation of Liability. 317 | 318 | a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE 319 | EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS 320 | AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF 321 | ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, 322 | IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, 323 | WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR 324 | PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, 325 | ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT 326 | KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT 327 | ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. 328 | 329 | b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE 330 | TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, 331 | NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, 332 | INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, 333 | COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR 334 | USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN 335 | ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR 336 | DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR 337 | IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. 338 | 339 | c. The disclaimer of warranties and limitation of liability provided 340 | above shall be interpreted in a manner that, to the extent 341 | possible, most closely approximates an absolute disclaimer and 342 | waiver of all liability. 343 | 344 | 345 | Section 6 -- Term and Termination. 346 | 347 | a. This Public License applies for the term of the Copyright and 348 | Similar Rights licensed here. However, if You fail to comply with 349 | this Public License, then Your rights under this Public License 350 | terminate automatically. 351 | 352 | b. Where Your right to use the Licensed Material has terminated under 353 | Section 6(a), it reinstates: 354 | 355 | 1. automatically as of the date the violation is cured, provided 356 | it is cured within 30 days of Your discovery of the 357 | violation; or 358 | 359 | 2. upon express reinstatement by the Licensor. 360 | 361 | For the avoidance of doubt, this Section 6(b) does not affect any 362 | right the Licensor may have to seek remedies for Your violations 363 | of this Public License. 364 | 365 | c. For the avoidance of doubt, the Licensor may also offer the 366 | Licensed Material under separate terms or conditions or stop 367 | distributing the Licensed Material at any time; however, doing so 368 | will not terminate this Public License. 369 | 370 | d. Sections 1, 5, 6, 7, and 8 survive termination of this Public 371 | License. 372 | 373 | 374 | Section 7 -- Other Terms and Conditions. 375 | 376 | a. The Licensor shall not be bound by any additional or different 377 | terms or conditions communicated by You unless expressly agreed. 378 | 379 | b. Any arrangements, understandings, or agreements regarding the 380 | Licensed Material not stated herein are separate from and 381 | independent of the terms and conditions of this Public License. 382 | 383 | 384 | Section 8 -- Interpretation. 385 | 386 | a. For the avoidance of doubt, this Public License does not, and 387 | shall not be interpreted to, reduce, limit, restrict, or impose 388 | conditions on any use of the Licensed Material that could lawfully 389 | be made without permission under this Public License. 390 | 391 | b. To the extent possible, if any provision of this Public License is 392 | deemed unenforceable, it shall be automatically reformed to the 393 | minimum extent necessary to make it enforceable. If the provision 394 | cannot be reformed, it shall be severed from this Public License 395 | without affecting the enforceability of the remaining terms and 396 | conditions. 397 | 398 | c. No term or condition of this Public License will be waived and no 399 | failure to comply consented to unless expressly agreed to by the 400 | Licensor. 401 | 402 | d. Nothing in this Public License constitutes or may be interpreted 403 | as a limitation upon, or waiver of, any privileges and immunities 404 | that apply to the Licensor or You, including from the legal 405 | processes of any jurisdiction or authority. 406 | 407 | 408 | ======================================================================= 409 | 410 | Creative Commons is not a party to its public 411 | licenses. Notwithstanding, Creative Commons may elect to apply one of 412 | its public licenses to material it publishes and in those instances 413 | will be considered the “Licensor.” The text of the Creative Commons 414 | public licenses is dedicated to the public domain under the CC0 Public 415 | Domain Dedication. Except for the limited purpose of indicating that 416 | material is shared under a Creative Commons public license or as 417 | otherwise permitted by the Creative Commons policies published at 418 | creativecommons.org/policies, Creative Commons does not authorize the 419 | use of the trademark "Creative Commons" or any other trademark or logo 420 | of Creative Commons without its prior written consent including, 421 | without limitation, in connection with any unauthorized modifications 422 | to any of its public licenses or any other arrangements, 423 | understandings, or agreements concerning use of licensed material. For 424 | the avoidance of doubt, this paragraph does not form part of the 425 | public licenses. 426 | 427 | Creative Commons may be contacted at creativecommons.org. 428 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 信分基建 🚧 学术数据库 2 | 3 | ## 0. 目录 4 | 5 | - [信分基建 🚧 学术数据库](#信分基建--学术数据库) 6 | - [0. 目录](#0-目录) 7 | - [1. 如何贡献?](#1-如何贡献) 8 | - [1.1 获取权限](#11-获取权限) 9 | - [1.2 你在 2021-05-09 要交付的东西](#12-你在-2021-05-09-要交付的东西) 10 | - [1.3 软件相关教程](#13-软件相关教程) 11 | - [2. 项目目标](#2-项目目标) 12 | - [3. 项目里程碑](#3-项目里程碑) 13 | - [4. 项目节奏](#4-项目节奏) 14 | - [5. 信息流动图](#5-信息流动图) 15 | - [6. 协作工具与绝对坐标](#6-协作工具与绝对坐标) 16 | - [7. 作品展示](#7-作品展示) 17 | - [9. FAQ](#9-faq) 18 | - [ChangeLog](#changelog) 19 | 20 | ## 1. 如何贡献? 21 | 22 | ### 1.1 获取权限 23 | 24 | - PS:在申请权限前,首先确认你已经加入**飞书协作群**; 25 | - 如何获取 Airtable 权限并加入协作? 26 | - 第一步:点击 👉 [链接](https://airtable.com/invite/l?inviteId=invoJ6ldHNf1VwlYE&inviteToken=038892e2a679734dc20545bdb897000bed4f0e816e6dee200d9fe4e8c9ed6adc),注册 Airtable 账户: 27 | - 第二步:注册账户时,姓名和头像需更改为与微信一致: 28 | - 你可以在 Last Name 填入一个空格; 29 | - 然后把你的微信昵称填入 First name 中; 30 | - 第三步,打开 👉 [✔️ 任务追踪表](https://airtable.com/tbl7cdh4nRbSfzxsH/viw6gIMROhVAa0pFH?blocks=hide),选择任务。 31 | - 你可以在 1-100 中的十个小组任选一个加入。然后在小组里面分配任务。 32 | - 第四步,把 [Airtable](https://airtable.com/) 加入你的登山工具的代理里。 33 | - 如何获得 GitHub 权限? 34 | - 你需要注册一个 [GitHub](https://github.com/) 账户,注意昵称与微信群同步。 35 | - 把你的 Email 或者 ID 发给 Alex,他会邀请你加入[本仓库](https://github.com/Spehhhhh/IADB_Scholar)。 36 | 37 | ### 1.2 你在 2021-05-09 要交付的东西 38 | 39 | - 你要把收集到的学者元数据填入 [Airtable 对应表格](https://airtable.com/tblwtq2THyqk1mRmd/viwlBw5W2l9xgFRGB?blocks=hide)。把表格中没有的数据(自然语言)填入其他笔记。 40 | - 你在探索收集中,记录使用的信息源以及行动步骤(放在自己的本地笔记里)。在下一次会议时交流。讨论出一个添加词条的通用步骤。 41 | - 你在探索收集中,积累可以被自动化抓取的元数据(如,谷歌学术作者主页的标签分类) 42 | - 你在探索收集中,思考现有表格的元数据是否科学。 43 | 44 | ### 1.3 软件相关教程 45 | 46 | - GitHub [教程可以参考:HbGitHub](https://github.com/OpenMindClub/Share/wiki/HbGitHub) 47 | - Airtable 教程可以通过检索式 `Airtable site:sspai.com` 48 | 49 | ## 2. 项目目标 50 | 51 | 项目不是什么?简单的人肉爬虫,你需要加入的是信息分析视角挖掘出的反常识信息。 52 | 53 | 所以,我们项目数据框架先不定死。收集前 100 学者,可以带各自的风格。(未来在汇总之后,再定个稳定具体的模板之后,再严格执行) 54 | 55 | 其次,希望大家,在收集元数据时候记录可以自动化的地方。(记录检索清单、记录痛点)记录,如何形成一个学者的最小全局认识(控制在 30 分钟里)。 56 | 57 | ## 3. 项目里程碑 58 | 59 | - `里程碑 1`:建立包含 100 个学者的数据库 60 | - 要确定大时间周期稳定的元数据(空间、时间、变量) 61 | - 要确定添加一个词条的最佳实践。(如何快速准确的信息分析一个学者) 62 | - 思考 3 个使用场景。比如如何展示数据…… 63 | - `里程碑 2`: 建立包含 500 个学者的数据库 64 | - `里程碑 3` 建立包含 1000 个学者的数据库 65 | - 数据源的交叉验证放在项目后期 66 | 67 | ## 4. 项目节奏 68 | 69 | - 任务分工: 70 | 1. 参考会议纪要中的行动点; 71 | 2. 参考[任务分配看板](https://airtable.com/tbl7cdh4nRbSfzxsH/viw6gIMROhVAa0pFH)。 72 | - 本项目有旁观者淘汰机制,2021-05-30 时淘汰不积极参与项目的同学。 73 | 74 | ## 5. 信息流动图 75 | 76 | ```text 77 | 小队微信群/私下会议/独立探索/ ... 任何即时场景中 78 | ^ \ 79 | | +- 触发创想/改进点/卡片创意/疑问点/... 80 | | \ 81 | | *- => Issues 进行具体描述/追踪/讨论/... 82 | ^ / \ +- https://github.com/Spehhhhh/IADB_Scholar/issues 83 | | | \ +- 自动提醒 -> #TODO 需要配置 84 | | ^ +- 定期 腾讯会议/飞书会议 交流嗯哼 85 | | | | +- #TODO 需补充会议号 86 | | ^ +- 定期 Airtable 发布任务 (*wd0 2042) 87 | | | | +- https://airtable.com/tbl7cdh4nRbSfzxsH/viw6gIMROhVAa0pFH 88 | ^ ^ +- 笔记 追踪在 https://github.com/Spehhhhh/IADB_Scholar/ 89 | | | | +- 可以存放在专有 Orphan Branch 中 90 | | | | +- 提交规格 Commit Message 91 | | | | +- 含对应 Issue 标号 92 | | | | / 93 | | +---+-----<---<-+ (将自动匹配增补到对应 Issue 时间线事件中) 94 | | | 95 | ^ +- 知识点/经验/手册 沉淀到 Wiki 在完全配置之前暂放于 Master Branch 96 | | / +- https://github.com/Spehhhhh/IADB_Scholar/wiki 97 | +---<-+ +- https://github.com/Spehhhhh/IADB_Scholar/tree/master 98 | ``` 99 | 100 | ## 6. 协作工具与绝对坐标 101 | 102 | - Airtable 103 | - 用于管理学者数据:[Airtable 数据库](https://airtable.com/tblwtq2THyqk1mRmd/viwlBw5W2l9xgFRGB) 104 | - 用于管理项目进度:[Airtable 任务追踪表](https://airtable.com/tbl7cdh4nRbSfzxsH/viw6gIMROhVAa0pFH) 105 | - GitHub 106 | - 项目文档积累:[GitHub 主页](https://github.com/Spehhhhh/IADB_Scholar) 107 | - 项目维基积累:[GitHub 维基](https://github.com/Spehhhhh/IADB_Scholar/wiki) 108 | - 项目异步讨论:[GitHub Issue](https://github.com/Spehhhhh/IADB_Scholar/issues) 109 | - GitHub 文件结构 110 | - [/README.md](README.md) 一切的入口 111 | - [/meeting](meeting) 存放会议纪要的文件夹 112 | - [/meeting/210405.md](meeting/210425.md) 第一次会议纪要 113 | - 企业微信群 114 | - 项目同步讨论 115 | - 腾讯会议 116 | - 项目同步讨论 117 | 118 | ## 7. 作品展示 119 | 120 | 最终呈现在 [Master Branch](https://github.com/Spehhhhh/IADB_Scholar/tree/master),方式待未定,可能以 Web 作品呈现。 121 | 122 | ## 9. FAQ 123 | 124 | - Airtable 访问慢怎么办? 125 | - 把 https://airtable.com/ 加入你的登山工具的代理里。 126 | - 我不会爬虫会不会不适合这个项目? 127 | - 不会,你只需要有信息分析的热情就行。 128 | 129 | ## ChangeLog 130 | 131 | - 210425 Alex init; 132 | -------------------------------------------------------------------------------- /meeting/210425.md: -------------------------------------------------------------------------------- 1 | # IADB_Scholar 第一次会议纪要 2 | 3 | > 会议中的信息可能有实效性。信息以 [README](https://github.com/Spehhhhh/IADB_Scholar) 为准。 4 | 5 | ## 0. 目录 6 | 7 | - [IADB_Scholar 第一次会议纪要](#iadb_scholar-第一次会议纪要) 8 | - [0. 目录](#0-目录) 9 | - [1. 摘要](#1-摘要) 10 | - [2. 信息点](#2-信息点) 11 | - [2.1 项目是什么?不是什么?](#21-项目是什么不是什么) 12 | - [2.2 项目里程碑](#22-项目里程碑) 13 | - [2.3 协作方式](#23-协作方式) 14 | - [2.4 任务分工、旁观者淘汰机制](#24-任务分工旁观者淘汰机制) 15 | - [3. 行动点](#3-行动点) 16 | - [3.1 ❗ 你如何加入协作?](#31--你如何加入协作) 17 | - [3.2 ❗ 你在 2021-05-09 要交付的东西?](#32--你在-2021-05-09-要交付的东西) 18 | - [3.3 如何获得 GitHub 权限?](#33-如何获得-github-权限) 19 | - [疑问点](#疑问点) 20 | - [ChangeLog](#changelog) 21 | 22 | ## 1. 摘要 23 | 24 | - 人: 25 | - 地点:腾讯会议 26 | 27 | ## 2. 信息点 28 | 29 | ### 2.1 项目是什么?不是什么? 30 | 31 | - 项目不是什么?简单的人肉爬虫,你需要加入的是信息分析视角挖掘出的反常识信息。 32 | - 所以,我们项目数据框架先不定死。收集前 100 学者,可以带各自的风格。(未来在汇总之后,再定个稳定具体的模板之后,再严格执行) 33 | - 所以,希望大家,在收集元数据时候记录可以自动化的地方。(记录检索清单、记录痛点)记录,如何形成一个学者的最小全局认识(控制在 30 分钟里)。 34 | - 你不是爬虫,你是信分学员! 35 | 36 | ### 2.2 项目里程碑 37 | 38 | - 里程碑 1 建立包含 100 个学者的数据库 39 | - 要确定大时间周期稳定的元数据(空间、时间、变量) 40 | - 要确定添加一个词条的最佳实践。(如何快速准确的信息分析一个学者) 41 | - 思考 3 个使用场景。比如如何展示数据, 42 | - 里程碑 2 建立包含 500 个学者的数据库 43 | - 里程碑 3 建立包含 1000 个学者的数据库 44 | - 数据源的交叉验证放在项目后期。 45 | 46 | ### 2.3 协作方式 47 | 48 | - Airtable:用于数据的输入 + 任务分配。 49 | - https://airtable.com/tblwtq2THyqk1mRmd/viwlBw5W2l9xgFRGB 50 | - GitHub:用于积累文档(Code、Wiki) + 异步讨论(Issue)。 51 | - https://github.com/Spehhhhh/IADB_Scholar 52 | 53 | ### 2.4 任务分工、旁观者淘汰机制 54 | 55 | - 任务分工:参考行动点。 56 | - 旁观者淘汰机制:2021-05-30 时淘汰不积极参与项目的同学。 57 | 58 | ## 3. 行动点 59 | 60 | ### 3.1 ❗ 你如何加入协作? 61 | 62 | - 第一步:点击 👇 链接注册 Airtable 账户: 63 | - https://airtable.com/invite/l?inviteId=invoJ6ldHNf1VwlYE&inviteToken=038892e2a679734dc20545bdb897000bed4f0e816e6dee200d9fe4e8c9ed6adc 64 | - 第二步:注册账户时,姓名和头像需更改为与微信一致: 65 | - 你可以在 Last Name 填入一个空格; 66 | - 然后把你的微信昵称填入 First name 中; 67 | - 第三步,打开「✔️ 任务追踪表」 68 | - https://airtable.com/tbl7cdh4nRbSfzxsH/viw6gIMROhVAa0pFH?blocks=hide 69 | - 选择任务。 70 | - 你可以在 1-100 中的十个小组任选一个加入。然后在小组里面分配任务。 71 | - 第四步,把 https://airtable.com/ 加入你的登山工具的代理里。 72 | 73 | ### 3.2 ❗ 你在 2021-05-09 要交付的东西? 74 | 75 | - 你要把收集到的学者元数据填入 https://airtable.com/tblwtq2THyqk1mRmd/viwlBw5W2l9xgFRGB?blocks=hide 表格中。把表格中没有的数据(自然语言)填入其他笔记。 76 | - 你在探索收集中,记录使用的信息源以及行动步骤(放在自己的本地笔记里)。在下一次会议时交流。讨论出一个添加词条的通用步骤。 77 | - 你在探索收集中,积累可以被自动化抓取的元数据(如,谷歌学术作者主页的标签分类) 78 | - 你在探索收集中,思考现有表格的元数据是否科学。 79 | 80 | ### 3.3 如何获得 GitHub 权限? 81 | 82 | - 你需要注册一个账户 https://github.com/ 把昵称与微信群同步。 83 | - 把你的 Email 或者 ID 发给 Alex,他会邀请你加入仓库 https://github.com/Spehhhhh/IADB_Scholar 84 | 85 | ## 疑问点 86 | 87 | - 暂无。 88 | 89 | ## ChangeLog 90 | 91 | - 210425 创建会议纪要 92 | -------------------------------------------------------------------------------- /meeting/210511-DatabaseTemplate.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipruning/IADB/05e5e6fa4bde53aef26f813b315256f412435593/meeting/210511-DatabaseTemplate.xls -------------------------------------------------------------------------------- /meeting/210512.md: -------------------------------------------------------------------------------- 1 | # IADB_Scholar 第二次会议纪要 2 | 3 | ## 1. 摘要 4 | 5 | - 人:信分学术数据库人员 6 | - 地点:飞书会议 7 | 8 | ## 2. 信息点 9 | 10 | ### 2.1 项目目的 11 | 12 | - 最终数据库作为开智产品,在新一期的学术分析中亮相。以后想了解某领域(如材料学)的牛人,只需输入关键词,就可以知道世界上做材料最牛的学者,包括他的工作经历,重要文章,书籍,获得奖项,视频资料,从而形成一个较小的全局认识。 13 | - 前期参与的同学都将作为产品的开发者。 14 | 15 | ### 2.2 项目目标 16 | 17 | - h-index 大于 100 的学者总计 4730 人(基于 2021 年 3 月第一周的数据),平均 h-index 为 123,标准差为 24,学者人数与影响因子成幂律分布。这批学者中 h-index 高于 171(牛人中的牛人)中 261 人,这 261 人需手动搜索,输入相关数据。 18 | - 在手动搜索过程中对各词条的数据来源进行验证,选择最优数据来源。完成后,由 Alex 和船长编程对前 262-1000 位学者进行机器抓取,再人工勘误。 19 | 20 | ### 2.3 学者信息模板介绍 21 | 22 | - 每位学者分为个人简介、主要作品、所获奖项、视频资料和其它,具体可见模板 https://github.com/Spehhhhh/IADB_Scholar/blob/main/meeting/%08210511-%E6%95%B0%E6%8D%AE%E5%BA%93%E6%A8%A1%E6%9D%BF.xls 23 | 24 | ### 2.4 项目进度 25 | 26 | - 5 月底完成前 100 位学者的信息整理; 27 | - 6 月底完成前 261 位学者的信息整理; 28 | 29 | ## 3. 行动点 30 | 31 | ### 3.1 掌握如何填写词条 32 | 33 | - 具体填写方式可以参见 Alex 编写的填写说明 https://github.com/Spehhhhh/IADB_Scholar/wiki/HbDatabaseCooperate ,或者观看本次会议后 20min 的记录。 34 | 35 | ### 3.2 210530 前需完成的任务 36 | 37 | - **前 100 学者的信息整理任务已分配到个人,参见 Airtable,需在本月底完成。** 38 | - 填写过程中出中文名外,一律用英语。 39 | - 作者的学术文章和图书需在 Zotero 中保存,用 APA 格式统一输出,并保留原始文件。 40 | - 每位学者的文章,图书,视频取三个即可。 41 | 42 | ## 疑问点 43 | 44 | - 暂无。 45 | 46 | ## ChangeLog 47 | 48 | - 210512 创建会议纪要; 49 | -------------------------------------------------------------------------------- /meeting/210608.md: -------------------------------------------------------------------------------- 1 | # IADB_Scholar 第三次会议纪要 2 | 3 | ## 1. 摘要 4 | 5 | - 人:信分学术数据库人员 6 | - 地点:飞书会议 7 | 8 | ## 2. 信息点 9 | 10 | ### 2.1 词条问题统计 11 | 12 | - 有的学者出生年月找不到。 13 | 可尝试在谷歌搜索采用时间限制,`学者名 + born + 时间限制` 14 | - 有的学者没有 Wiki 主页,相关信息搜集困难。 15 | 1. 可查找论文尤其是 Review 中的作者的介绍; 16 | 2. 登录 https://weixin.sogou.com ,输入学者名字,查找微信中学者的相关信息。 17 | - 领域采用 Google 标签,还需优化。 18 | 暂时采用谷歌学术标签,假如谷歌学术无标签,可查看个人主页的标签。 19 | - 代表性图书不一定好找,在谷歌学术用 `学者名 + Book` 检索,找不满三本。 20 | 用国外豆瓣 https://www.goodreads.com 检索作者相关作品。 21 | - 奖项不好分类,输入哪些奖项。 22 | 把 Wiki 上的所有获奖全都输入,在学者数据库中单独建一栏,先保证输入数量,后期再做数据清洗。 23 | - 视频不好分类,现在采用 YouTube 上点击比较多的三个作为选择标准。 24 | YouTube 中输入学者名,选择点击较多,时长大于 10min 的视频,以演讲为主,演讲不分类。 25 | - 机构数据库中,颗粒度如何选择。 26 | 机构仅需写到大学,院系无需填入。 27 | - 不确定的信息怎么办。 28 | 不确定的信息记录在「其它笔记」栏; 29 | - 作者的网络图不用填,个人奖项与荣誉不用填。 30 | 31 | ## 3. 行动点 32 | 33 | - 由 Alex 和船长等擅长编程的同学编写程序,利用机器抓取相关条目,6 月底完成。 34 | - 完成机器自动抓取后,组织下一次会议,讨论人工输入的内容,目标在学术分析 3.0 开课前完成前 500 条学者信息的收集。 35 | - 到 6 月底,每位同学完成 2-3 的学者信息录入。 36 | 37 | ## 疑问点 38 | 39 | - 暂无。 40 | 41 | ## ChangeLog 42 | 43 | - 210607 创建会议纪要 44 | --------------------------------------------------------------------------------