2017-08-11 AnnatarHe
众所周知,Nginx 使用 异步, 事件驱动来接收连接。这就意味着对于每个请求不会新建一个专用的进程或者线程(就像传统服务端架构一样),它是在一个工作进程中接收多个连接和请求。为了达成这个目标,Nginx 用在一个非阻塞模式下的 sockets 来实现,并使用例如 epoll 和 kqueue 这样高效的方法。 继续阅读 »
2012-12-30 Klaus Ma
In a large cluster, some un-expected long running task hold back the job’s runtime sometimes. And those long running tasks are hard to locate in such a large cluster. Some ideas are shown here to help to locate those long running tasks. One of them will be implemented in the coming released of OGL. 继续阅读 »
2016-01-04 Jason Liao
Glad you back @Drake React.Component or React.createClass 刚刚学习 React 的时候,有很多教程创建一个 React 组件的时候,都是使用 React.createClass,那是 ES6 还没有广泛使用的时候的语法,后来在 React v0.13 的时候,就可以使用 ES6 的 class 来创建 React 组件,也就是继承 React.Component。 继续阅读 »
2016-06-13 Lu Huang
本节实现的是使用OpenCV里自带的函数,在双击图片时,以其为圆心绘制圆。 回调函数 捕捉鼠标事件 实现过程 引用与创建空图 不再赘述,代码如下。 ``` python import cv2 import numpy empty image img = np.zeros((512, 512, 3), np.uint8) ``` 设置回调函数 检测鼠标事件,如果左击鼠标则绘制圆。 ```python call back function def draw_circle(event, x, y, flags, param): if event == cv2.EVENT_LBUTTONDBLCLK: 继续阅读 »
2017-03-30 LEo
go提供了一个list包,类似python的list,可以存储任意类型的数据,并提供了相应的API,如下: go type Element func (e *Element) Next() *Element func (e *Element) Prev() *Element type List func New() *List func (l *List) Back() *Element func (l *List) Front() *Element func (l *List) Init() *List func (l *List) InsertAfter(v interf 继续阅读 »
2015-01-28 veryyoung
N久之前的一个遗留sql,今天一个同事用上了 一条update语句,漏了where语句,直接全表更新,花了一张表..... 悔恨得要命啊!!!! 没办法,赶紧想办法恢复!!! mysql如果开启了bin-log的功能,可找出bin-log,基于bin-log用mysqlbinlog命令去恢复数据。 下面是mysqlbinlog的一些介绍http://dev.mysql.com/doc/refman/5.0/en/mysqlbinlog.html 大致用法如下 mysqlbinlog --start-date="" --stop-date= "" mysql_binglog.00001 > back.sql 执行该命令 继续阅读 »
2014-11-24 AllanChan
文章转自 -- https://boz.com/articles/say-no.html I joined Facebook when there were around a dozen engineers. There wasn’t any formal organizational structure back then but co-founder Dustin Moskovitz was unquestionably the head of engineering. He had built and deployed most of the critical technologies himself over the co 继续阅读 »
2020-11-17 Robin Wen
文/Robin 最近在 Product Hunt 上看到一个项目,名叫 StormX。这是一个什么样的项目呢? Earn Crypto while you shop at your favorite stores with the award-winning Crypto Cash Back App that took the internet by Storm. StormX is a fun and easy way to earn free cryptocurrency rewards! Earn cryptocurrency like Bitcoin, Ethereum, Dai, YFI, Litecoin and 继续阅读 »
2020-07-16 Robin Wen
文/Robin 据福布斯报道,今日凌晨,多位名人政要、一些公司以及加密货币大 V 的推特账号被黑客袭击,包括苹果公司、特斯拉 CEO 埃隆・马斯克、比尔・盖茨、美国前总统奥巴马、美国总统候选人拜登、彭博社创始人 Bloomberg,著名歌手侃爷 Kenye West、Gemini、Coinbase、币安 CEO 赵长鹏、Tron 波场创始人孙宇晨、区块链媒体 CoinDesk 等推特账户都发布了相关的数字货币钓鱼骗局信息。 这个诈骗信息长什么样呢? I am giving back to my community during COVID-19! All Bitcoin sent to my address below 继续阅读 »