
编程
文章平均质量分 87
vingstar
这个作者很懒,什么都没留下…
展开
-
《Unix高级环境编程》 读书笔记(2)(ch3~ch6)
to be continued···原创 2013-08-15 11:10:45 · 678 阅读 · 0 评论 -
《设计模式》读书笔记_A
title:Elements of Reusable Object-Oriented Software> author: Erich Gamma, Richard Helm, Ralph Johnson, John Vlissides version: 1st (1995)原创 2015-04-16 21:20:17 · 838 阅读 · 0 评论 -
《The Pragmatic Programer》 reading notes
《The Pragmatic Programer-- from journeyman to master》原创 2014-10-20 20:49:45 · 714 阅读 · 0 评论 -
Python 学习_Lesson 0
python变得越来越重要,尤其是作为一个十分出色的script语言。所以有必要学习一下基本的Python知识。 一,Wiki http://en.wikipedia.org/wiki/Python_(programming_language) 开锁原创 2014-01-11 16:19:40 · 1262 阅读 · 0 评论 -
MapReduce大数据处理技术课程复习提纲
Mapreduce课程接近尾声,在此将之前课上的内容做一个简要的总结。原创 2014-05-26 22:48:32 · 3910 阅读 · 0 评论 -
使用Jerasure library实现一些erasure coding
该库source code及其说明文档所在: http://www.cs.utk.edu/ ̃plank/plank/papers/CS-08-627.html原创 2014-02-28 09:27:16 · 5334 阅读 · 2 评论 -
编程的本质是逻辑性思维
编程的过程就是将一个数学化的、有逻辑的过程用一种适合的语言正确的表达出来。原创 2013-10-29 15:18:00 · 907 阅读 · 0 评论 -
C++与Linux网络编程实战
C++与Linux网络编程实战 序言: 最近老板给我的这个课题中,我的主要工作是进行论文中所设计的算法与整个系统的原型implementation与大规模实际场景的simulation。这对于没有较大规模编程经验的我来说,不啻为一次较大的挑战,虽然我更加喜欢原创性的科研思考工作,但基本的编程能力对于任何一个计算机人来说,都是基础而重要的。所以也打算借这次机会好好的把自己的编程能力与原创 2013-09-18 10:03:54 · 2459 阅读 · 0 评论 -
Reading Notes on《Code Complete 2nd》
Construction is at the center of the software-development process. Construction's product, the source code, is often the only accurate description of the software Construction is the only act原创 2013-10-12 17:15:40 · 778 阅读 · 0 评论 -
Reading notes on <The Art of Unix Programming>(1)
[ Team LiB ] 1.6 Basics of the Unix Philosophy The 'Unix philosophy' originated with Ken Thompson's early meditations on how to design a small but capable operating system with原创 2013-10-11 15:36:39 · 866 阅读 · 0 评论 -
<The Unix Programming Environment>书摘
Brain W.kernighan&& Rob pike 1984 Prentice_Hall. 这本书年代稍微有点久远,但血统绝对的纯正,现阶段我们阅读此书主要是感受这些inventors的设计思想以及一些经验。 Preface "Even though the Unix system introduces a number of innovative programs and原创 2013-10-13 10:02:07 · 664 阅读 · 0 评论 -
《C++ Primer 5th edition》学习笔记(1)
《C++ Primer 5th edition》学习笔记(1) C++ Primer 5th is the latest edition of this book. It provide many contents about the C++11 standard.原创 2013-09-18 11:10:43 · 728 阅读 · 0 评论 -
UNIX 多线程编程入门
(本文主要根据《UNIX network programming--the socket networking API》第三版第一卷 第26章 学习总结而来,特此声明) 1,简介 一般的我们在网络服务器端实现多个接入连接的处理时是通过fork()得到多个进程来分别的对付各个接入连接。但是使用fork()产生进程这种方式也是有缺点的,主要的缺点有两点,一是expensive,即由原创 2013-09-09 14:59:52 · 999 阅读 · 0 评论 -
<UNIX高级环境编程>读书笔记(3)【第7、8章】
这两章主要介绍process相关的知识。 chapter 7 Process Environment 7.1 Intro 本章主要介绍一个进程的完整运行环境。we'll see how the main function is called when the program is executed, how command-line arguments are passed to the原创 2013-09-07 17:15:00 · 1338 阅读 · 0 评论 -
《Unix高级环境编程》 读书笔记(1)(ch0~ch2)
《Unix高级环境编程》 读书笔记 Reading Notes (使用的是2005年的英文第二版) "One of the essential classics of UNIX programming." —Eric S. Raymond, author of The Art of UNIX Programming Forward by Dennis Ritchie:原创 2013-08-14 17:27:46 · 1479 阅读 · 0 评论 -
python自学笔记
主要资料:python核心编程第二版一本 2016年9月10日-- 1,第一章: welcome 个人试着下载了Pycharm这一个IDE,并主要进行了run、debugger等方面的简单实验: 参考链接 http://blog.youkuaiyun.com/chenggong2dm/article/details/9368641 1,第二章 快速入门原创 2016-09-10 16:37:11 · 520 阅读 · 0 评论