Missing Semester】的更多相关文章

The Missing Semester - 第一讲 学习笔记 第一讲 课程概览与 shell 课程视频地址: https://www.bilibili.com/video/BV1Eo4y1d7KZ/?vd_source=87f9cb5d00dc916a8f510966777362a2 本机学习使用平台:虚拟机ubuntu18.04.6 动机 作为计算机科学家,我们都知道计算机最擅长帮助我们完成重复性的工作. 但是我们却常常忘记这一点也适用于我们使用计算机的方式,而不仅仅是利用计算机程序去帮我们…
第四讲 数据整理 课程视频地址:https://www.bilibili.com/video/BV1ym4y197iZ 课程讲义地址:https://missing-semester-cn.github.io/2020/data-wrangling/ 本机学习使用平台:虚拟机ubuntu18.04.6 需要用到的东西 最基本的:grep 流编辑器:sed,awk 配对用的:正则表达式语法 正则表达式 正则表达式的语法比较复杂,但它非常强大.有很多前辈也总结过这方面的内容了,就放个易于理解的菜鸟教…
第三讲 Vim 课程视频地址:https://www.bilibili.com/video/BV1Dy4y1a7BW 课程讲义地址:https://missing-semester-cn.github.io/2020/editors/ 本机学习使用平台:虚拟机ubuntu18.04.6 我们为什么用Vim? 在编程的时候,你会把大量时间花在阅读/编辑而不是在写代码上.所以,Vim 是一个多模态编辑 器:它对于插入文字和操纵文字有不同的模式.Vim 是可编程的(可以使用 Vimscript 或者像…
第二讲 Shell 工具和脚本 课程视频地址: https://www.bilibili.com/video/BV1Vv411v7FR 本机学习使用平台:虚拟机ubuntu18.04.6 主题一:Shell脚本 我们已经学习来如何在 shell 中执行命令,并使用管道将命令组合使用.但是,很多情况下我们需要执行一系列的操作并使用条件或循环这样的控制流.这时就要使用shell脚本. 赋值语句 #注意赋值时不能有空格,空格是用于分隔参数的保留字符 grapefruitcat@grapefruitca…
Here is a sample of a data-file that we want to try and recognise. It is a list of students and information about them. CIS W7 Abramson,Paul B CS3001 CS3071 CS3102 CS3132 CS3311 CS3322 CS3361 CS3900 EM2490 CE X1 O'Rourke,Daniel M CS3001 CS3041 CS3052…
主题 1 The Shell 课程概览与 shell · the missing semester of your cs education (missing-semester-cn.github.io) Shell是什么? 一旦你想脱离可视化界面让你做的,然后做点别的事情,那么Shell将是你和计算机交互的最主要的方式之一. 可视化界面受限于,它只能做被设计出来的操作--比如你不能点击一个不存在的按钮或者是用语音输入一个还没有被录入的指令.这就是这门课介绍命令行工具和基于文本的工具的理由,sh…
主题 2 Shell工具和脚本 Shell 工具和脚本 · the missing semester of your cs education (missing-semester-cn.github.io) Shell脚本 shell 脚本是一种更加复杂度的工具. 定义变量 在bash中为变量赋值的语法是foo=bar,意为定义变量foo,foo的值为bar.访问变量使用$变量名 [lighthouse@VM-8-17-centos tools]$ foo=bar [lighthouse@VM-…
错误    3    error C4430: missing type specifier - int assumed. Note: C++ does not support default-int #include "stdafx.h"没有放在其他头文件之前.…
最近打包上传是遇到一个问题: 描述: Missing Push Notification Entitlement - Your app includes an API for Apple's Push Notification service, but the aps-environment entitlement is missing from the app's signature. To resolve this, make sure your App ID is enabled for…
最近在写一个网页的时候,需要用到PHPmailer来发送邮件,按照官网上给出的demo写出一个例子,却报错Extension missing: openssl 最后发现需要修改php.ini中的配置: 将其中的 extension=php_openssl.dll 打开即可. demo代码添加如下: <?php require 'PHPMailerAutoload.php'; $mail = new PHPMailer; //$mail->SMTPDebug = 3; // Enable ver…