上一页 1 ··· 3 4 5 6 7 8 9 10 下一页
摘要: CSharp读取配置文件的类(简单实现) 注意没有写 阅读全文
posted @ 2017-02-07 11:13 scott_h 阅读(6804) 评论(0) 推荐(0) 编辑
摘要: 最近又又又重复看了 star trek 星际迷航 back to the future 1/2/3 开始想象未来是什么样子的 1. 未来的开发语言 1.1【rust】 or 【golang】 or 【cpp11 = cpp 17 = cppxx】 ? http://en.cppreference.c 阅读全文
posted @ 2017-02-06 14:42 scott_h 阅读(377) 评论(0) 推荐(0) 编辑
摘要: "Google's BBR拥塞控制算法模型解析" "Google's BBR拥塞控制算法如何对抗丢包" 阅读全文
posted @ 2017-02-06 14:39 scott_h 阅读(1276) 评论(0) 推荐(0) 编辑
摘要: 对称加密 非对称加密 阅读全文
posted @ 2017-02-04 17:39 scott_h 阅读(10063) 评论(0) 推荐(0) 编辑
摘要: 推荐 https://www.cnblogs.com/gaochundong/p/csharp_tcp_service_models.html rio msdn "Registered Input/Output (RIO) API Extensions" ) "What's New for Wind 阅读全文
posted @ 2017-02-04 15:30 scott_h 阅读(2082) 评论(0) 推荐(0) 编辑
摘要: https://msdn.microsoft.com/en us/library/windows/desktop/ms740668(v=vs.85).aspx Return code/value Description WSA_INVALID_HANDLE 6 Specified event obj 阅读全文
posted @ 2016-12-15 16:20 scott_h 阅读(447) 评论(0) 推荐(0) 编辑
摘要: Boost安装 阅读全文
posted @ 2016-11-29 15:56 scott_h 阅读(1417) 评论(0) 推荐(0) 编辑
摘要: "golang windows程序获取管理员权限(UAC )" 在windows上执行有关系统设置命令的时候需要管理员权限才能操作,比如修改网卡的禁用、启用状态。双击执行是不能正确执行命令的,只有右键以管理员身份运行才能成功。 为解决此问题,花了很长时间找了各种方法,最终找到一个简单的方法,双击也能 阅读全文
posted @ 2016-10-29 13:49 scott_h 阅读(2487) 评论(0) 推荐(0) 编辑
摘要: "阿里云容器服务 配置自定义路由服务应对DDOS攻击 " 摘要: 容器服务中,除了slb之外,自定义路由服务(基于HAProxy)也可以作为DDOS攻击的一道防线,本文阐述了几种方法来应对普通规模的DDOS攻击 1. TCP洪水攻击(SYN Flood) ECS系统参数调整,应对TCP洪水攻击,打开 阅读全文
posted @ 2016-10-28 14:40 scott_h 阅读(817) 评论(0) 推荐(1) 编辑
摘要: golang "go cache" An in memory key:value store/cache (similar to Memcached) library for Go, suitable for single machine applications. https://patrickm 阅读全文
posted @ 2016-10-18 17:15 scott_h 阅读(282) 评论(0) 推荐(0) 编辑
摘要: 2016年4月开启了几个项目 收费端软件 值得记录有以下几点 1.程序中等待某个事件, 如何处理? 很早很早以前都是用 线程不断while循环, 中间再Sleep(300)//ms 现在用的比较多的是 用同步(Event)通知,否则一直等待。(上层再加个while(bLoop) 在析构的时候bLoo 阅读全文
posted @ 2016-07-15 14:24 scott_h 阅读(260) 评论(0) 推荐(0) 编辑
摘要: V3.0.0 beta2以及之后都是CMake 创建VS Solution,project。 因为只能创建x64的项目工程,有时候需要x86的, 只能创建完x64后,自己修改工程配置弄成x86。 创建步骤参考 protobuf 3.0.0 beta 2/cmake/readme.md cmake G 阅读全文
posted @ 2016-03-21 14:42 scott_h 阅读(2111) 评论(0) 推荐(0) 编辑
摘要: "Virtual Address Space" "Memory Pools" "Memory Performance Information" "Virtual Memory Functions" "Heap Functions" "File Mapping" "Large Memory Suppo 阅读全文
posted @ 2016-02-25 11:08 scott_h 阅读(174) 评论(0) 推荐(0) 编辑
摘要: https://msdn.microsoft.com/library/2kzt1wy3%28v=vs.100%29.aspx http://blog.csdn.net/ybxuwei/article/details/9095067 /MD 动态链接 使应用程序使用运行库的多线程并特定于 DLL 的版 阅读全文
posted @ 2016-02-25 10:54 scott_h 阅读(472) 评论(0) 推荐(0) 编辑
摘要: 中位数(又称中值,英语:Median), 统计学中的专有名词,代表一个样本、种群或概率分布中的一个数值,其可将数值集合划分为相等的上下两部分。 对于有限的数集,可以通过把所有观察值高低排序后找出正中间的一个作为中位数。 如果观察值有偶数个,通常取最中间的两个数值的平均数作为中位数。 集合总数为奇数 阅读全文
posted @ 2015-11-27 00:14 scott_h 阅读(356) 评论(0) 推荐(0) 编辑
摘要: "STUN和TURN技术浅析" "STUN, STUNT, XSTUNT 介绍 " "STUN" STUN (Session Traversal Utilities for NAT) is a standardized set of methods and a net... 阅读全文
posted @ 2015-11-23 00:46 scott_h 阅读(956) 评论(0) 推荐(0) 编辑
摘要: http://www.creytiv.com/ "源码下载" "libre" Toolkit library for asynchronous network IO with protocol stacks including SIP, SDP, RTP, STUN, TURN, I... 阅读全文
posted @ 2015-11-23 00:17 scott_h 阅读(1851) 评论(0) 推荐(0) 编辑
摘要: "OLAP、OLTP的介绍和比较 " 数据处理大致可以分成两大类: OLTP(On Line Transaction Processing)联机事务处理 也称为面向交易的处理系统,其基本特征是顾客的原始数据可以立即传送到计算中心进行处理,并在很短的时间内给出处理结果。 传统的关系型数... 阅读全文
posted @ 2015-11-23 00:01 scott_h 阅读(214) 评论(0) 推荐(0) 编辑
摘要: "nmap" — 网络探测工具和安全/端口扫描器 描述 Nmap (“Network Mapper(网络映射器)”) 是一款开放源代码的 网络探测和安全审核的工具。它的设计目标是快速地扫描大型网络,当然用它扫描单个 主机也没有问题。Nmap以新颖的方式使用原始IP报文来发现网络上有哪些主机,那些 主 阅读全文
posted @ 2015-11-22 23:46 scott_h 阅读(592) 评论(0) 推荐(0) 编辑
摘要: 执行,刷新本地的DNS缓存数据 ipconfig /flushdns 1.DNS和WINS的作用 DNS:(Domain Name Server,域名服务)用于实现域名和IP地址的相互转换。 WINS:(Windows Internet Name Service) 用来将计算机的NetBIOS(Ne 阅读全文
posted @ 2015-11-22 20:36 scott_h 阅读(532) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 下一页