QEMU cross compiling

Ubuntu 20 TLS VMware 4核17G 100G磁盘 编译好后共用42G install 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 git clone https://github.com/crosstool-ng/crosstool-ng sudo apt-get install build-essential autoconf ncurses-dev # solved: [[https://github.com/c9/core/issues/19][error: curses library not found]] sudo apt install flex texinfo help2man gawk libtool-bin autoconf autopoint bison sudo ./bootstrap ./configure

react native

特点 声明式,组件化,全平台,高效(virtual DOM, DOM Diffing 算法) 练习 关键字联想回忆实现 模板 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 <!DOCTYPE html>

JS 自动填表单

表单操作 js 原生 模拟点击 1 2 3 4 let ele = document.getElementsByTagName("textarea")[1] let evt = new Event('input') ele.value = 'xxx'; ele.dispatchEvent(evt) jQuary .val() 获取,.val("xxx")设置 1 2 3 4 5 6 7 8 9 10 11 12 13 14

git 笔记

git 裸体 概览 git 目录下 1 2 find 目录名 # 将对应目录下的 子孙文件&子孙目录 平铺在控制台 find 目录名 -type f # 将对应目录下的文件平铺在控制台 初始化 1 2 3