E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
Making
Hard Drive—Bill Gates and the
Making
of the Microsoft Empire——史经浩
过年放假期间,在家看了这本书,感触颇深。在这分享一下我的一些心得。 关于本书此书的名字叫做《Hard Drive》,你可别理解错,这不是一本讲述硬盘的书。这个名字取自书中Bill Gates接收采访时说的一句话:"You've got to drive very hard."此书是由西雅图邮讯报(The Seattle
·
2015-10-31 11:26
Microsoft
BZOJ 1592: [Usaco2008 Feb]
Making
the Grade 路面修整( dp )
最优的做法最后路面的高度一定是原来某一路面的高度. dp(x, t) = min{ dp(x - 1, k) } + | H[x] - h(t) | ( 1 <= k <= t ) 表示前 i 个路面单调不递减, 第 x 个路面修整为原来的第 t 高的高度. 时间复杂度O( n³ ). 令g(x, t) = min{ dp(x, k) } (1 <= k <
·
2015-10-31 11:49
USACO
The Business of Android Apps Development
Making
and Marketing Apps that Succeed
The Business of Android Apps Development
Making
and Marketing Apps that Succeed 这本书讲述了如何成功的开发、营销
·
2015-10-31 11:28
android
Don't optimize prematurely
[Copied From C++ Coding Standards--chapter 8] We define premature optimization as
making
designs or
·
2015-10-31 11:28
mat
ASP.NET与Javascript中获取URL信息
上次看到一篇
Making
sense of ASP.Net Paths关于.NET中获取URL相关信息的文章,感觉总结的很好,消除了我一些模糊的认识。
·
2015-10-31 11:51
JavaScript
The Next Open Web Platform
About W3C we are
making
standards for the web. It was created by Tim Berners-Lee in 1994.
·
2015-10-31 11:57
form
修改linux系统启动时默认等待时间
打开这个文件,可以看到内容如下: # grub.conf generated by anaconda## Note that you do not have to rerun grub after
making
·
2015-10-31 11:42
linux
Preloading an Image with jQuery--reference
Preloading images will make your application a bit faster by
making
it lightweight.
·
2015-10-31 10:01
reference
FAQ about AJAX-part I
A: Actually, your pages are still
making
request and getting responses. you 'are using a different approach
·
2015-10-31 10:17
Ajax
Web前端优化>图象篇
的 Stoyan Stefanov 做的 Image Optimization: How Many of These 7 Mistakes Are You
Making
也非常有参考价值。
·
2015-10-31 10:09
web前端
dial a tel number with lync sdk
http://stackoverflow.com/questions/6018136/
making
-audio-calls-using-microsoft-lync-from-a-third-party-application-lync-sd
·
2015-10-31 10:25
number
mysqldump不得不说的秘密
Many people use mysqldump –single-transaction to get consistent backup for their Innodb tables without
making
·
2015-10-31 10:13
MysqlDump
世界可用性日你听说了嘛?
HFI赞助世界可用性日,主题是“
Making
it easy” 来自Ergoweb 在2005年11月3日, 一个全世界性连续事件将通过“
Making
it easy
·
2015-10-31 10:33
可用性
Reference Basic in Perl
Making
References References can be created in several ways.
·
2015-10-31 10:30
reference
/usr/local/lib/libz.a: could not read symbols: Bad value(64 位 Linux)
usr/local/lib/libz.a(crc32.o): relocation R_X86_64_32 against `a local symbol' can not be used when
making
·
2015-10-31 10:24
linux
(K&R)与柯尼汉(Kernighan)谈丹尼斯·里奇(Ritchie)
(Andy参加了
Making
Software,Beautiful Code等多部著作的编写。)原文发表在O'Reilly Radar。
·
2015-10-31 10:11
IE
Making
your C++ code robust
感觉这篇文章总结的不错,就转载过来了,原文链接:http://blog.csdn.net/xxxluozhen/article/details/6611663 我已经总结了几条代码设计的方法和规则,在下文一一列出,希望能够帮助你避免犯一些错误,使得你的程序更加健壮。 Initializing Local Variables &nb
·
2015-10-31 10:53
code
Exceptional Performance : Best Practices for Speeding Up Your Web Site
Speeding Up Your Web Site The Exceptional Performance team has identified a number of best practices for
making
·
2015-10-31 10:43
performance
GNU make manual 翻译( 一百五十)
Defining Canned Recipes =========================== When the same sequence of commands is useful in
making
·
2015-10-31 09:46
Make
Interesting Finds: 2009 01.31~02.01
.NET Merlin Wizard Framework - A framework for easily
making
wizards in .NET.
·
2015-10-31 09:25
REST
Building a 3D Portal Engine 笔记之(1) Data Structure For 3D Graphics
You won't get good by reading books, you get good by
making
mistakes.
·
2015-10-31 09:32
graphics
【摘录】Using Webservices ( SOAP ) in BREW
This post deals with
making
the SOAP based Webservices API to work in the BREW environment.
·
2015-10-31 09:42
WebServices
Best Practices for Speeding Up Your Web Site
Minimize HTTP Requests The Exceptional Performance team has identified a number of best practices for
making
·
2015-10-31 09:38
Web
making
an os NO.1 怎样进内核之三
前面提到了boot和loader。boot存在是因为存储介质的第一个扇区只有512个字节。要在这么少的空间内完成加载内核前的准备工作,有点困难。所以要写个boot,去引导loader。再由load去完成加载内核前的准备工作。 boot的主要工作是从存储介质中寻找loader,并加载loader到指定的内存。然后把控制权交给loader。loader得到控制权后,完成加载内核的准备工作。这个包括,
·
2015-10-31 09:30
OS
making
an os NO.1 怎样进内核之二
进内核的确是个麻烦的活。从16跳到32后,先得熟悉一下32的汇编环境。 其中主要的寄存器有: 4个数据寄存器(EAX、EBX、ECX和EDX)2个变址和指针寄存器(ESI和EDI) 2个指针寄存器(ESP和EBP)6个段寄存器(ES、CS、SS、DS、FS和GS)1个指令指针寄存器(EIP) 1个标志寄存器(EFlags) 32位的指令没有太大的变化。但是在段
·
2015-10-31 09:30
OS
making
an os NO.1 怎样进内核之一
现在看的是怎样将系统引导进编制的操作系统内核。以《orang‘s os 一个操作系统的编制》为参考。首先要做的就是在存储介质的前512个字节上大作文章,写程序。而进内核,一种方案是自己写个16位汇编程序,放进512。用这个程序去引导内核,就像开源项目grub一样。但很明显,这样做起来,无论从技术和代码量上都不易 。我学着书中所说,还是用dos引导吧。先把原型做出来,再在上面增添功能
·
2015-10-31 09:30
OS
Carmack: Just About Everything id Makes Coming To iPhone
beginning for id Software on the iPhone, with everything from Wolfenstein RPG to the upcoming Rage
making
·
2015-10-31 09:40
iPhone
【译】Python中如何创建mock?
原文地址:http://engineroom.trackmaven.com/blog/
making
-a-mockery-of-python/ 今天我们来谈论下mock的使用。
·
2015-10-31 09:44
python
Hard disk & partition(collection)
Most operating systems allow users to divide a hard disk into multiple partitions,
making
one physica
·
2015-10-31 09:06
Collection
SGU 152.
Making
round
不断向下取直到,忽略的数累计到一个百分比,给当前百分比加1。 这道题要避免处理浮点数,用余数来处理,不然会wa 9 #include <iostream> #include <cmath> using namesp
·
2015-10-31 09:29
round
In-App Purchase--
Making
a Purchase(4)
Making
a Purchase When the user is ready to purchase an item, your application asks the App Store to
·
2015-10-31 08:33
APP
Displaying icons in a Flex ComboBox control
making
the ComboBox control display icons also should be pretty trivial.
·
2015-10-31 08:58
combobox
[线索二叉树] [LeetCode] 不需要栈或者别的辅助空间,完成二叉树的中序遍历。题:Recover Binary Search Tree,Binary Tree Inorder Traversal
线索二叉树介绍 首先我们引入“线索二叉树”的概念: "A binary tree is threaded by
making
all right child pointers
·
2015-10-31 08:20
Binary search
<转>CProcessData : A template class to ease up SendMessage calls across processes
template class that makes it easy to use data allocated in a different process, and is useful when
making
·
2015-10-30 18:33
template
Text Relatives II
When your app determines that the user has requested the edit menu—which could be the action of
making
·
2015-10-30 16:39
relative
Event Functions
【Event Functions】 A key concept in games programming is that of
making
changes to position, state
·
2015-10-30 16:28
functions
Interesting Finds: 2009 10.01 ~ 10.08
Site from One to One Million Users Reunifying duplicate content on your website - A proposal for
making
·
2015-10-30 14:29
REST
多亏了,这个,解决了padding的问题
for the web application I am working with was overriding some css attributes of the tables
making
·
2015-10-30 14:59
padding
深层解析:构建facebook应用商店推荐引擎
Facebook Platform have launched over the years, the types of apps available have become more diverse,
making
·
2015-10-30 14:33
Facebook
转我在敏捷中国Open Space上发起的讨论主题——如何激励,用绩效考核吗?
2010/10/15/1852613.html 第五届敏捷中国大会刚刚落幕,两天听了14场演讲(因为每天的下午都有两个分会场,有8场演讲没有听到),整体还是不错的,给我印象比较深的是Mary的《
Making
·
2015-10-30 14:00
open
Making
IE use PNG Alpha transparency
Deprecated This fix is deprecated and is no longer supported (meaning that I will not help you to get it working with your pages). It was only written to fill the gap while waiting for Internet Ex
·
2015-10-30 13:34
Alpha
每日英语:Electronics Develop A Sixth Sense
But there is plenty of action in
making
today's products smarter. gadget:小玩意,小工具,小配件 convene
·
2015-10-30 13:29
EL
soj1046. Plane Spotting
Making
photographs of planes forms a major part of his daily life. Since he tri
·
2015-10-30 13:57
ANE
Quartz.net Tutorial Lesson 2
:任务与触发器 As mentioned previously, you can make .NET component executable by the scheduler simply by
making
·
2015-10-30 13:43
quartz
creating normals from alpha/heightmap inside a shader
t=117185 I am
making
some custom terrain shaders with strumpy's editor and I want to be able
·
2015-10-30 13:49
height
【译】使用 Python 编写虚拟机解释器
原文地址:
Making
a simple VM interpreter in Python 更新:根据大家的评论我对代码做了轻微的改动。
·
2015-10-30 12:19
python
CEGUI Release of 0.5.0 stable by CrazyEddie 6th November 2006
http://www.cegui.org.uk/wiki/index.php/Main_PageIt has been almost a year in the
making
, but it is finally
·
2015-10-30 12:04
table
Making
URL rewriting on IIS 7 work like IIS 6
Upgrading to IIS 7 should be rather transparent, unfortunately that is not the case when it comes to URL rewriting as we knew it from IIS 6. In IIS 6 all we had to do was to add a wildcard mapping mak
·
2015-10-30 12:39
like
ZOJ 3866 Cylinder Candy
Limit: 65536 KB Special Judge Edward the confectioner is
making
·
2015-10-30 11:13
ZOJ
易用为王:改进产品设计的10个策略
《易用为王:改进产品设计的10个策略》 基本信息 原书名:Usable usability:simple steps for
making
stuff better 作者: (美)Eric
·
2015-10-30 11:39
产品设计
上一页
12
13
14
15
16
17
18
19
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他