Golang入门指南


  • 首页

  • todo

  • 思考

  • life

  • food

  • OS

  • lua

  • redis

  • Golang

  • C

  • TCP/IP

  • ebpf

  • p4

  • OpenVPN

  • IPSec

  • L2TP

  • DNS

  • distributed

  • web

  • OpenWRT

  • 运维

  • Git

  • 鸟哥的私房菜

  • IT杂谈

  • 投资

  • About Me

  • 友情链接

  • FTP

  • 搜索
close

WebAssembly 系列(二)JavaScript Just-in-time (JIT) 工作

时间: 2021-10-20   |   分类: wasm     |   阅读: 3266 字 ~7分钟

作者:Lin Clark 翻译原文:http://huziketang.com/blog/posts/detail?postId=58c12f36a6d8a07e449fdd22 英文原文:A crash course in just-in-time (JIT) compilers

本文是关于 WebAssembly 系列的第二篇文章**(本系列共六篇文章)**。如果你没有读先前文章的话,建议先读这里。如果对 WebAssembly 没概念,建议先读这里。

阅读全文 »

WebAssembly 系列(一)生动形象地介绍 WebAssembly

时间: 2021-10-20   |   分类: wasm     |   阅读: 863 字 ~2分钟

本文作者:Lin Clark

翻译原文:http://huziketang.com/blog/posts/detail?postId=58ce8036a6d8a07e449fdd27

英文原文:A cartoon intro to WebAssembly

你可能已经听说过,WebAssembly 执行的更快。但是 WebAssembly 为什么执行的更快呢?

在这个系列文章中,我会为你解释这一点。

阅读全文 »

CentOS8使用ifconfig没有ens33网卡

时间: 2021-10-19   |   分类: 运维     |   阅读: 325 字 ~1分钟

原文链接

本人遇到的问题

虚拟机开启 ifconfig 没有ens33网卡,无法上网,同时 图形化模式 没有有线连接选项 手动启动网卡提示:

Connection 'ens33' is not available on device ens33 because device is strictly unmanaged

有一种临时方案 :

dhclient  ens33

执行后可以上网,可以远程连接,但是每次开机都无法自动启动, 最终找到原因是由于 NM托管未开启导致的

阅读全文 »

bash: $' ': command not found

时间: 2021-10-19   |   分类: 运维     |   阅读: 185 字 ~1分钟

原文链接

问题描述

在Windows下编写好sh文件后,在Linux下运行会报错:bash: $’\r’: command not found 问题

问题解决

这是因为Windows系统的文件换行使用的是\r\n,而Unix系统是\n

阅读全文 »

git常用命令

时间: 2021-10-19   |   分类: 运维   git     |   阅读: 3092 字 ~7分钟

git config

# 显示当前的Git配置
$ git config --list

# 编辑Git配置文件
$ git config -e [--global]

# 设置提交代码时的用户信息
$ git config [--global] user.name "[name]"
$ git config [--global] user.email "[email address]"

git workflow

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

阅读全文 »

vim中查找和替换

时间: 2021-10-18   |   分类: 运维     |   阅读: 1176 字 ~3分钟

原文链接

1,查找

在normal模式下按下/即可进入查找模式,输入要查找的字符串并按下回车。 Vim会跳转到第一个匹配。按下n查找下一个,按下N查找上一个。

阅读全文 »

记录一个完整的git提交pr的过程

时间: 2021-10-18   |   分类: 运维     |   阅读: 952 字 ~2分钟

原文链接

今天提交了第一个pr,过程中查了很多资料,这里做个总结文字。

git下载

https://git-scm.com/downloads

git配置邮箱和用户名

打开git bash,分别执行以下两句命令git config –global user.name “用户名”git config –global user.email “邮箱”

阅读全文 »

centos8防火墙设置

时间: 2021-10-18   |   分类: 运维     |   阅读: 934 字 ~2分钟

原文链接

1、centos中firewalld与iptables

centos7以前的版本默认使用iptables服务进行管理防火墙规则。centos7以及其以上版本默认使用firewalld服务管理防火墙。所以在centos8中,就使用其默认的firewalld配置防火墙。

阅读全文 »
42 43 44 45 46 47 48 49 50

日志
分类
标签
RSS 订阅
GitHub
© 2009 - 2025
粤ICP备2021068940号-1 粤公网安备44011302003059
0%