会员
新闻
博问
闪存
班级
AI培训
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
ayuuuuuu
博客园
首页
新随笔
联系
订阅
管理
2020年11月24日
webglfundamentals 的工具模块 webgl-utils.js
摘要:
阅读全文
posted @ 2020-11-24 15:17 ayuuuuuu
阅读(262)
评论(0)
推荐(0)
编辑
2020年10月16日
Node.js 实现的简易服务器 (三)
摘要: index.js const server = require('./server'); const router = require('./router'); server.start(router.route); server.js const http = require('http'); /
阅读全文
posted @ 2020-10-16 19:38 ayuuuuuu
阅读(109)
评论(0)
推荐(0)
编辑
Node.js 实现的简易服务器 (二)
摘要: index.js const server = require('./server'); const router = require('./router'); server.start(router.route); server.js const http = require('http'); /
阅读全文
posted @ 2020-10-16 15:42 ayuuuuuu
阅读(97)
评论(0)
推荐(0)
编辑
Node.js 实现的简易服务器 (一) (非阻塞处理存在问题)
摘要: index.js const server = require('./server'); const router = require('./router'); server.start(router.route); server.js const http = require('http'); /
阅读全文
posted @ 2020-10-16 14:29 ayuuuuuu
阅读(119)
评论(0)
推荐(0)
编辑
http.createServer
摘要: const http = require('http'); // Node.js 内置的 http 模块 /** 请求事件发生时调用的回调函数 (Node.js 是执行单线程异步非阻塞事件驱动的) */ function requestListener(req, rep) { console.log
阅读全文
posted @ 2020-10-16 13:03 ayuuuuuu
阅读(979)
评论(0)
推荐(0)
编辑
2020年8月17日
从 CPU 说起的多核, 超线程, 多线程与多进程
摘要:
循序的引用资料, 介绍了 CPU, 多核, 超线程, 多线程与多进程等概念
阅读全文
posted @ 2020-08-17 15:44 ayuuuuuu
阅读(1311)
评论(1)
推荐(0)
编辑
2020年8月15日
Object.prototype.__proto__, [[prototype]] 和 prototype
摘要:
讲解了 __proto__, [[prototype]] 和 prototype 三者的关系, 并用 js 实现了一个 __proto__
阅读全文
posted @ 2020-08-15 20:34 ayuuuuuu
阅读(823)
评论(0)
推荐(0)
编辑
2020年8月13日
SVG 属性学习
摘要:
写了一个简单的 demo 用来学习 SVG 的一些属性, 如 viewport, viewBox, preserveAspectRatio 等
阅读全文
posted @ 2020-08-13 12:25 ayuuuuuu
阅读(141)
评论(0)
推荐(0)
编辑
2020年8月7日
使用 Graphviz 绘制流程图
摘要:
使用 dot 语言写了一个简单的流程图 demo, 可以当作绘制流程图时的模板使用
阅读全文
posted @ 2020-08-07 13:53 ayuuuuuu
阅读(818)
评论(0)
推荐(0)
编辑
2020年8月3日
浮点数相关
摘要:
概括总结了 IEEE 754 实现的浮点数
阅读全文
posted @ 2020-08-03 11:00 ayuuuuuu
阅读(856)
评论(1)
推荐(0)
编辑
下一页
公告