07 2018 档案

摘要:一、常用指令二、算术运算指令 三、逻辑运算指令四、串指令 五、程序跳转指令 计算机寄存器分类简介: 32位CPU所含有的寄存器有:4个数据寄存器(EAX、EBX、ECX和EDX)2个变址和指针寄存器(ESI和EDI) 2个指针寄存器(ESP和EBP) 6个段寄存器(ES、CS、SS、DS、FS和GS 阅读全文
posted @ 2018-07-25 16:02 xfbx 阅读(2550) 评论(0) 推荐(1)
摘要:node-pre-gyp: Permission denied 错误 则需要安装 阅读全文
posted @ 2018-07-21 00:31 xfbx 阅读(4622) 评论(0) 推荐(0)
摘要:https://getbootstrap.com/docs/4.0/getting-started/introduction/#css 阅读全文
posted @ 2018-07-21 00:00 xfbx 阅读(1090) 评论(0) 推荐(1)
摘要:var bodyParser = require('body-parser'); var urlencodedParser = bodyParser.urlencoded({ extended: false }); 路由中使用 router.post('/', urlencodedParser, f 阅读全文
posted @ 2018-07-20 22:35 xfbx 阅读(839) 评论(0) 推荐(0)
摘要:npm install sqlite3 var sqlite3 = require('sqlite3').verbose();var db = new sqlite3.Database('WebFiles.db'); 查询使用 db.all("select * from yourtable wher 阅读全文
posted @ 2018-07-20 22:32 xfbx 阅读(10203) 评论(0) 推荐(0)
摘要:https://www.npmjs.com/package/qr-image npm install qr-image npm install qr-image var qr = require('qr-image'); var code = qr.image("yourcodehere", {ty 阅读全文
posted @ 2018-07-20 22:21 xfbx 阅读(4986) 评论(0) 推荐(0)
摘要:安装: 创建项目: express myapp 安装依赖 install dependencies: > npm install 启动应用 run the app: > SET DEBUG=quicknote:* & npm start 阅读全文
posted @ 2018-07-20 15:53 xfbx 阅读(502) 评论(0) 推荐(0)
摘要:Let’s Encrypt setup for Apache, NGINX & Node.js https://gist.github.com/davestevens/c9e437afbb41c1d5c3ab 阅读全文
posted @ 2018-07-08 16:17 xfbx 阅读(227) 评论(0) 推荐(0)
摘要:地址:https://chrome.google.com/webstore/detail/fhbjgbiflinjbdggehcddcbncdddomop 阅读全文
posted @ 2018-07-08 16:01 xfbx 阅读(326) 评论(0) 推荐(0)
摘要:https://elifulkerson.com/projects/tcping.php 阅读全文
posted @ 2018-07-08 15:53 xfbx 阅读(630) 评论(0) 推荐(0)
摘要:private SQLiteConnection connection; private SQLiteCommand command; private SQLiteTransaction transaction; string sqConnectionString = "ZG.db"; public 阅读全文
posted @ 2018-07-07 12:01 xfbx 阅读(464) 评论(0) 推荐(0)
摘要:原文地址:https://blog.csdn.net/G1036583997/article/details/9630037 1. (1->2) 把第一个窗体中的参数传递给第二个窗体 把第二个窗口写个带参数的构造函数,用参数给变量赋值,或者把这变量声明为静态的,直接赋值 Form2中string s 阅读全文
posted @ 2018-07-05 23:59 xfbx 阅读(3615) 评论(0) 推荐(0)
摘要:https://www.devart.com/dotconnect/sqlite/docs/Devart.Data.SQLite~Devart.Data.SQLite_namespace.html 有详细的例子。 官方文档 https://www.sqlite.org/datatype3.html 阅读全文
posted @ 2018-07-04 23:42 xfbx 阅读(531) 评论(0) 推荐(0)