├── .gitignore ├── LICENSE ├── README.md ├── 入学篇 ├── 入学篇.assets │ └── image-20210827224412288.png ├── 入学篇.md ├── 入学篇.png └── 入学篇.xmind ├── 其他 └── 出入校自动报备 │ ├── poster1.png │ ├── poster2.png │ ├── poster3.png │ ├── wechat1.jpg │ ├── wechat2.jpeg │ └── 出入校自动报备——PKUAutoSubmit.md ├── 学习篇 ├── src │ ├── 作业书写演示.mp4 │ ├── 学习篇1.png │ └── 灾难片大赏.png ├── 一些选课、转专业建议.md ├── 如何使用 Word 模板.md ├── 如何白嫖Microsoft 365账号.md ├── 学习篇1.xmind ├── 学习篇1a.md └── 学校打印系统推出web版了!.md ├── 生活篇 ├── PT站介绍及使用教程.md ├── 生活篇1.md ├── 生活篇1.png ├── 生活篇1——电影查找.xmind ├── 生活篇2.assets │ ├── Xnip2021-08-28_20-18-34.png │ └── image-20210828202230993.png └── 生活篇2.md ├── 采购篇 ├── 笔记本推荐贴.md ├── 采购篇1.md ├── 采购篇1.xmind ├── 采购篇2.md ├── 采购篇2.png └── 采购篇2.xmind └── 高阶 └── 黑苹果.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_STORE 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 《初入燕园——技术版》 2 | 3 | ## 写作计划 4 | 5 | - 基础 6 | 1. [入学篇——新生报到前后做点什么好](https://github.com/xiaotianxt/rookie-in-pku/blob/master/入学篇/入学篇.md) 7 | 2. 采购篇1——显著提升大学生活质量的电子设备 8 | 3. [采购篇2——选购合适自己的电脑](https://github.com/xiaotianxt/rookie-in-pku/blob/master/采购篇/采购篇2.md) 9 | 4. [学习篇1a——作业笔记也要酷起来](https://github.com/xiaotianxt/rookie-in-pku/blob/master/学习篇/学习篇1a.md) 10 | - [如何使用Word模板](https://github.com/xiaotianxt/rookie-in-pku/blob/master/学习篇/如何使用Word模板.md) 11 | - [如何白嫖Microsoft 365账号](https://github.com/xiaotianxt/rookie-in-pku/blob/master/学习篇/如何白嫖Microsoft%20365账号.md) 12 | 5. 学习篇2——高效利用搜索引擎获取知识 13 | 6. 学习篇3——英语学习工具及技巧 14 | 7. [生活篇1——电影资源怎么找?PT站简介](https://github.com/xiaotianxt/rookie-in-pku/blob/master/生活篇/生活篇1.md) 15 | - [PT站介绍及使用教程](https://github.com/xiaotianxt/rookie-in-pku/blob/master/生活篇/PT站介绍及使用教程.md) 16 | 8. 生活篇2——你知道校园网其实是千兆吗? 17 | 9. 生活篇3——校园内如何做到多设备高效联动?(Windows--Linux--MacOS--Android--IOS) 18 | - 高阶 19 | 1. 没钱买MacBook的我只好安装黑苹果 20 | 2. 树莓派不仅可以做软路由 21 | 3. Latex和VIM助力学习 22 | - 随笔 23 | 1. [选课、转专业建议](https://github.com/xiaotianxt/rookie-in-pku/blob/master/%E5%AD%A6%E4%B9%A0%E7%AF%87/%E4%B8%80%E4%BA%9B%E9%80%89%E8%AF%BE%E3%80%81%E8%BD%AC%E4%B8%93%E4%B8%9A%E5%BB%BA%E8%AE%AE.md) 24 | 2. [出入校自动报备——PKUAutoSubmit](https://github.com/xiaotianxt/rookie-in-pku/blob/master/%E5%85%B6%E4%BB%96/%E5%87%BA%E5%85%A5%E6%A0%A1%E8%87%AA%E5%8A%A8%E6%8A%A5%E5%A4%87/%E5%87%BA%E5%85%A5%E6%A0%A1%E8%87%AA%E5%8A%A8%E6%8A%A5%E5%A4%87%E2%80%94%E2%80%94PKUAutoSubmit.md) 25 | 26 | ## Lisence 27 | 28 | 期待大家共同完善、核对内容;欢迎转载、修改,但**需注明原作者**,并采用`GNU General Public License v3.0`开源协议。 -------------------------------------------------------------------------------- /入学篇/入学篇.assets/image-20210827224412288.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaotianxt/rookie-in-pku/19b4b18e45e1cf1de696b1fcca685690ca8dfda6/入学篇/入学篇.assets/image-20210827224412288.png -------------------------------------------------------------------------------- /入学篇/入学篇.md: -------------------------------------------------------------------------------- 1 | ## 写在前面 2 | 3 | > 由于微信公众平台会吞外链,欢迎进入github查看,给你更佳的阅读体验。https://github.com/xiaotianxt/rookie-in-pku 4 | 5 | 欢迎各位加入燕园的大家庭! 6 | 7 | 本人已在园子里呆了三年,平日一大爱好就是倒腾电子产品,自认为在**购买、配置计算机**,以及如何**高效利用手头的电子设备**上有一定的见解。 8 | 9 | 在平日生活中,经常会有各式各样的人询问我相关的电脑知识,从如何选购手机、笔记本到如何重装系统,从如何“科学上网”到如何使用媒体编辑软件,从如何备份资料到记笔记用什么软件好…… 10 | 11 | 为了分享自己踩坑的经验(并减轻工作量),我决定编辑一套**《初入燕园(技术版)》**,希望能够帮到各位。本文同时在[Github](https://github.com/xiaotianxt/rookie-in-pku)上面更新,欢迎捧场。 12 | 13 | ## 写作计划 14 | 15 | - 基础 16 | 1. [入学篇——新生报到前后做点什么好](https://github.com/xiaotianxt/rookie-in-pku/blob/master/入学篇/入学篇.md) 17 | 2. 采购篇1——显著提升大学生活质量的电子设备 18 | 3. [采购篇2——选购合适自己的电脑](https://github.com/xiaotianxt/rookie-in-pku/blob/master/采购篇/采购篇2.md) 19 | 4. [学习篇1a——作业笔记也要酷起来](https://github.com/xiaotianxt/rookie-in-pku/blob/master/学习篇/学习篇1a.md) 20 | - [如何使用Word模板](https://github.com/xiaotianxt/rookie-in-pku/blob/master/学习篇/如何使用Word模板.md) 21 | - [如何白嫖Microsoft 365账号](https://github.com/xiaotianxt/rookie-in-pku/blob/master/学习篇/如何白嫖Microsoft%20365账号.md) 22 | 5. 学习篇2——高效利用搜索引擎获取知识 23 | 6. 学习篇3——英语学习工具及技巧 24 | 7. [生活篇1——电影资源怎么找?PT站简介](https://github.com/xiaotianxt/rookie-in-pku/blob/master/生活篇/生活篇1.md) 25 | - [PT站介绍及使用教程](https://github.com/xiaotianxt/rookie-in-pku/blob/master/生活篇/PT站介绍及使用教程.md) 26 | 8. 生活篇2——你知道校园网其实是千兆吗? 27 | 9. 生活篇3——校园内如何做到多设备高效联动?(Windows--Linux--MacOS--Android--IOS) 28 | - 高阶 29 | 1. 没钱买MacBook的我只好安装黑苹果 30 | 2. 树莓派不仅可以做软路由 31 | 3. Latex和VIM助力学习 32 | - 随笔 33 | 1. [选课、转专业建议](https://github.com/xiaotianxt/rookie-in-pku/blob/master/%E5%AD%A6%E4%B9%A0%E7%AF%87/%E4%B8%80%E4%BA%9B%E9%80%89%E8%AF%BE%E3%80%81%E8%BD%AC%E4%B8%93%E4%B8%9A%E5%BB%BA%E8%AE%AE.md) 34 | 2. [出入校自动报备——PKUAutoSubmit](https://github.com/xiaotianxt/rookie-in-pku/blob/master/%E5%85%B6%E4%BB%96/%E5%87%BA%E5%85%A5%E6%A0%A1%E8%87%AA%E5%8A%A8%E6%8A%A5%E5%A4%87/%E5%87%BA%E5%85%A5%E6%A0%A1%E8%87%AA%E5%8A%A8%E6%8A%A5%E5%A4%87%E2%80%94%E2%80%94PKUAutoSubmit.md) 35 | 36 | ------------------------- 37 | 38 | ## 目录 39 | 40 | 1. 从IAAA账号入手,解决密码安全问题 41 | 2. 校园邮箱也可以很酷 42 | 3. BBS与树洞上有许多好康的 43 | 4. 教育优惠让你白嫖千元rmb 44 | 45 | 本期内容为“入学篇——新生报到前后做点什么好”,文章主要面对P大新入学的本科、研究生,或许对大部分老生也有所帮助。 46 | 47 | **在阅读一下内容之前,我默认你已经完整阅读了录取通知书附带的《初入燕园》等资料。** 48 | 49 | -------------- 50 | 51 | ## 从IAAA入手,解决密码安全问题 52 | 53 | 密码的泄露方式可以大致分为两种:一种是**用户端**泄露,如在公有设备上选择了“记住密码”,或被他人窃取手机并获得密码;另一种则是**服务端**泄露,如黑客拖库、撞库导致的密码泄露。无论哪一种,都可以通过合理的密码管理习惯将泄露风险及泄露成本降到最低。 54 | 55 | 北京大学统一身份认证(IAAA)是大家登陆**校内网站**的渠道。介于最近了解到社工库相关内容,并在telegram上看到了人肉搜索的全过程,我认为有必要**提高自己的网络安全意识**(万一你火了呢)。从校园网账号入手,强烈建议大家设置为:**10-12位,英文文大小写+数字+符号混合,并区别于已有密码的新密码。**上述建议同时适用于你的**社交、网银**账户。 56 | 57 | > 20/08/28: 经小伙伴提醒,12位以上的密码会令eduroam无法登陆,因此改为`10-12位,英文文大小写+数字+符号混合,并区别于已有密码` 58 | 59 | 毕竟人脑记忆是有限的,一个合适的密码管理软件在普通人面前就显得非常有必要了。彻彻底底的苹果用户(iPhone-iPad-MacBook三件套),可以打开**设置-头像-iCloud-钥匙串**功能,将密码随时云同步,方便使用。 60 | 61 | ![IMG_C1A34B2FB179-1](https://tva1.sinaimg.cn/large/007S8ZIlly1ghxgbec0j6j31400u07fk.jpg) 62 | 63 | 64 | 65 | 如果你并不属于彻底的苹果用户,那么~~推荐使用[LastPass](https://lastpass.com/),这是一款完全免费,**支持全平台同步**的密码管理软件。~~ 66 | 67 | > 21/8/27: lastpass于今年调整了政策,多平台登陆需要付费,我已上车1password 68 | 69 | ------------------------ 70 | 71 | ## 校园邮箱也可以很酷 72 | 73 | > 20/08/26: 20级以后,新生邮箱后缀改为@stu.pku.edu.cn。 74 | > 75 | > 新生的stu邮箱或许不再是永久使用了,不过更改别名的操作依然有必要。[关于排查整改学校工作邮箱安全隐患的通知](https://xxb.cqupt.edu.cn/info/1035/2641.htm) 这是教育信息化办公室的通知,所以锅至少不能全落在its上。 76 | 77 | 邮箱后缀其实很好理解啊,就是西方常用的`由小至大`命名方式: 78 | 79 | ``` 80 | 学生(stu) < 北大(pku) < 教育(edu) < 中国(cn) 81 | ``` 82 | 83 | ### 设置邮箱别名 84 | 85 | 每当我看到诸如`18000XXXX@pku.edu.cn`的校园邮箱出现在微信群、QQ群以及某些网站的注册邮箱上时,我的心中就会泛起一阵波澜...**直接使用带学号的邮箱完全不建议**,原因如下: 86 | 87 | 1. **安全性差** 注册其他网站时,学号泄露引起各类风险,见树洞`#1654689 #1654743` 88 | 2. **辨识度低** 收件方无法推测出`1800012345@pku.edu.cn`到底是谁,与人联络时略显不尊重。 89 | 90 | 因此**强烈建议大家更改邮箱别名,永不使用学号邮箱**。具体更改方式如下: 91 | 92 | 1. 进入[**北京大学计算中心 its.pku.edu.cn**](its.pku.edu.cn),登陆校园网账号。 93 | 2. ~~点击**设置邮件**~~ 94 | 3. ~~设置**邮件地址**和**邮件别名**,点击保存。~~ 95 | 4. 在**mail.pku.edu.cn**中设置邮箱默认发信账号 96 | ![设置邮箱默认发信账号](https://tva1.sinaimg.cn/large/008i3skNly1gtvqaa25m4j61dk0me41f02.jpg) 97 | 98 | >21/08/27: 目前邮箱别名更改需要发邮件至its@pku.edu.cn进行审核,在校期间只有两次更改机会。 99 | 100 | ### 邮件转发 101 | 102 | 顺便推荐一下微信的**邮件转发功能**,将邮件转发设置为自己的QQ邮箱,并在微信中搜索**QQ邮箱提醒**,可以在微信中立刻接收邮件,比较符合国人习惯。 103 | 104 | wechat 105 | 106 | ------- 107 | 108 | ## BBS与树洞 109 | 110 | ### 简介 111 | 112 | [BBS](https://bbs.pku.edu.cn/v2/home.php)指北大未名论坛,可以通过校园邮箱注册,可以每隔几天登陆查看全站十大,随时吃瓜。 113 | 114 | [树洞](https://pkuhelper.pku.edu.cn/hole/)是校内匿名平台,供平时消遣,经验分享,也是吃瓜爱好者每日必逛的圣地。尽管匿名平台,但**后台可追查**,具有禁言机制,不建议🐛塔。 115 | 116 | ### 你未必知道的BBS隐藏福利 117 | 118 | ##### 翻🧱服务 119 | 120 | [BBS-网络技术板块-XX上网贴](https://bbs.pku.edu.cn/v2/post-read.php?bid=35&threadid=16264150)上有供北京大学生注册的**免费科学上网🧱服务**,项目来自`@hiaoxui`志愿提供,有较为宽裕的流量限制 (2G/天,非热门地区服务节点降权计算),并有针对北大设置的服务器线路和代理规则。对科学上网没有强烈需求的同学可以考虑申请使用。 121 | 122 | ##### 薅羊毛板块 123 | 124 | [薅羊毛](https://bbs.pku.edu.cn/v2/thread.php?bid=1380)板块中有**校园卡套餐推荐**,**信用卡办理**指南等文章,推荐阅读。一张合适的双币信用卡能让你更愉快地在外网畅游。 125 | 126 | > 21/08/27: 如果是办理新卡校园套餐,bbs薅羊毛版代理称可以获得100-200元的返现。 127 | 128 | ### 树洞小技巧 129 | 130 | #### 如何在树洞搜索 131 | 132 | 1. 洞号搜索,直接输入洞号如[**1597013**](https://pkuhelper.pku.edu.cn/hole/##1597013)即可。 133 | 2. 关键词搜索。值得注意的是树洞不提供模糊搜索,因此需要使用**关键词**查询,越少越好。 134 | 135 | 小建议:查询应当多试几个关键词,如`地震概论`, `地概`, `zkc`, `炒股`, `交谊舞`都可以查到有关赵老师地震概论课程的内容,搜索不到再问。 136 | 137 | > 21/08/27: www.pkuhollow.com:未名树洞,由北大同学在青研接管树洞后自发搭建,没有审查、封禁等,支持图片上传、markdown语法等。 138 | 139 | #### 谨言慎行😅 140 | 141 | 平台匿名,但没有完全匿名,涉及敏感话题还是会被抓去喝茶的。 142 | 143 | -------- 144 | 145 | ## 教育优惠白嫖千元正版软件 146 | 147 | ### 正版软件 148 | 149 | 为了办公、科研等需要,学校购入了多款[正版软件](https://software.w.pku.edu.cn/)。常用的诸如`Adobe套件`, `Office`, `VMware`, `Windows`, `Matlab`等。这里重点介绍一下`Adobe套件`和`Windows`系统: 150 | 151 | 截止行文日期`21.8.27`,adobe套件的使用是通过申请`Adobe ID`获得的,你可以在[北京大学正版软件平台](https://software.w.pku.edu.cn/)中点击`Adobe ID申请`。填写个人真实信息,即可收到Adobe激活邮件。下载并安装`Adobe Creative Cloud`即可下载`Photoshop`,` Premiere Pro`,` Illustrator`等多款常用软件。即使你对媒体剪辑没有需求,宇宙最强大的**PDF文件阅读器**`Adobe Acrobat`也可以免费使用。 152 | 153 | > **注意不要直接从软件平台下载Adobe软件,学校已不继续更新。** 154 | 155 | ![image-20200820202117997](https://tva1.sinaimg.cn/large/007S8ZIlly1ghxjmwugfmj31e70u0nkm.jpg) 156 | 157 | 如果你是理科,尤其是CS相关专业,看看你新购买的笔记本是否还停留在`Windows 10 家庭版`?家庭版没有提供`组策略`、`注册表管理器`等常用工具,且本着能嫖则嫖的心态,建议趁资料没有积累前,升级至`Windows 10 教育版`或`Windows 10 专业版`。 158 | 159 | ### 苹果教育优惠 160 | 161 | 苹果为`iPad, MacBook, iMac`等设备向学生及教师提供[教育优惠](https://www.apple.com.cn/cn-k12/shop/back-to-school)。官网下单立减近千元,并附赠`AirPods`二代有线充电款。 162 | 163 | ### JetBrains系列教育计划 164 | 165 | 凭借校园邮箱可以申请使用`JetBrains`全家桶套装,`CS`及相关专业学生可以免费使用`CLion`, `IntelliJ`, `PyCharm`等IDE软件,不嫖白不嫖。 166 | 167 | ### 科学上网 168 | 169 | `https://glados.rocks/education`使用教育账号注册,可以获得一年的科学上网服务。 170 | 171 | 除以上内容,凭借大学生资格还可以获得许多其他优惠,**支付宝-口碑-海底捞大学生69折**等,不过与本文内容无关,详细了解建议搜索。 172 | 173 | ------------ 174 | 175 | ## 结语 176 | 177 | ~~鸽了一整年,嘿嘿~~ 178 | 179 | 刚刚过去的一年,我一方面在对前途渺茫的焦虑中无法自拔,另一方面尝试兼职养活自己。七月保研夏令营结束,终于暂时缓解了焦虑的心情,慢慢填一下去年留的坑。只要我还在燕园读书,《初入燕园|技术篇》就会间歇性更新,欢迎大家批评指正! 180 | 181 | ---------- 182 | 183 | ![扫码关注](https://tva1.sinaimg.cn/large/007S8ZIlly1ghyb3lpf3ej30u00u0gqm.jpg) -------------------------------------------------------------------------------- /入学篇/入学篇.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaotianxt/rookie-in-pku/19b4b18e45e1cf1de696b1fcca685690ca8dfda6/入学篇/入学篇.png -------------------------------------------------------------------------------- /入学篇/入学篇.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaotianxt/rookie-in-pku/19b4b18e45e1cf1de696b1fcca685690ca8dfda6/入学篇/入学篇.xmind -------------------------------------------------------------------------------- /其他/出入校自动报备/poster1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaotianxt/rookie-in-pku/19b4b18e45e1cf1de696b1fcca685690ca8dfda6/其他/出入校自动报备/poster1.png -------------------------------------------------------------------------------- /其他/出入校自动报备/poster2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaotianxt/rookie-in-pku/19b4b18e45e1cf1de696b1fcca685690ca8dfda6/其他/出入校自动报备/poster2.png -------------------------------------------------------------------------------- /其他/出入校自动报备/poster3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaotianxt/rookie-in-pku/19b4b18e45e1cf1de696b1fcca685690ca8dfda6/其他/出入校自动报备/poster3.png -------------------------------------------------------------------------------- /其他/出入校自动报备/wechat1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaotianxt/rookie-in-pku/19b4b18e45e1cf1de696b1fcca685690ca8dfda6/其他/出入校自动报备/wechat1.jpg -------------------------------------------------------------------------------- /其他/出入校自动报备/wechat2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaotianxt/rookie-in-pku/19b4b18e45e1cf1de696b1fcca685690ca8dfda6/其他/出入校自动报备/wechat2.jpeg -------------------------------------------------------------------------------- /其他/出入校自动报备/出入校自动报备——PKUAutoSubmit.md: -------------------------------------------------------------------------------- 1 | ## 项目介绍 2 | 3 | 我都不敢写了,反正就是个出入校自动备案,来自`@Bruuuuuuce`。 4 | 5 | ![image-20201018212758439](https://tva1.sinaimg.cn/large/007S8ZIlly1gjtt4gfhyzj319z0u0dp6.jpg) 6 | 7 |

README

8 | 9 | ![image-20201018212608461](https://tva1.sinaimg.cn/large/007S8ZIlly1gjtt2jdrdmj315k0tmn31.jpg) 10 | 11 |

运行效果

12 | 13 | 我加了一个方糖的Server酱,用于提供报备时的微信通知,所以大家也可以来**@xiaotianxt**康康我的分支。 14 | 15 | ![image-20201018213052828](https://tva1.sinaimg.cn/large/007S8ZIlly1gjtt7gvl6qj31o60hwacy.jpg) 16 | 17 | ![image-20201018213009302](https://tva1.sinaimg.cn/large/007S8ZIlly1gjtt6q7wcsj31p60qcgpa.jpg) 18 | 19 |

微信推送效果

20 | 21 | ## 使用教程 22 | 23 | - 对于**没有`python`基础**或者**怕麻烦**的同学,我发现`@YOUSIKI`提供了`Github Actions`配置,每天自动执行两次。在`Hays Chan`(应该是同一个人)的博客中可以看到详细的使用教程,你可以在后台回复**"出入校"**获得链接,怕麻烦用这个就好。 24 | 25 | - 对于**有`python`基础**的同学,可以直接`clone`对应仓库,按照`README.md`进行配置即可。我已将`@Bruuuuuuce`的仓库链接设为原文链接,你可以点击结尾的阅读原文直接访问。 26 | 27 | ## 结语 28 | 29 | 另外稍微聊两句我对报备的看法,其实学校给出的要求已经十分宽松了,在当天出入后再报备都可以,所以如果可以手动报备还是更好。然而我是个单线程的人,经常把这种比较零碎的事情忘掉,所以还是能少一事更好。 30 | 31 | 如果你觉得文章内容不错,欢迎**关注、分享、点赞、在看**,这会对我帮助很大。 32 | 33 | > 初入燕园下一篇已经在写了在写了在写了开学了我太忙了对不起对不起对不起 34 | 35 | ![扫码_搜索联合传播样式-标准色版](https://tva1.sinaimg.cn/large/007S8ZIlly1gjtts6bf64j31bi0hcacx.jpg) -------------------------------------------------------------------------------- /学习篇/src/作业书写演示.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaotianxt/rookie-in-pku/19b4b18e45e1cf1de696b1fcca685690ca8dfda6/学习篇/src/作业书写演示.mp4 -------------------------------------------------------------------------------- /学习篇/src/学习篇1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaotianxt/rookie-in-pku/19b4b18e45e1cf1de696b1fcca685690ca8dfda6/学习篇/src/学习篇1.png -------------------------------------------------------------------------------- /学习篇/src/灾难片大赏.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaotianxt/rookie-in-pku/19b4b18e45e1cf1de696b1fcca685690ca8dfda6/学习篇/src/灾难片大赏.png -------------------------------------------------------------------------------- /学习篇/一些选课、转专业建议.md: -------------------------------------------------------------------------------- 1 | ## 写在前面 2 | 3 | 这是一些关于选课和转专业的小建议。目的是不让大家面对未知的事物感到发慌。 4 | 5 | > **海淀区最大线上赌场**,每年开张三次,吸引数千位热血青年体验。 6 | > 7 | > 他们孤注一掷,选上的洋洋得意,仿佛忘记了课程越多,期末越累的事实; 8 | > 9 | > 掉课的垂头丧气,~~考虑办理退学手续~~。 10 | 11 | 内容**完全主观**,请结合自己的实际情况。 12 | 13 | 本人不保证完全正确,也不承担一切后果😛。 14 | 15 | ----------- 16 | 17 | ## 选课流程 18 | 19 | 选课大致是这样的: 20 | 21 | 1. **预选**,你将心仪课程加入选课计划,并附加一定的权重预选。 22 | 2. **补退选**,你将不喜欢的课程退掉,并试图补选上其他课程。 23 | 3. **补选**,继续试图补选上其他课程。 24 | 25 | 详细流程可以在**选课网-帮助文档**中查看,这里就不展开了。 26 | 27 | ## 选课建议 28 | 29 | 1. 在预选阶段大胆些,**可以放弃推荐课程**。 30 | 31 | ![image-20200904110941291](https://tva1.sinaimg.cn/large/007S8ZIlly1giefzkh771j30a40mw0u1.jpg) 32 | 33 | 34 | 这是因为绝大部分推荐课程**不会掉课**(当然,信科除外),可以在**补退选阶段**选回来。这样节省出的学分可以给通选、英语、体育课多留些余地。 35 | 36 | ![image-20200904111320808](https://tva1.sinaimg.cn/large/007S8ZIlly1gieg3dq247j31300f4tce.jpg) 37 | 38 |

我目前的离谱选课计划

39 | 40 | 2. **尽量不要把鸡蛋放在一个篮子里。**除非你真的很喜欢,否则不要把99点都砸在一门课上(尤其是太极拳)。99点可以让你有较高的概率选上2-3门通选、英语课程。我现在有点后悔大一上学期把99点砸在了游泳课上。 41 | 3. **善用搜索,问老师问同学问树洞看测评。**你可以在树洞网页版上https://pkuhelper.pku.edu.cn/hole/直接搜索对应课程,看看大家评价。很多人不会提到老师真名,以其首字母替代。如`yjz`, `zkc`等,如果中文搜索不到试试英文。 42 | 43 | image-20200904111935528 44 | 45 |

记得右上角还有测评入口

46 | 47 | 4. **往年题对于大部分课程真的很有帮助。**尤其是专业课、通选课。因为老师每年的授课内容不会有较大差异,所以很难年年都出完全不重合的题型。可以找学长学姐问问往年题。 48 | 49 | ## 掉课了别慌 50 | 51 | 掉课了别放弃,**还有机会**: 52 | 53 | - 去旁听课程,并在第一节课**直接和老师/助教沟通**,手动补选。 54 | 55 | - 找**对应学院教务**,问问未来是否会扩充名额,或直接手动补选。 56 | 57 | - 第一种方法人越少效果越好,第二种方法人越多效果越好。 58 | 59 | ## 奇奇怪怪的传言 / 技巧 60 | 61 | 1. 高数等已经改革为统一考试,那**贴近课本**的老师或许会更好一些? 62 | 2. 听说意愿点设为**质数**,选上的概率会提高?我思索不出道理,但还是写上来。 63 | 3. **买定离手后记得发朋友圈,出结果后再发一条。**选上了自己开心,掉了大家开心。 64 | 65 | ## 想转专业的同学 66 | 67 | 想要**转专业**、或**不喜欢当前专业**的同学,可以看看下面的建议: 68 | 69 | - 明确一下自己到底**能不能转专业**:强基计划等进入的同学不被允许,至于院内/学部互转暂未知。 70 | - **大胆抛弃原专业必修课程**,两个角度: 71 | - 如果目标院系**未要求该课程**,可以放弃 72 | - 如果发现自己并**不喜欢/不擅长**且**打算转专业**,大胆放弃保护绩点,毕竟转专业要看成绩。 73 | - **多问**往届转院成功学生。别怕麻烦,哪怕直接找不到,**间接找也要找**(比如问问学长学姐是否认识相关同学等)。 74 | - 国发院还有二次招生,对经济学感兴趣的可以参加。 75 | 76 | ### 转院的**好处**: 77 | 78 | - 学到了自己真正想学 / 未来更可期的专业。 79 | - 转院目标督促自己未来一年努力学习。 80 | - 收获了两批友谊。 81 | 82 | ### 转院的**劣势**: 83 | 84 | 相比于大一就在该专业的学生,你可能会在社交、学业等方面有更大挑战: 85 | 86 | - 大一缺的课程需要在未来补上。 87 | - 宿舍位置与目标院不同,较难交际。 88 | - 热门专业更难保研。 89 | 90 | ------------ 91 | 92 | ### 个人抉择 93 | 94 | 我起初打算转到信科,因为对计算机报有较大热情,后来发现: 95 | 96 | - 自己没有选修数分。 97 | - 对经济学同时抱有兴趣,转院+修双难以兼顾。 98 | - 我喜欢的好像不是**计算机科学**,是**使用计算机**,二者相似但不相同。 99 | - `CS`方向的线上课程资源多到难以想象。 100 | - 如果把兴趣和学业完全重叠,**那我业余时间到底要做什么**? 101 | 102 | 103 | 所以留在小元培学`gis`。 104 | 105 | image-20200904120038226 106 | 107 |

今年痛失小元培称号,默哀。

108 | 109 | ## 结语 110 | 111 | 大学生活会和之前的所有生活都有较大差异。 112 | 113 | 或许以后没人会催你学习了,但 peer pressure 以及对未来的焦虑会让你接着努力。 114 | 115 | 对了,和老师聊天时,他们大部分都希望你**走学术道路**,所以给你的建议也都朝着这个方向,但是或许你想要 就业 or 创业 or 其他 呢? 116 | 117 | 118 | 119 | 如果你觉得文章内容不错,欢迎**分享、点赞、在看**,这会对我帮助很大。 -------------------------------------------------------------------------------- /学习篇/如何使用 Word 模板.md: -------------------------------------------------------------------------------- 1 | ## 文件下载 2 | 3 | ### 北大网盘地址 4 | 5 | https://disk.pku.edu.cn:443/link/0221E49DF36FBF39BD2B43CB7DD89307 6 | 有效期限:2024-09-06 23:59 7 | 8 | ### 百度网盘地址 9 | 10 | 链接: https://pan.baidu.com/s/12RSEBWdpGp2p7OQmrn9zUw 密码: e9q8 11 | 12 | download 13 | 14 | ### Github地址 15 | 16 | 所有使用到的文件、文档我都会在`Github`中同步更新,你可以在后台回复`初入燕园`获得地址。 17 | 18 | ## DIY学号、姓名 19 | 20 | 双击打开我提供给你的`Normal.dotm`文件,双击`页眉`,编辑为你的学号、姓名。 21 | 22 | 你也可以补充一些适合自己的内容,如加上默认标题,默认签名等。 23 | 24 | 重新保存为`Normal.dotm`文件,注意文件格式是`启用宏的Word模板`。 25 | 26 | ## 设定为Word默认模板 27 | 28 | ### Windows平台 29 | 30 | 打开`C:\Users\*用户名*\AppData\Roaming\Microsoft\Templates` 31 | 32 | 你也许看不到`AppData`, 或是 `Roaming` 文件夹,可以通过勾选“查看”-“隐藏的项目”显示隐藏文件,顺便推荐大家把`文件扩展名`功能一起打开。 33 | 34 | image-20200826154620480 35 | 36 | 删除原有的`Normal.dotm`文件,替换成刚刚保存的文件。 37 | 38 | ### MacOS平台 39 | 40 | 打开`访达Finder` 41 | 使用 **⌘ + ⇧ + G** 42 | 输入`~/Library/Group Containers/UBF8T346G9.Office/User Content.localized/Templates.localized` 前往模板文件夹。 43 | 44 | 将 `Normal.dotm `替换为刚刚保存的文件即可。 45 | 46 | ## 测试使用情况 47 | 48 | 打开Word,选择新建空白文档,看看格式是否正常。 49 | 50 | 我提供了如下几个自定义样式,你可以按需使用: 51 | 52 | - 作业标题 53 | - 作业副标题 54 | - 小节标题 55 | - 正文 56 | - 图片 57 | - 图片/表格 标题 58 | - 作业引用 59 | 60 | ![image-20200826160732039](https://tva1.sinaimg.cn/large/007S8ZIlly1gi4a0pcdnfj30uw0nq7af.jpg) 61 | 62 | ## 结语 63 | 64 | 如果喜欢我的文章,欢迎**关注、点赞、在看、转发**,这会对我帮助很大。 -------------------------------------------------------------------------------- /学习篇/如何白嫖Microsoft 365账号.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 哎! 4 | 5 | > 发文时试了试发现行不通了,猜测是订阅容量已满,但未来说不定可以继续用,所以留在这里。 6 | > 7 | > 这里有个替代方式:**bilibili.com/video/BV15e411x7Ny**,保证可用,但操作有点麻烦。 8 | 9 | ## 写在前面 10 | 11 | ~~我是我在大一时发现的方法,已经使用两年了,但不确定未来是否可用,**请不要将个人文件**同步在该账号下。~~ 12 | 13 | ~~流程可能会涉及到科学上网,因此请确保网络通畅,你可以在[第一篇文章](https://github.com/xiaotianxt/rookie-in-pku/blob/master/入学篇/入学篇.md)中找到科学上网工具。~~ 14 | 15 | ## 使用临时邮箱 16 | 17 | ~~进入[http://24mail.chacuo.net/](http://24mail.chacuo.net/),设置一个你喜欢的邮箱ID,注意尽量**独特、复杂**一些,因为**所有人都能访问**你的邮箱。~~ 18 | 19 | ~~点击`设邮箱`,保存 ID 设置。~~ 20 | 21 | ![Xnip2020-08-26_14-50-32](https://tva1.sinaimg.cn/large/007S8ZIlly1gi4a27o3gdj31fq0u0kgi.jpg) 22 | 23 | ## 注册微软教育账号 24 | 25 | ~~打开[微软教育账号注册页面 https://signup.microsoft.com/signup?sku=student](https://signup.microsoft.com/signup?sku=student),输入你的`邮箱 ID` + `@stu.mao.office.gy`,如`xiaotianpppp@stu.map.office.gy`。~~ 26 | 27 | ~~如果你看到了"你已拥有账户字样",说明你设置的邮箱 ID 已经被注册过了,建议回到上节,更换一个新ID。~~ 28 | 29 | Xnip2020-08-26_14-48-05 30 | 31 | ~~填写必要的注册信息,并忽略所有可以跳过的内容。~~ 32 | 33 | ~~理论上这时你可以直接在右侧点击安装Office,但不幸的是我新注册的账号似乎无法使用,但是如果文章内容不足就无法申请原创,所以我还是留在了这里哈哈哈哈。~~ -------------------------------------------------------------------------------- /学习篇/学习篇1.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaotianxt/rookie-in-pku/19b4b18e45e1cf1de696b1fcca685690ca8dfda6/学习篇/学习篇1.xmind -------------------------------------------------------------------------------- /学习篇/学习篇1a.md: -------------------------------------------------------------------------------- 1 | ## 写在前面 2 | 3 | 最近有点小忙,生活学习工作都占时间,所以咕了若干天。 4 | 5 | 本文涉及到**记笔记**和**写作业**,适用于所有人。看完以下内容,你将得到: 6 | 7 | 1. 大学课程笔记的记录、管理经验。 8 | 2. 一套适合做作业的Word模板,并教你替代原有模板,新建文档即使用。 9 | 3. 白嫖5T Onedrive云存储空间,理论上可以无限容量。 10 | 4. 更优雅地分享、打印文件。 11 | 12 | 我发现文件管理内容比较多,所以把 学习篇1 拆成 **1a** 和 **1b**,方便查看。 13 | 14 | ------------- 15 | 16 | ## 目录 17 | 18 | 1. 记笔记是件值得思考的事情 19 | 2. 这样用Office套件才舒服 20 | 3. 作业提交、打印 21 | 4. 结语 22 | 23 | ## 记笔记是件值得思考的事情 24 | 25 | 记笔记的首要目的是**帮助理解**,**记录是次要的**。一个好的笔记未必是详细的,但能立刻将你召回课堂。 26 | 27 | 从大一开始,我开始使用`OneNote`记笔记。这是一款跨平台,支持同步的笔记本应用,多数同学的`Windows`电脑中都自带了(你可以使用win+S打开搜索框,输入onenote打开)。`MacOS`用户可以在`App Store`下载。 28 | 29 | 在一整个学期的使用中,我发现`OneNote`并没有令我加深对某一知识、概念的理解,原因是**不够直观**。想象这样一个场景: 30 | 31 | > 你边听课,手边放在键盘上,想要记录点什么。 32 | > 老师切了一页PPT,你的手开始飞速敲打,记录了一些关键词或者知识点。 33 | > 下课后,你打开老师发在群里的课件,发现好像也没记到什么有用的。 34 | 35 | 37 | 38 |

OneNote笔记示例

39 | 40 | 41 | 本人是理科生,这个场景在大一上学期频繁出现在我身上,欢迎各位新生两个月后打开这篇推送回味一下。 42 | 43 | 为了加快记笔记的速度,我熟练掌握了许多`OneNote`快捷键,然而这对**理解**知识点并没有多大帮助,反而成为了一种上课的累赘。你需要考虑当前这句话在哪个小节,要不要换行,什么时候用什么颜色,段落缩进是否合适……结果**课也没听爽,笔记也没回看过**。 44 | 45 | 随后我就抛弃巨硬,开始了我的探索,逐渐发现了两种比较适合我的记笔记方案: 46 | 47 | ### 思维导图 48 | 49 | 思维导图是在**逼自己提炼知识点**。提炼的过程就是抽取关键信息的过程,进而达到理解的目的。 50 | 51 | 我尝试了一些主流`mind map`软件,发现`XMind`比较适合我:功能简单直观,快捷键丰富,全平台支持,缺点是太贵。 52 | 53 | 这是课程《遥感概论》中某一节的脑图: 54 | 55 | 57 | 58 |

传感器与成像原理

59 | 60 | 61 | 这是其中某节的内容: 62 | 63 | 65 | 66 |

传感器分辨率

67 | 68 | 69 | 70 | 复习时可以通过**遮挡叶子结点**,检查自己的掌握情况。 71 | 72 | ### 勾画课件 73 | 74 | 绝大部分的课程,**考试范围都限定在课件**,所以复习直接从勾画的课件入手。 75 | 76 | 以下是《中级微观经济学》的课程笔记: 78 | 79 |

国发院王歆老师《中级微观经济学》课件,侵权请联系

80 | 81 | 将课程笔记附加在课件上,可以有效提高课件的阅读效果,但缺点是内容**较为零散,缺乏结构**。 82 | 83 | -------- 84 | 85 | 以上两种方式相辅相成:**课上勾画,复习时做思维导图。** 86 | 87 | 课件勾画的内容是在 iPad 上完成的,我在第一学期结束后果断购买了 iPad 2018,随后赚钱升级到 iPad Air 3,今年趁教育优惠又入手了 iPad Pro,自认为对学习是不错的投资。(这里再次提醒大家**理性消费**,都是自己赚钱买的) 88 | 89 | 唔,好像适合写篇文章讲讲怎么用`iPad`,后续一定写。 90 | 91 | ---------- 92 | 93 | ## 这样用Office套件才舒服 94 | 95 | ### 白嫖Onedrive云空间 96 | 97 | `@pku.edu.cn`邮箱可以免费获得`5T`的云存储空间。你可以在[微软学生注册](https://signup.microsoft.com/signup?sku=student)页面获得`Office 365教育账号`,下载Onedrive即可享用。 98 | 99 | 101 | 102 |

OneDrive截图

103 | 104 | 如果你的资料较多,那还记得[第一篇](https://github.com/xiaotianxt/rookie-in-pku/blob/master/入学篇/入学篇.md)中提到的**邮件别名**功能吗?你可以使用不同的邮件别名注册,获得`15T`的空间;更进一步地,你可以将别名修改为**临时内容**,在微软注册激活后改回,理论上可以获得**无限容量**。(现在够了吗 105 | 106 | 在Word等三件套中,都可以直接登录Onedrive学校账号,将文件自动同步在云端。 107 | 108 | ### 免费的Office 365 109 | 110 | 学校的正版软件平台提供了`Office 2019`,功能凑合,但比不上每月更新的`Microsoft 365`。然而 365 的价格略高,且 OneDrive 个人版服务器架在海外,连接不畅。 111 | 112 | image-20200826144141510 113 | 114 |

Microsoft 365 价格

115 | 116 | 事实上你可以在**后台回复“office”**看到如何免费获得 Microsoft 365 A1订阅。享受`自动保存`、`PPT 非线性动画`等功能, 117 | 118 | ### 作业模板 119 | 120 | `Office`真的让人又爱又恨…… 一款迭代了30年的软件,积累了乱七八糟的**远古代码**,功能复杂,操作繁琐,但又**不得不用**。 121 | 122 | 灾难片大赏 123 | 124 |

你经历过调整word图片的恐惧吗

125 | 126 | 我们来复盘绝大部分同学写作业的场景: 127 | 128 | >打开Word,点击“新建文档”。 129 | > 130 | >

调整字体,调整字号,调整对齐方式,调整字间距,调整行间距,调整段间距,调整页眉页脚,调整页边距……

131 | 132 | 再来看我的流程: 133 | 134 | 135 | 136 | 这份模板提前为你规划好了**页眉、页脚、文本格式、图片格式**等,令你专注于内容输出,你可以将**学号、姓名等信息更改**,打造属于自己的作业模板。 137 | 138 | 同时你还能注意到:无需主动选择模板,**新建空白文本文档即可**,进一步提高了协作效率。 139 | 140 | 你可以在后台回复**word模板**获取该模板,以及设置为默认模板的方法。 141 | 142 |

任何论文都不建议使用word排版, 请学学LaTeX🙏

143 | 144 | 这里分享几张LaTeX敲出来的文档: 145 | 146 | homework_页面_1 147 | 148 | homework_页面_5 149 | 150 | microhomework_页面_2 151 | 152 |

后续会出一篇关于LaTeX的文章

153 | 154 | --------- 155 | 156 | ### 如何避免文件丢失/损坏/忘记保存 157 | 158 | **数据无价**。文件丢失是一件令人绝望的事情,这件悲剧无时无刻发生在我的身边。 159 | 160 | 灾难片大赏 161 | 162 | Office平台其实为你提供了有效的容灾机制。请在**安装好Office套件后**,进行如下操作: 163 | 164 | - **Windows**:点击Word左上角的“文件”-“选项”-“保存”,将“**保存自动恢复信息时间间隔**”设置为**1分钟**,将自动恢复文件目录设置一个方便访问的。 165 | - **MacOS**:打开Word,使用`⌘ + ,`进入偏好设置,将"保存"选项卡中的**"保存自动恢复信息"**启用,间隔设为**1分钟**;在"文件位置"选项卡中,将自动恢复文件设置一个目录,我选择放在`文稿`文件夹下。 166 | 167 | 若遇上文件损坏,你可以在**自动恢复目录**中找到丢失的文件。 168 | 169 | ## 作业提交、打印 170 | 171 | 作业完成后,请另存为**PDF**格式分享!!! 172 | 173 | - Word在不同版本、平台上**排版有差异**,你不会希望助教收到一份公式乱码的作业。 174 | - 使用微信、邮箱发送时,会创建一个可编辑副本,**不易于版本管理**。 175 | - 分享可编辑的文件有**被人恶意破坏**的风险。 176 | 177 | 打印店集中在29号楼楼下,虽然很近但我认为**体验一般**: 178 | 179 | - 打印店人数众多,网络拥挤,体验不佳。 180 | - 必须在其电脑上操作,无论是插U盘、登微信,还是用网盘,上邮箱,都有**隐私泄露**风险。 181 | - 优点是纸张尺寸多样,量大价格优惠。 182 | 183 | 比较推荐的打印去处是**图书馆**。你可以在**北京大学图书馆官网**(lib.pku.edu.cn,校内网站域名都很好猜)中下载打印软件。登陆校园账号,即可**远程打印**,但不支持MacOS系统😭。**BBS**上自15年就有帖子,请求开发Mac版本,至今杳无音讯,呼吁 Mac 用户去**图书馆版**发帖施压。 184 | 185 | ![image-20200828010509305](https://tva1.sinaimg.cn/large/007S8ZIlly1gi5v6ftbadj31fg0u0kjn.jpg) 186 | 187 |

我也是才发现不支持Mac平台

188 | 189 | 我一般选择用图书馆大厅的电脑打印,电脑连接校园内网,可以方便地访问我的宿舍电脑。 190 | 191 | ## 结语 192 | 193 | 还是建议去**GitHub**康康,后台回复**初入燕园**即可。 194 | 195 | 新生朋友们要去军训了,我会出一些偏虚、偏娱乐的文章👌。 196 | 197 | 如果你愿意,欢迎**分享、点赞、在看**,这会对我帮助很大。 -------------------------------------------------------------------------------- /学习篇/学校打印系统推出web版了!.md: -------------------------------------------------------------------------------- 1 | **27号**我在BBS上试图和图书馆对线,然而**28号**就告诉我有web版本的打印管理系统了。 2 | ![img](https://mmbiz.qpic.cn/mmbiz_jpg/kxcF5GSUeehZglTcaAd2dKxS7ibcwhqzXuCKd4MPN6BnXgTv8Cr5OJTmhiaXPdxoCiaaUsGo6GzhwaNqhorPKdsdQ/640?wx_fmt=jpeg) 3 | 4 | 5 | 6 | 当时忘记截图,来自archive.org, 24th July 7 | 8 | 9 | 10 | ![img](https://mmbiz.qpic.cn/mmbiz_jpg/kxcF5GSUeehZglTcaAd2dKxS7ibcwhqzXCLruUqibGqiatGIQ0EXuOicn0cKuA1IJOKcZ4cBibn6FibUqJYldy0rHC1w/640?wx_fmt=jpeg) 11 | 12 | 树洞和BBS上似乎没有相关讨论,我认为可以广而告之一下。 13 | 14 | 在线打印服务网址为cprint.lib.pku.edu.cn,需要在校内网络环境访问,或使用WPN登陆。 15 | 16 | ![img](https://mmbiz.qpic.cn/mmbiz_jpg/kxcF5GSUeehZglTcaAd2dKxS7ibcwhqzXr7kegjCHYW5wEdibC8PEx47I7NjlH1dNFPlxJFrrUm15oD1RoVqwbow/640?wx_fmt=jpeg) 17 | 18 | 19 | 20 | 除了我这么闲,谁会在校外访问打印机? 21 | 22 | 23 | 24 | 打印功能比较基础,仅仅可以改变**颜色、纸型、单双面、份数**等常用参数,所以依然建议大家将文件另存为适合打印的PDF格式。我以某个课件的PDF文档为例: 25 | 26 | ![img](https://mmbiz.qpic.cn/mmbiz_jpg/kxcF5GSUeehZglTcaAd2dKxS7ibcwhqzX5BXtrgtl8HvArG2ujibuOp6ESpjcDpnwJwsx5NeOfh6gLU1Sg4Xqx6g/640?wx_fmt=jpeg) 27 | 28 | 你可以在Powerpoint中先将课件设置为每页多张,随后以PDF的格式导出,再上传到联创网络打印平台。 29 | 30 | **MacOS**可以在打印界面看到类似“存储为PDF”的选项;**Windows**系统直接将**打印机设为Adobe PDF**即可。 31 | 32 | 当你有打印需求时,可以直接在宿舍/教学楼上传文档,去图书馆刷卡打印,免去带电脑、U盘、以及乱七八糟的文件传输方法。 33 | 34 | 35 | 36 | 如果你愿意,欢迎**分享、点赞、在看**,这会对我帮助很大。 -------------------------------------------------------------------------------- /生活篇/PT站介绍及使用教程.md: -------------------------------------------------------------------------------- 1 | ## 先来简单解释一下BT(bittorrent)下载: 2 | 3 | 传统下载方式是**用户连接服务器**下载,如下载应用、接收微信文件等。你所看到的这篇推送,就是从微信服务器下载的,这需要腾讯支付较高的服务器维护成本以及宽带费用。 4 | 5 | 然而对于电影资源,以及其他敏感、涉嫌侵权的资源,主流平台因受到监管,会主动删除,屏蔽此类内容。少数坚挺的站长也会因成本、监管部门查处等威胁,难以长久存续。 6 | 7 | image-20200901213845475 8 | 9 |

传统下载模式(来自回形针paperclip)

10 | 11 | P2P下载巧妙的解决了这一问题:**让人人都成为服务器。**具体来说,只要你的电脑拥有此文件,那么你就可以主动上传,帮助其他用户下载。**用户越多,速度越快。**这也是你在迅雷上同时看到“上传速度”和“下载速度”的原因。P2P下载模式是**开放、共享的**,这也是互联网带给大家的便捷。 12 | 13 | BT下载的精神是 “人人为我,我为人人” ,早期互联网上的 “谢谢楼主” 就是一个非常写实的例子。 14 | 15 | image-20200901215605493 16 | 17 |

BT下载模式(来自回形针paperclip)

18 | 19 | 然而,迅雷是个**吸血**的公司,他们做了如下操作:从**其他客户端**下载,但只上传给**自家的迅雷用户**。这导致非迅雷用户被吸血,速度越来越慢,被逼使用迅雷。 20 | 21 | 形成垄断后,他们推出了付费会员业务,又让**会员吸非会员的血**。 22 | 23 | 与此同时,形成规模的迅雷公司又受到有关部门监管,部分种子、磁力链接被**封禁**,原本开放的BT模式荡然无存。 24 | 25 | ## 高校学生的福利——PT站 26 | 27 | 抛开迅雷,传统的BT下载模式还有一个缺点,那就是用户**没有动力上传**。如果电影看完后就删除,自然无法上传给其他用户。因此,老旧的电影资源会没有速度,因为上传用户全都不在线。 28 | 29 | PT(private torrent)下载就是一个**避免审查**、**激励用户上传**、**相对私密**的资源共享方式。大陆几所高校利用教育网络的优势(有机会展开讲),搭建了多个PT站点。比较著名的有: 30 | 31 | - 北洋园(www.tjupt.org),来自天大,北大邮箱**可注册**(再次提醒不要用学号邮箱!)。 32 | 33 | - 北邮人(bt.byr.cn),来自北邮,北大**已加入高校联盟**(还是我找计算中心老师加入的,快夸我)。 34 | 35 | ![image-20200901235437056](https://tva1.sinaimg.cn/large/007S8ZIlly1gibl8k3b93j31rq05kjst.jpg) 36 | 37 | - 蒲公英(www.npupt.com),来自西工大,暂不开放,**BBS-网络资源版**中有邀请码赠送。 38 | - M-Team(pt.m-team.cc),不清楚来自哪里🤷‍♂️,**BBS-网络资源版**中有邀请码赠送。 39 | - 六维空间(bt.neu6.edu.cn),来自东北大学,暂不开放。 40 | - 葡萄(pt.sjtu.edu.cn),来自上交大,暂不开放。 41 | 42 | 还有很多,就不一一列举了,不开放的网站可以关注**微博**、**BBS-网络资源版**,有机会定期开放注册。 43 | 44 | --------- 45 | 46 | ## 一些规则介绍 47 | 48 | PT 站的模式还是:**我为人人,人人为我**,只不过加入了一些限制措施,如下载量不得大于上传,禁止使用吸血BT软件等。(详见网站) 49 | 50 | ![image-20200902000933171](https://tva1.sinaimg.cn/large/007S8ZIlly1giblo37f79j311o05awg9.jpg) 51 | 52 |

如果上传量<下载量,你将无法下载

53 | 54 | 这样就保证了资源的有效时长,因为**越稀缺的资源**,单个上传方可以获得**更多的流量分成**。(详见网站) 55 | 56 | ------- 57 | 58 | ## 资源下载流程 59 | 60 | 以下内容以北洋园为例,自疫情无法返校以来,北洋园依旧开放校外IPV4访问,并且校外速度还凑合。撰文时没有返校,国外PT站没有普适性。 61 | 62 | 你可以直接进入网站(www.tjupt.org),点击注册跳转至自助邀请系统,使用教育邮箱都可以注册。 63 | 64 | 进入“种子”栏目中搜索资料。**电影、综艺、剧集、资料、动漫、软件**等各类资料均有收录,且影视资源**质量奇高**。 65 | 66 | image-20200902000656466 67 | 68 | 同一电影或许有多个资源,例如**不同分辨率、编码格式**等。你可以按需选择。值得注意的是,有些资源热度较低,可能暂时没有速度,你可以在资源详情页看到做种者最近活动: 69 | 70 | image-20200902003201292 71 | 72 | 我们回到下载本身。点击下载种子即可获得`.torrent`文件,**请不要使用迅雷打开**,这会使你的账号封禁。 73 | 74 | 种子下载软件:`Windows`推荐使用`μTorrent`, `MacOS`推荐使用`Transmission`*。 75 | 76 | 在校内使用,千兆网络下甚至可以跑到`110M/S`。校园网络相关内容会在后续完成。 77 | 78 | > 关于破解软件的下载,你可以在[ 果壳剥壳 ](https://www.ghpym.com/)和[ 歿漂遥 ](https://www.mpyit.com/)找到不错的win软件破解,在[ MacWk ](https://www.macwk.com/)中找到不错的Mac软件破解。 79 | > 80 | > 仍有精力/兴趣的推荐逛逛[ 吾爱破解 ](https://www.52pojie.cn/),需要关注微信公众号,获得网站开放注册时间。 81 | 82 | 下载完成后,请**将文件保留一段时间**。 83 | 84 | 对于主流影视资源,看完电影后放上一天就能回本(指上传流量>文件大小),部分资源在下载时还有折扣(指下载量=文件真实大小*折扣),因此不用担心分享率过低。 85 | 86 | ## PT站不只有电影 87 | 88 | 除了找电影,高校PT站还提供了很多其他资源,如**学校网课、电子书、考试资料等**,这就需要大家自行探索啦。 89 | 90 | image-20200902003600119 91 | 92 |

随便截个图,能看到教学资料、备考相关、外刊分享等

93 | 94 | # 95 | -------------------------------------------------------------------------------- /生活篇/生活篇1.md: -------------------------------------------------------------------------------- 1 | ## 写在前面 2 | 3 | > 英语分级考试不要太在意。 4 | > 5 | > 考的好了,你将收获一门硬核的学术英语写作课程; 6 | > 7 | > 考的不好,你将收获非常有趣的英语特色课程,体验极佳,还能刷绩点,嘿嘿。 8 | 9 | 本篇文章从找电影讲起,教你如何搜索影视、图书、论文等常用资源。 10 | 11 | 12 | 13 | 看完本文,你将获得: 14 | 15 | - 从入门到高手,影视资源获取技巧。 16 | - 关于电子课本、图书以及论文的查找方式。 17 | - 使用Google搜索的Tips。 18 | 19 | 20 | 21 | 注意⚠️:再次提醒2020届及之后的同学,你们的校园邮箱域名是`@stu.pku.edu.cn`,这是一个**临时账户**,会在**毕业时收回**。因此不要用它绑定重要网站,如steam、微信公众号等,且用且珍惜🥺。 22 | 23 | --------- 24 | 25 | # 影视资源 26 | 27 | 我比较喜欢看电影🎬、美剧🎩,尤其喜欢空闲时刷豆瓣Top250。 28 | 29 | 注意:这些方法很难用在刚上映的电影中,建议到影院支持,不观看枪版。对于版权保护严格的资源,部分方法会不适用。 30 | 31 | ## 新手:各大视频网站搜索 32 | 33 | 腾讯、优酷、爱奇艺等视频网站拥有主流影片、综艺资源,每月费用约15元,如果怕麻烦,完全可以购买会员。 34 | 35 | > 小建议:在闲🐟上搜索对应视频会员(可能需要隐晦一些,避免触发屏蔽词),一般有优惠的包年订阅售卖。其他会员(如网易云)同理。 36 | 37 | 本人对综艺节目无感,故对国内视频网站没有兴趣。 38 | 39 | 最近订阅了Netflix,发现体验极佳,网上已经有较多靠谱的会员合租服务,你可以试试搜索**Netflix 会员车**,以约15r/月的价格享受到。(需要科学上网) 40 | 41 | RPReplay_Final1598963128 42 | 43 |

合理的电影分级、舒适的码率画质、精确的影视推荐

44 | 45 | 然而视频网站总会因为版权、审核等限制,导致部分资源无法提供。如果你对订阅内容不满意,那么一起来看看以下内容: 46 | 47 | ## 入门:使用资源网站 48 | 49 | 一些电影资源网站提供了影视内容搜索,但几乎是**个人维护**,游走在**法律边缘**。且由于网站域名(甚至是站长本人)会隔三差五失效,很难提供一套永久有效的网站列表。 50 | 51 | 比较著名的有MP4BA,电影天堂等。优点是多采用**百度云**等常见下载工具传播,缺点是**画质不高**、资源**更新不够及时**。 52 | 53 | image-20200901210523283 54 | 55 |

XX影视通用网站布局

56 | 57 | 你还可以使用诸如**人人影视**、**人人视频**等字幕组维护的网站,拥有移动客户端,但还是受到版权等敏感问题限制。 58 | 59 | ## 专业:使用搜索引擎 60 | 61 | 一个**万能**的方法是,在**Google**、**微博**中尝试搜索如:**“电影名称 + torrent”**,**“电影名称 + 在线”**或 **“电影名称 + 百度云”**,你可以找到绝大部分电影。 62 | 63 | ![orr](https://tva1.sinaimg.cn/large/007S8ZIlly1gibgwj1nvlg30zk0k0b2b.gif) 64 | 65 | 缺点依然是画质。 66 | 67 | ## 骨灰:PT站 68 | 69 | 我希望用通俗易懂的方式向你介绍 PT 下载以及它的优势,但内容较为繁琐,下方是一个精简版本。 70 | 71 | 你可以**在后台回复“PT”**,获得详细的介绍,以及站点的使用方法。如果是初次阅读,请继续看下去。 72 | 73 | ### 高校学生的福利:PT站 74 | 75 | PT(private torrent)下载是一个**避免审查**、**激励用户上传**、**相对私密**的资源共享方式。大陆几所高校利用教育网络的优势(有机会展开讲),搭建了多个PT站点。比较著名的有: 76 | 77 | - 北洋园(www.tjupt.org),来自天大,北大邮箱**可注册**。 78 | 79 | - 北邮人(bt.byr.cn),来自北邮,北大**已加入高校联盟**(还是我找计算中心老师加入的,快夸我)。 80 | 81 | ![image-20200901235437056](https://tva1.sinaimg.cn/large/007S8ZIlly1gibl8k3b93j31rq05kjst.jpg) 82 | 83 | - 蒲公英(www.npupt.com),来自西工大,暂不开放,**BBS-网络资源版**中有邀请码赠送。 84 | - M-Team(pt.m-team.cc),不清楚来自哪里🤷‍♂️,邀请码同上。 85 | 86 | 你可以在PT站中搜索到**更新非常及时**、**质量奇高**、**下载速率爆炸**(尤其校内)的影视资源。 87 | 88 | 注册后,直接在“种子”栏目中搜索你想要的内容:**电影、综艺、剧集、资料、动漫、软件**等各类资料均有收录。 89 | 90 | image-20200902000656466 91 | 92 |

釜山行2不好看👎,两小时广告

93 | 94 | 电影详情页还附有**中英字幕**,免去了上网找字幕的麻烦。 95 | 96 | image-20200902160736500 97 | 98 |

画面内容可能涉嫌侵权,就不放了

99 | 100 | 在校内网络环境下,下载速度可以达到`120M/s`*,两分钟下载电影不是梦。 101 | 102 | 未标题-1 103 | 104 |

120M/s是理论速度,与电脑性能等多种因素有关

105 | 106 | -------- 107 | 108 | 除了电影,高校PT站还提供了很多其他资源,如**学校网课、电子书、考试资料等**,这就需要大家自行探索啦。 109 | 110 | image-20200902003600119 111 | 112 |

随便截个图,能看到教学资料、备考相关、外刊分享等

113 | 114 | -------------- 115 | 116 | # 其他资料 117 | 118 | 我使用PT站主要用于找电影、美剧等。对于其他资源,这里有一些专用的工具: 119 | 120 | ## 通用方法 121 | 122 | 一个通用的方法:**谷歌**,只要是搜索就离不开它。 123 | 124 | > 21/08/27: 基本上 125 | 126 | 我认为电脑端应当24h保持科学上网状态。我在[第一篇](https://github.com/xiaotianxt/rookie-in-pku/blob/master/入学篇/入学篇.md)中提到了`@hiaoxui`为P大学生搭建的科学上网工具,对于翻墙需求低的同学,是足够持续运行在后台的。 127 | 128 | image-20200902121335328 129 | 130 |

这玩意儿还是离远一点

131 | 132 | 搜索引擎的用法相信世人皆知,但有两个命令是我经常使用的: 133 | 134 | ### site:XXX 135 | 136 | 这个命令可以匹配对应的网址,例如我想在`BBS`中查查Office 365的帖子,可以这样: 137 | 138 | image-20200902105658380 139 | 140 | 又例如我想在`v2ex`中查查苹果新品是否值得购买: 141 | 142 | image-20200902105852842 143 | 144 | 绝大部分论坛网站提供的搜索功能都很糟糕。该方法可以有效替代之。 145 | 146 | -------- 147 | 148 | ### filetype:XXX 149 | 150 | 你可以在搜索栏结尾直接加上`filetype:XXX`命令,如`filetype:pdf`,来直接查找对应格式的文件,如: 151 | 152 | image-20200902105221459 153 | 154 | 又或者: 155 | 156 | image-20200902105314165 157 | 158 | 校内无线网络质量一般,在不同AP间移动时很难保证网络通畅。而手机直接使用科学上网服务耗电略高,因此我依然在纠结优化手机的科学上网体验,欢迎后台留言讨论。 159 | 160 | ## 电子书 161 | 162 | 电子书、电子课本几乎是每个大学生的必需品,我会在以下几个网站寻找。 163 | 164 | - [Library Genesis(http://libgen.rs/)](http://libgen.rs/), **无敌**网站,收录了**绝大部分英文电子教材**。 165 | 166 | image-20200902110721365 167 | 168 |

强烈推荐读英文教材,无论什么学科都推荐

169 | 170 | - [全国图书馆参考咨询联盟ucdrs.superlib.net](ucdrs.superlib.net),你几乎能找到所有**中文书籍**,注册之后提供文献传递功能,将扫描件直接发送到邮箱。 171 | 172 | image-20200902111542167 173 | 174 |

注册后才可以使用文献传递功能

175 | 176 | - 北京大学电子教参平台(没有域名162.105.138.126),老师如果和图书馆联系好,就会将教材上传至平台。 177 | 178 | ![image-20200902120003586](https://tva1.sinaimg.cn/large/007S8ZIlgy1gic67dq4jjj31890u0kc5.jpg) 179 | 180 |

但只能在线阅读

181 | 182 | - [鸠摩搜书jiumodiary.com](https://www.jiumodiary.com/),主要查找中文内容。 183 | 184 | ![image-20200902110823302](https://tva1.sinaimg.cn/large/007S8ZIlly1gic4plilylj311z0u0jww.jpg) 185 | 186 | 187 | ## 文献 188 | 189 | 文献查询主要采用两个渠道: 190 | 191 | - lib.pku.edu.cn(北京大学图书馆),直接在首页搜索即可跳转。 192 | 193 | image-20200902114148990 194 | 195 | - scholar.google.com(谷歌学术),搜索算法更优秀。 196 | 197 | image-20200902114054503 198 | 199 |

部分论文网站或许需要校内IP

200 | 201 | 小贴士:你可以点击小星星✨将论文添加至收藏夹,引用时可以批量导出。 202 | 203 | image-20200902114514249 204 | 205 |

提供常见的BibTeX, EndNote等格式

206 | 207 | ## 结语 208 | 209 | 文章太太太太太太太长了,不知道多少人能坚持读完。后续想把内容拆分归并,但先发出来给大家看。 210 | 211 | 欢迎大家在后台和我交流任何内容,并继续推荐`github`,可以在后台回复“初入燕园”获得地址。 212 | 213 | 214 | 215 | 如果你愿意,欢迎**分享、点赞、在看**,对于新生朋友,希望你能**将文章转发到新生群**,这会对我、对大家帮助很大。 -------------------------------------------------------------------------------- /生活篇/生活篇1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaotianxt/rookie-in-pku/19b4b18e45e1cf1de696b1fcca685690ca8dfda6/生活篇/生活篇1.png -------------------------------------------------------------------------------- /生活篇/生活篇1——电影查找.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaotianxt/rookie-in-pku/19b4b18e45e1cf1de696b1fcca685690ca8dfda6/生活篇/生活篇1——电影查找.xmind -------------------------------------------------------------------------------- /生活篇/生活篇2.assets/Xnip2021-08-28_20-18-34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaotianxt/rookie-in-pku/19b4b18e45e1cf1de696b1fcca685690ca8dfda6/生活篇/生活篇2.assets/Xnip2021-08-28_20-18-34.png -------------------------------------------------------------------------------- /生活篇/生活篇2.assets/image-20210828202230993.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaotianxt/rookie-in-pku/19b4b18e45e1cf1de696b1fcca685690ca8dfda6/生活篇/生活篇2.assets/image-20210828202230993.png -------------------------------------------------------------------------------- /生活篇/生活篇2.md: -------------------------------------------------------------------------------- 1 | ## 写在前面 2 | 3 | 随着45甲乙的重新修建,~~所有宿舍~~都是千兆网络环境了,如果你有文件共享、影音娱乐、资料下载等需求,或疑惑自己没有体验到千兆网络,不妨看看这篇文章,体验高速上网的乐趣🐶。 4 | 5 | ## 目录 6 | 7 | - 究竟什么是千兆网络? 8 | - 下载文件为什么不到千兆? 9 | - 是否需要自己购买路由器? 10 | 11 | ## 究竟什么是千兆网络? 12 | 13 | ### 千兆?125MB/s! 14 | 15 | ![image-20210828202230993](生活篇2.assets/image-20210828202230993.png) 16 | 17 |

8月28日晚实测

18 | 19 | 由于单位的不同,要对应日常使用的“网速”,千兆网络(1000Mbps)应当除以8,也即125MB/s,并不是**一秒一个G**。 20 | 21 | > 如果上过计算概论,那么这个概念就很好理解了。1000Mbps指 1000 Megabit *per second*,即1000 / 8 = 125 MegaByte *per second*,所以理论最大下行速率是125MB/s。 22 | 23 | 日常使用或许很难达到这个速度,后文会解释原因。 24 | 25 | ## 下载文件为什么不到千兆? 26 | 27 | 啊哈,这很难回答,首先我们来一起排查一下硬件问题。 28 | 29 | **校内有线网络才是千兆环境**,目前校内的路由普遍提供百兆带宽。即使是新楼的WIFI6路由,也被计算中心限速在百兆以内。想要使用千兆的上网环境,必须 30 | 31 | > ~~关于无线网络的限速,大家进行过一些探索,感兴趣可以后台私信。~~ 32 | 33 | 学校提供的无线网络既不能提供千兆网速,也不能提供低延迟游戏体验。成本最低的办法就使用有线网络 34 | 35 | ### 没有人能用到125MB/s 36 | 37 | 我只有两种情景会触碰到125MB/s的瓶颈:下载正版软件平台资源、用SSD硬盘挂载PT站。即使是主流测速网站,也会由于多种情况 38 | 39 | -------------------------------------------------------------------------------- /采购篇/笔记本推荐贴.md: -------------------------------------------------------------------------------- 1 | > 由于微信平台无法实现实时更新,本人对维护一个笔记本购买列表也没有任何欲望,所以给出几个我认为客观中立第三方的笔记本选购指南帖。 2 | 3 | 我认为最佳的笔记本推荐贴(看一个就够了):https://zhuanlan.zhihu.com/p/69264117 4 | 5 | 内容上更精简,可以对比来看:https://zhuanlan.zhihu.com/p/110108273 6 | 7 | -------------------------------------------------------------------------------- /采购篇/采购篇1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaotianxt/rookie-in-pku/19b4b18e45e1cf1de696b1fcca685690ca8dfda6/采购篇/采购篇1.md -------------------------------------------------------------------------------- /采购篇/采购篇1.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaotianxt/rookie-in-pku/19b4b18e45e1cf1de696b1fcca685690ca8dfda6/采购篇/采购篇1.xmind -------------------------------------------------------------------------------- /采购篇/采购篇2.md: -------------------------------------------------------------------------------- 1 | ## 写在前面 2 | 3 | 微信后台已经有大量私信,问我如何选购笔记本电脑、台式机能否塞下等问题,私以为有必要先把这篇文章写完,毕竟离开学不远了。 4 | 5 | 这篇文章适用于全国高校新生,只要大一允许带笔记本报道。 6 | 7 | 我写基础篇的原则是,**尽可能不涉及冗长繁复的概念或流程,并希望文章长期有效。**所以本文不会向你推荐某款产品,而是协助你搞清楚**最适合你的是什么**。 8 | 9 | 文章会和其他朋友交流后迭代,但微信平台无法随时更新,所以**建议去我的github页面**,里面对“入学篇”进行了部分改动。你可以在后台回复“**初入燕园**”获得地址,欢迎标🌟或提issue。 10 | 11 | **下一篇文章**预计是《学习篇1——如何记录和管理笔记/文件》。 12 | 13 | 为了开启文章下方留言区、赞赏等功能,我正在办理微信号迁移,届时会向用户发送消息提醒,但不会影响大家正常访问。 14 | 15 | 16 | 17 | ---------- 18 | 19 | 20 | 21 | 首先提醒各位: 22 | 23 |

适度消费 适度消费 适度消费

24 | 25 | 在本金不充裕的情况下,不建议使用**花呗借呗白条信用卡等一切信贷产品**(当然如果有足够的资金,使用免息分期是提升个人信用、抵抗通胀的好方法)。 26 | 27 | 采购篇一定会引发争议,选购适合自己的笔记本、PC配件是一个非常主观、差异性极大的事情。 28 | 29 | 除了自身专业,还需要斟酌个人爱好,日常使用习惯,预算情况等,因此本人意见未必有普适性。 30 | 31 | 32 | 33 | # 笔记本篇 34 | 35 | ----------- 36 | 37 | 需求,需求,还™️的是需求! 38 | 39 | 172bc929c19613a9 40 | 41 | 我希望通过列举一些在校内生活的痛点,帮你从宏观上**明确自己的需求**,例如:“我需要一台轻薄、续航长的本子” 或 “我就爱打游戏,给我推荐个坦克” 又或 “👴不缺钱,别跟我说性价比”;与此同时,我也希望令你了解购买渠道导致的**保修、维权、退换货**的差异。 42 | 43 | 笔记本可大致分为**轻薄本、全能本、游戏本**。听名字就能懂,轻薄本**性能差体积小**,游戏本**性能强体积大**,全能本**都凑合但价格高**。你的需求决定了选择哪一种类型的笔记本。 44 | 45 | 如果你想直接查看推荐列表,可以在微信后台回复“笔记本”查看我筛选出的笔记本推荐帖。 46 | 47 | ## 目录 48 | 49 | 1. 基本得不能再基本的基本硬件知识 50 | 2. 一些主观建议 51 | 3. 一些更主观的建议 52 | 4. 电脑城并不适合涉世未深的你 53 | 5. 为什么需要台式机 54 | 6. 我一点也不后悔购入台式机 55 | 56 | ## 基本得不能再基本的基本硬件知识 57 | 58 | 我向小学5年级的弟弟科普计算机知识时,经常会用**做数学题**来类比硬件。 59 | 60 | - **CPU**是大脑,越灵光做题速度越快**(软件运行速度快)** 61 | - **内存**是演算纸,更大的演算纸可以同时写下多道题的思路**(能同时运行更多程序)** 62 | - **硬盘**是笔记,厚笔记本不意味好成绩**(大容量不代表强性能)**,但字符挤成一团会影响复习效果**(剩余容量不足影响性能)** 63 | - **显卡**是另一块大脑,**专**用于讲题**(计算图形画面)**,平时几乎闲着**(不打游戏,剪辑视频的用户不需要好显卡)** 64 | - 65 | 66 | 现在你也许对性能有一定的认知了,而且我认为主流笔记本的性能满足**90%同学**的需求。 67 | 68 | ------ 69 | 70 | ## 一些主观建议 71 | 72 | 1. 从不可能三角出发,作出合理的取舍,确定自己到底想要什么样的产品。 73 | v2-15b4fec58f1dd059e9353049bac952ad_1440w 74 | 我不爱打游戏,有布置台式机的规划,所以取舍是:**尽可能轻薄,性能平庸即可。** 75 | 76 | 2. **合格的续航是必要的**。将宣传的续航时间➗2就是真正使用时长。一节课2-3小时,能撑两节课最好。 77 | 78 | 3. **买新不买旧**,尤其是CPU。所有推荐你购买一年前笔记本的人一定没安好心。 79 | 80 | 4. **不买带机械硬盘的**,那就是块嗡嗡直转的砖。怕**硬盘容量不够**请期待《学习篇1——如何记录和管理笔记/文件》。 81 | 82 | 5. **多看看不花钱**。去电脑城,以及苹果、华为、小米的直营店可以直观地构建一台设备的体验。尤其是**产品外观**和**便携性**。 83 | 84 | 6. 真正的大型游戏玩家不会只用笔记本打游戏,虚假的游戏玩家会在去往一教的路上哭。 85 | 86 | WechatIMG106 87 | 88 |

都是大学生了就别背那么沉的包了

89 | 90 | 91 | 92 | 以上建议**略带主观**,你可以选择性考虑,下面的建议**完全主观**,建议图一乐。 93 | 94 | --------------- 95 | 96 | ## 一些更主观的建议 97 | 98 | 1. 只使用自带屏幕和键盘,**我就不信打游戏🎮能有好体验**。 99 | 而加购显示器、外置显卡等一系列拓展设备,其价格远高于一台舒适的轻薄本+性能中等的台式机。 100 | 101 | 2. 大部分理科生,**专业软件在Mac下的表现欠佳**(CS除外),在苹果笔记本上安装Windows系统是浪费💰的行为。 102 | 103 | 苹果电脑适合两类人士: 104 | 105 | 1. 仅文字创作(写论文),影音娱乐(看电影),媒体编辑(剪片子)的同学。 106 | 2. 能够最大化发挥电脑效能的极客同学。 107 | 108 | 3. CPU英特尔买i5不买i7,AMD买R5不买R7。**同型号产品,CPU买最低档的就行,但内存起码16G** 109 | 110 | 4.

记笔记首先是为了帮助理解,其次才是记录。

111 | 112 | ------------ 113 | 114 | 摊牌了,个人对游戏笔记本无感,仅建议购买轻薄本/全能本,你们打我吧。 115 | 116 | ## 笔记本推荐列表 117 | 118 | 恕我无能!! 119 | 120 | 在微信平台上实时更新一套完整的笔记本推荐列表几乎是不可能的事情,转眼9月份,各厂都会发布新品,而发表一篇不能实时改动的文章效果极差。因此我在微信后台维护了一套经我筛选、更新及时的选购贴,较为客观,**后台回复“笔记本”查看**。 121 | 122 | -------- 123 | 124 | ## 电脑城并不适合涉世未深的你 125 | 126 | 1. **保修问题**:在实体店购买的产品退货不方便,保修不方便,特别是在老家购买的笔记本。 127 | 2. **价格不透明**:产品价格波动频繁,卖家利用信息不对称恰烂💰。 128 | 3. **我想凑够三条**:b站或油管搜索"1818黄金眼 笔记本"可以吃瓜。 129 | 130 | 适合大多数人的采购渠道为: 131 | 132 |
Apple Store直营店 >= 华为旗舰店/小米之家 = 京东 > 苏宁易购 > 天猫 > 淘宝 > 闲鱼
133 | 134 | 比较优秀的平台如京东,退换货和保修的规则一定可以令你满意。 135 | 136 | 对于**戴尔、联想**等老牌厂商,线下鱼龙混杂,只建议线上购买。 137 | 138 | 另建议下载**什么值得买**app,搜索自己想要的品牌,可以看到各种姿势的优惠方式,并通过对比产品右下角的**值率**伺机入手;购买其他电子产品也适合在这里查查。 139 | 140 | Screenrecorder-2020-08-22-02-22-39-861 141 | 142 | 143 | 144 | 我家住在百脑汇旁,疫情期间,最大的乐趣就是骑着车逛市场采购小零件,这是因为我会对产品参数,价格进行详细的了解,为了省去网购派送时间采取的方法。敲定价格后店家一般会苦笑“自己就赚5块钱”。( 学校南边就是中关村,采购也很方便 ) 145 | 146 | # 台式机篇 147 | 148 | ----------- 149 | 150 | ## 为什么需要台式机 151 | 152 | 1. 性能需求较高,如游戏、视频创作。 153 | 2. 高性能笔记本价格过高,而轻薄本+台式机反而更容易接受。 154 | 3. 工作需要24小时在线。 155 | 156 | ## 宿舍里面空间需要合理利用 157 | 158 | 对新生朋友,**现在考虑台式机有点早,双十一是个不错的机会**。但的确有多位同学问到了,我决定写一些tips: 159 | 160 | 1. 宿舍里面完全可以放下机箱,但是放得不舒服:放在桌上占用空间大,放在地下/柜子里影响散热,所以itx机箱更方便。 161 | 162 | 2. 显示器没办法超过23寸。这一点用图解释更清楚: 163 | 小田小田_20200821_164303 164 | 165 | 由于桌面不够深,屏幕需要尽可能远;而**红色区域**的挡板不可拆卸,上方还有一块**绿色挡板**同时限制空间。我的23寸显示器恰好能塞进格子里,旁边放上机箱,还有键盘、鼠标、台灯...**偌大的桌面就容不下一本高数书了**(也算是逼自己白天出门上自习)。 166 | 167 | 3. 返校后我会尝试优化下布局,有进展会更新。 168 | 169 | ## 我一点也不后悔购入台式机 170 | 171 | 这是我趁大一暑假兼职后采购的设备,极大地提升了在校园内的生活便携性。 172 | 173 | 1. 我可以只带着iPad出门,通过`Teamviewer`远程控制电脑 174 | 2. 想看的电影可以扔到台式机中下载,并通过`smb`在校园各处访问 175 | 3. 我有剪辑视频的需求,团队视频素材可以实时共享 176 | 4. 在办公楼拷贝他人文件,可以直接在他人电脑上输入网址拖拽发送 177 | 5. 上百人大课的网络质量很差(我说的就是地空数算,二教203,下载课件十分钟),通过远程控制台式机就可以躲掉拥挤 178 | 6. 144Hz显示器玩游戏很舒服,键盘还不烫手…… 179 | 180 | ## 台式机配置建议 181 | 182 | 这个问题实在太大了,回答不了,已经了解硬件的同学可以直接跳过。 183 | 184 | 对于不了解硬件的同学,我相信你没有任何兴趣了解这件事,所以淘宝整机是可以考虑的。请**只考虑以下几个店铺**: 185 | 186 | 1. 关注微信公众号“装机猿”或b站搜索“远古时代装机猿”,提供性价比较高的整机配置,还可以边听相声边学装机。 187 | 2. 其他也可以参考:关注B站“二斤啦啦啦啦”,“一铭兄弟装机中心”,“AS极客”等。对比看几个视频就有感觉了。 188 | 189 | 事实上,整机的价格要比单买便宜,因为他们批量采购、批量安装。但绝大部分淘宝店铺喜欢在**主板、电源**等不易察觉之处缺斤少两。 190 | 191 | 上述几位在B站为广大网友提供了一个“监督平台”,同时也可以了解到不同配置主机的性能表现。 192 | 193 | ## 结语 194 | 195 | 我觉得这期文章略显草率,原因是大家1号就开学,我希望尽快发出以供参考。不细聊配置是因为时效性太强+网上有更好的。 196 | 197 | 我尝试用校园内的情景引导大家选择合适的设备。如果对具体配置有问题的可以后台私信,我有空会回。 198 | 199 | ![扫码关注](https://tva1.sinaimg.cn/large/007S8ZIlly1ghyb3lpf3ej30u00u0gqm.jpg) -------------------------------------------------------------------------------- /采购篇/采购篇2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaotianxt/rookie-in-pku/19b4b18e45e1cf1de696b1fcca685690ca8dfda6/采购篇/采购篇2.png -------------------------------------------------------------------------------- /采购篇/采购篇2.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaotianxt/rookie-in-pku/19b4b18e45e1cf1de696b1fcca685690ca8dfda6/采购篇/采购篇2.xmind -------------------------------------------------------------------------------- /高阶/黑苹果.md: -------------------------------------------------------------------------------- 1 | ## 写在前面 2 | 3 | 我从高中开始接触到黑苹果,但多次尝试入门均告失败。主要原因是手头硬件不支持+没钱购置新硬件。眼馋多年的我终于在疫情期间逼自己搞出了一套能够使用的黑苹果平台。借此机会分享一下我猜到的坑。 4 | 5 | 这篇文章很难面向大众,只有真正对此有兴趣的才会深入研究。 6 | 7 | ## 目录 8 | 9 | 1. 到底啥是“黑”🍎? 10 | 11 | ## 所以到底啥是黑苹果? 12 | 13 | 无论是熟知的`IOS`,还是 Mac 搭载的`macOS`,都有一个特点——**封闭**。 14 | 15 | 他们只能安装在特定硬件中,不开源。你必须去App Store安装应用、无法访问文件目录。 16 | 17 | 这当然有好处:苹果只需要维护自己的几款机型,并能为其作出专门的优化。这也是 iPhone “用起来不卡”的原因之一。 18 | 19 | 不过对于广大电脑爱好者,打破这样的封闭无疑十分有趣。iOS 端频繁出现“越狱”新闻,而电脑端就是“黑苹果”的天下了。 20 | 21 | 通过安装黑苹果,你可以配置一台性能与白苹果无异,但成本大减的电脑;你还可以 DIY 自己喜欢的配置,并不受限于硬件搭配,最大化匹配自己的需求。 22 | 23 | 24 | 25 | > 以我目前的笔记本(Thinkpad T480s)为例: 26 | > 27 | > - i5 8250U 28 | > - 256G SSD 29 | > - 8G RAM 30 | > 31 | > 产品海淘自联想八通道,价格为6400元。我在随后的使用中更换为 1T 固态硬盘,加装一根 8G 内存条,准备更换一块更舒适的屏幕。 32 | > 33 | > Thinkpad 提供了丰富的接口,你可以方便地连接U盘,读SD卡,插网线、连接显示器。这些体验是MacBook Pro无法带来的,毕竟其只有type-c接口。 34 | 35 | 36 | 37 | 38 | 39 | 当年同配置的其他笔记本(如小米等)仅4000元,而对比 MacBook Pro: 40 | 41 | image-20200911002315867 42 | 43 | > 这里还得插一句,MacBook Pro系列搭载了更好的显示屏、更优秀的触控版以及性能更强的固态硬盘。 44 | 45 | 46 | 47 | 48 | 49 | Hackintosh (Hack + Macintosh) , 在国内被称作黑苹果,是指**将 macOS 系统安装到非 Mac 中。 ** 50 | 51 | 52 | 53 | 自打苹果使用`Intel`芯片起(2005),就有人热衷打破苹果封闭的生态壁垒,将当时最新的OS X系统安装到其他主流电脑中,然而其入门门槛较高,普通人很难接触和理解。 54 | 55 | image-20200910182819202 56 | 57 |

联想笔记本安装黑苹果
Theis Kofoed Hjorth from Copenhagen, Denmark

58 | 59 | 经过十余年的经验积累和沉淀,现在的“黑果圈”已经形成了多个大型论坛,并出现了许多 --------------------------------------------------------------------------------