摘要:
原文 在项目中创建"xor.asm" 在文件列表"xor.asm"上右键,点击属性 将项目类型设置为"自定义工具" 设置生成工具 编写"xor.asm" section .text global asm_xor asm_xor: push rbp mov rbp,rsp xor ecx,edx mo 阅读全文
摘要:
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> <link rel="stylesheet" data-name="vs/editor/editor. 阅读全文
摘要:
字符串解析 如果你使用的不是isoformat string那么解析字符串就会失败,需要用strptime转换一下 strptime-format-codes import datetime datetime.datetime.strptime('2021/2/5 9:34:37', '%Y/%m/ 阅读全文
摘要:
test html <p>title</p> <ul class="list a" id="list"> <li>1</li> <li>2</li> <li>3</li> <li>4</li> </ul> <footer>footer</footer> function xpath(path, pa 阅读全文
摘要:
See alsoe: https://www.runoob.com/html/html5-draganddrop.html https://developer.mozilla.org/zh-CN/docs/Web/API/HTML_Drag_and_Drop_API 阅读全文
摘要:
<div class="dropdown"> <a class="btn dropdown-toggle"> Dropdown link </a> <ul class="dropdown-menu"> <div class="dropdown-item dropdown"> <a class="bt 阅读全文
摘要:
listen 80; server_name localhost; # 访问"localhost"的全部请求会被转发到"localhost:81" # localhost => localhost:81 # localhost/a/ => localhost:81/a/ # localhost/b/ 阅读全文
摘要:
最大成员dword data: dd 1 db 2 align 4 dw 3 000E0010 - 01 00 00 00 000E0014 - 02 00 00 00 000E0018 - 03 00 align 的宽度超过最大成员宽度,取最大成员宽度,结果和上面的一样 data: dd 1 db 阅读全文
摘要:
const fs = require("fs"); const { Writable, Readable, Duplex, Transform } = require("stream"); // 双向流 const inoutStream = new Duplex({ // 获取写入的数据 writ 阅读全文