大约有 9,300 项符合查询结果(耗时:0.0189秒) [XML]

https://www.tsingfun.com/ilife/life/1942.html 

普通码农和CTO之间的差距,就是这7点了 - 杂谈 - 清泛网 - 专注C/C++及内核技术

...停留在探索“IT技术”上,开始各种折腾,比如折腾电子制作、折腾写小说、折腾研究曲艺、折腾评书(好吧,后面两项是我的爱好)。 经常思考 “写程序的康德”,这个公众号的寓意就是思考,我的出发点是发一些东西可以...
https://stackoverflow.com/ques... 

Is multiplication and division using shift operators in C actually faster?

... Just downloaded an arduino sketch that has millis() >> 2; Would it have been too much to ask to just divide? – Paul Wieland Jun 10 '16 at 10:41 ...
https://www.tsingfun.com/it/bigdata_ai/634.html 

淘宝应对双\"11\"的技术架构分析 - 大数据 & AI - 清泛网 - 专注C/C++及内核技术

...看到,笔记本电脑的尺寸这一属性有着10个枚举值,而“蓝牙功能”这个属性值是个布尔值,数据的筛选性非常差。 在用户所选择的过滤条件不确定的情况下,解决全属性问题的思路有两个:一个是穷举所有可能的过滤条件组...
https://stackoverflow.com/ques... 

Is gcc's __attribute__((packed)) / #pragma pack unsafe?

...aning. If I take a smaller example, suppose I have a program running on my Arduino which sends via serial a packet of 16 bytes which have the following meaning: 0: message type (1 byte) 1: target address, MSB 2: target address, LSB 3: data (chars) ... F: checksum (1 byte) Then I can declare somet...
https://www.tsingfun.com/it/pr... 

Quora如何在快速开发中保持高品质代码 - 项目管理 - 清泛网 - 专注C/C++及内核技术

...其实,为了能轻松地添加更多定制“分配”规则,我们还制作了一些工具。举个例子,只要我们想,就能轻而易举地把所有新员工提交的代码派发给他们的导师来审查。 借助智能系统,把审查任务派发给恰当的人,不仅减轻了...
https://www.tsingfun.com/ilife/life/1848.html 

泰迪熊为什么叫泰迪 - 杂谈 - 清泛网 - 专注C/C++及内核技术

...果店的老板看到这幅漫画深受启发,根据画中小熊的形态制作了一个毛绒玩具,和华盛顿邮报上的原图一并摆在了糖果店的橱窗里。这里补充个小知识,西奥多・罗斯福的一个广为人知的昵称是 Teddy。由于这只玩具熊灵感来自于...
https://stackoverflow.com/ques... 

What belongs in an educational tool to demonstrate the unwarranted assumptions people make in C/C++?

...s that neither is long enough for a pointer. avr-gcc 4.3.2 / ATmega168 (Arduino Diecimila) The failed assumptions are: ..14 i++ is structly left to right ..16 malloc()=NULL means out of memory ..19-2 short<int ..21 Evaluation is left to right ..22 floating point is always IEEE The Atmega16...
https://www.tsingfun.com/products/328.html 

CruiseControl.Net 进行持续化集成 - IT产品资讯 - 清泛网 - 专注C/C++及内核技术

...过什么样的手段能及时了解持续集成化的结果。 在演示制作之前,我们先来看一下当前的持续集成环境。 工具 地址和路径 Visual Studio SouceSafe 本局域网下一台服务器,IP地址192.168.1.200,共...
https://www.tsingfun.com/it/tech/738.html 

TCP 的那些事儿(上) - 更多技术 - 清泛网 - 专注C/C++及内核技术

...括TCP也是一样的。而TCP所谓的“连接”,其实只不过是在通讯的双方维护一个“连接状态”,让它看上去好像有连接一样。所以,TCP的状态变换是非常重要的。 下面是:“TCP协议的状态机”(图片来源) 和 “TCP建链接”、“TC...
https://www.tsingfun.com/it/os_kernel/1290.html 

Dokan虚拟磁盘开发实战 - 操作系统(内核) - 清泛网 - 专注C/C++及内核技术

...CPClient实现,传输采用了JSON,以便于和服务端的Python脚本通讯。 附录部分是实现的代码,Dokan.pas及superobject.pas等代码请自己搜索下载。 附录(代码部分): //Mirror Drive (从 Mirror Driver修改而来) unit cfMirrorDrive; (**********...