backup from http://www.openedv.com/thread-81182-1-1.html
ROM (Read Only Memory),只读存储器。用来存储和保存数据。ROM 数据不能随意更新,但是在任何时候都可以读取。即使是断电,ROM 也能够保留数据。
ROM 也有很多种:
PROM是可编程一次性(无法修改)的 ROM;
backup from http://www.openedv.com/thread-81182-1-1.html
ROM (Read Only Memory),只读存储器。用来存储和保存数据。ROM 数据不能随意更新,但是在任何时候都可以读取。即使是断电,ROM 也能够保留数据。
ROM 也有很多种:
PROM 是可编程一次性(无法修改)的 ROM;| Windows批处理(cmd/bat)常用命令小结 | |
| 前言 | |
| 批处理文件(batch file)包含一系列 DOS命令,通常用于自动执行重复性任务。用户只需双击批处理文件便可执行任务,而无需重复输入相同指令。 | |
| 编写批处理文件非常简单,但难点在于确保一切按顺序执行。编写严谨的批处理文件可以极大程度地节省时间,在应对重复性工作时尤其有效。 | |
| 在Windows中善用批处理可以简化很多重复工作 | |
| 阅读原文 - https://wsgzao.github.io/post/windows-batch/ |
System: Debian/Ubuntu/Fedora. Might work for others as well.
As mentioned here, to update a go version you will first need to uninstall the original version.
To uninstall, delete the /usr/local/go directory by:
| import ( | |
| "crypto/md5" | |
| "encoding/hex" | |
| ) | |
| func GetMD5Hash(text string) string { | |
| hasher := md5.New() | |
| hasher.Write([]byte(text)) | |
| return hex.EncodeToString(hasher.Sum(nil)) | |
| } |
| import sublime, sublime_plugin | |
| # keymap example | |
| # [ | |
| # { "keys": ["alt+r"], "command": "s2c" } | |
| # ] | |
| # this_is_test_words | |
| # this_is_test_words_ |