ES6转ES5(Babel转码器) 前提:必须在VScode中已经安装了Node.js 官网:https://nodejs.org/en/ 一、安装命令行转码工具 npm install --global babel-cli #查看是否安装成功 babel --version 二、初始化项目 npm ...
分类:
其他好文 时间:
2021-04-19 15:14:32
阅读次数:
0
mac 上build go 如果想要在centos上面执行 必须使用下面的方式 CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -o hello hello.go 不然会报错 :cannot execute binary file ...
分类:
其他好文 时间:
2021-04-19 14:58:20
阅读次数:
0
heap堆的使用: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 ...
分类:
编程语言 时间:
2021-04-16 12:16:43
阅读次数:
0
pwd,打印当前目录 ls:List information about the FILEs (the current directory by default) -a/--all -d/--directory dir -a 进入如camera的目录后运行dir、ls会卡住(可以ctrl+c退出)。 ...
分类:
移动开发 时间:
2021-04-16 12:10:03
阅读次数:
0
前言 Babel 对于前端开发者来说应该是很熟悉了,日常开发中基本上是离不开它的。 已经 9102 了,我们已经能够熟练地使用 es2015+ 的语法。但是对于浏览器来说,可能和它们还不够熟悉,我们得让浏览器理解它们,这就需要 Babel。 当然,仅仅是 Babel 是不够的,还需要 polyfil ...
分类:
其他好文 时间:
2021-04-16 11:51:40
阅读次数:
0
项目开始: git init // 初始化本地git代码仓库 git checkout -b 分支名 // 建一个属于自己的分支提交代码方便管理(这句话的意思就是 创建分支并且切换到该分支下) 可以不用创建分支也来可以,如果不需要的话 git clone 仓库地址 // 将远程上的代码先克隆到本地 ...
分类:
其他好文 时间:
2021-04-16 11:44:14
阅读次数:
0
配置阶段 配置web.xml文件 DispatcherServlet 设置init-param configLocation=classpath:application.properties 设置url-pattern /* 配置Annotation @Controller、@Service、@Re ...
分类:
编程语言 时间:
2021-04-15 12:17:07
阅读次数:
0
获取outlook发件人 1.1场景 使用Outlook发送邮件时实时获取发件人 1.2代码 特性: [GuidAttribute("EDF9F510-B728-48CA-A202-A7D201933C14"), ProgId("SinitekOutlook.Connect")] 特性用于反射,给类 ...
分类:
其他好文 时间:
2021-04-15 12:13:47
阅读次数:
0
Android 系统启动过程 从系统层看: linux 系统层 Android系统服务层 Zygote 从开机启动到Home Launcher: 启动bootloader (小程序;初始化硬件) 加载系统内核 (先进入实模式代码在进入保护模式代码) 启动init进程(用户级进程 ,进程号为1) 启动 ...
分类:
移动开发 时间:
2021-04-15 12:04:56
阅读次数:
0
在做STM32f405 移植过程中,编译出现了cannot open source input file "core_cmInstr.h": No such file or directory的错误,显然我们需要将core_cmInstr.h添加keil include path中,具体如下图: 查 ...
分类:
其他好文 时间:
2021-04-15 12:04:39
阅读次数:
0