摘要:
先摘一点网上的介绍libevent是一个事件触发的网络库,适用于windows、linux、bsd等多种平台,内部使用select、epoll、kqueue等系统调用管理事件机制。著名分布式缓存软件memcached也是libevent based,而且libevent在使用上可以做到跨平台,而且根... 阅读全文
摘要:
先摘一点网上的介绍libevent是一个事件触发的网络库,适用于windows、linux、bsd等多种平台,内部使用select、epoll、kqueue等系统调用管理事件机制。著名分布式缓存软件memcached也是libevent based,而且libevent在使用上可以做到跨平台,而且根... 阅读全文
摘要:
Arch Linux 安装记录基本上参考wiki上的新手指南,使用arch 2014.6.1 iso安装设置网络有线网络Arch Linux 默认开启DHCP。静态ip首先关闭DHCP:systemctl stop dhcpcd.service,找出网卡名字ip link(例中为enp2s0f0),... 阅读全文
摘要:
你使用的编程语言能这样做吗?——有关匿名函数的介绍翻译自(http://joelonsoftware.com/items/2006/08/01.html),英语好的直接看原版的吧。一天当你浏览你写过的代码时,你发现有两个地方的代码看起来是一样的。事实上,它们基本上就是一样的,除了一处是“Spaghe... 阅读全文
摘要:
Hello World for SDL2SDL2 setting for visual studio.http://lazyfoo.net/tutorials/SDL/01_hello_SDL/windows/msvsnet2010u/index.php1. SDL_Init( SDL_INIT_VIDEO );2. window = SDL_CreateWindow( "SDL Tutorial", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, SCREEN_WIDTH, SCREEN_HEIGHT, SDL_WIND 阅读全文
[zt]Which are the 10 algorithms every computer science student must implement at least once in life?
摘要:
More important than algorithms(just problems #$!%), the techniques/concepts residing at the base of such algorithms is more important.There are broadly 4 ways in which classification of algorithms can be done.Classification by purpose Each algorithm has a goal, for example, the purpose of the Quic.. 阅读全文
|