摘要: CS:IP cpu 读取当前指令的地址. 基址+偏移 DS,[address] cpu 读写一个内存单元的时候, 必须先给出内存单元的地址. DS 就是内存单元的地址.示例: mov bx, 1000H mov ds,bx mov al, [0] 把 1000:0 的数据赋值给 al SS:SP 堆 阅读全文
posted @ 2018-12-05 14:50 高捍得 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 1. docker for ubuntu https://docs.docker.com/engine/installation/linux/docker-ce/ubuntu/ 2. sentry install docker https://docs.sentry.io/server/instal 阅读全文
posted @ 2017-12-28 09:47 高捍得 阅读(97) 评论(0) 推荐(0) 编辑
摘要: 1.安装gitlab https://about.gitlab.com/installation/#ubuntu 2.安装runner https://docs.gitlab.com/runner/install/linux-repository.html 3.注册runner https://do 阅读全文
posted @ 2017-12-28 09:29 高捍得 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 1.Function Arguments JavaScript 函数的参数 类型可以是 复杂类型如 Object or Array 和简单类型 String Integer null undefined;当参数是 复杂类型的时候,将会把 复杂类型的 引用传出 函数体内,也就是传入函数内的不是 复杂类 阅读全文
posted @ 2017-04-14 22:17 高捍得 阅读(253) 评论(0) 推荐(0) 编辑
摘要: 1. !优先级高于== 所以先执行![]. 根据标准: The production UnaryExpression : ! UnaryExpression is evaluated as follows: Let expr be the result of evaluating UnaryExpr 阅读全文
posted @ 2017-02-24 23:02 高捍得 阅读(221) 评论(0) 推荐(0) 编辑
摘要: ASDASDAS 阅读全文
posted @ 2016-07-25 14:31 高捍得 阅读(137) 评论(0) 推荐(0) 编辑
摘要: vardata={name:'asd'};'{name}'.replace(/\{.*?\}/g,function($0){returndata[$0.replace('{','').replace('}','')]||'';}) 阅读全文
posted @ 2015-09-23 10:18 高捍得 阅读(114) 评论(0) 推荐(0) 编辑
摘要: var xhr = createStandardXHR() || createActiveXHR();var state = 0;xhr.onreadystatechange = function () { if (xhr.readyState == 4 && xhr.status == 20... 阅读全文
posted @ 2015-07-21 17:48 高捍得 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 1.下载clion 并且安装。 地址 :http://download-cf.jetbrains.com/cpp/clion-1.0.1.exe2.安装cygwin 地址:https://cygwin.com/setup-x86_64.exe3.安装 make g++4.下载 gdb 地址 :htt... 阅读全文
posted @ 2015-05-12 16:42 高捍得 阅读(3811) 评论(0) 推荐(0) 编辑
摘要: 1.git clone xxx.git;2.git branch -r //查看分支3.git checkout origin/分支名字 -b 本地新建分支名字 //从远程分支名字 down代码,并创建本地新分支//方便提交:4.git remote add 别名 xxxx.git //别名5.gi... 阅读全文
posted @ 2015-04-29 16:15 高捍得 阅读(934) 评论(0) 推荐(0) 编辑