作者:Lin Clark 翻译原文:http://huziketang.com/blog/posts/detail?postId=58c12f36a6d8a07e449fdd22 英文原文:A crash course in just-in-time (JIT) compilers
本文是关于 WebAssembly 系列的第二篇文章**(本系列共六篇文章)**。如果你没有读先前文章的话,建议先读这里。如果对 WebAssembly 没概念,建议先读这里。
作者:Lin Clark 翻译原文:http://huziketang.com/blog/posts/detail?postId=58c12f36a6d8a07e449fdd22 英文原文:A crash course in just-in-time (JIT) compilers
本文是关于 WebAssembly 系列的第二篇文章**(本系列共六篇文章)**。如果你没有读先前文章的话,建议先读这里。如果对 WebAssembly 没概念,建议先读这里。
本文作者:Lin Clark
翻译原文:http://huziketang.com/blog/posts/detail?postId=58ce8036a6d8a07e449fdd27
你可能已经听说过,WebAssembly 执行的更快。但是 WebAssembly 为什么执行的更快呢?
在这个系列文章中,我会为你解释这一点。
虚拟机开启 ifconfig 没有ens33网卡,无法上网,同时 图形化模式 没有有线连接选项 手动启动网卡提示:
Connection 'ens33' is not available on device ens33 because device is strictly unmanaged
有一种临时方案 :
dhclient ens33
执行后可以上网,可以远程连接,但是每次开机都无法自动启动, 最终找到原因是由于 NM托管未开启导致的
在Windows下编写好sh文件后,在Linux下运行会报错:bash: $’\r’: command not found
这是因为Windows系统的文件换行使用的是\r\n,而Unix系统是\n
# 显示当前的Git配置
$ git config --list
# 编辑Git配置文件
$ git config -e [--global]
# 设置提交代码时的用户信息
$ git config [--global] user.name "[name]"
$ git config [--global] user.email "[email address]"
http://www.ruanyifeng.com/blog/2012/07/git.html
http://www.ruanyifeng.com/blog/2015/08/git-use-process.html
http://www.ruanyifeng.com/blog/2015/12/git-workflow.html?bsh_bid=2219775734
http://www.ruanyifeng.com/blog/2019/12/git-undo.html 撤销提交
http://www.ruanyifeng.com/blog/2016/01/commit_message_change_log.html 撰写commit
今天提交了第一个pr,过程中查了很多资料,这里做个总结文字。
git下载
git配置邮箱和用户名
打开git bash,分别执行以下两句命令git config –global user.name “用户名”git config –global user.email “邮箱”
centos7以前的版本默认使用iptables服务进行管理防火墙规则。centos7以及其以上版本默认使用firewalld服务管理防火墙。所以在centos8中,就使用其默认的firewalld配置防火墙。