码迷,mamicode.com
首页 > 其他好文
attribute与property区别总结
在前阵子看JQuery源码中,attr()的简单理解是调用了element.getAttribute()和element.setAttribute()方法,removeAttr()简单而言是调用element.removeAttribute(),而prop()简单理解是element.xxx方式存取...
分类:其他好文   时间:2015-01-15 23:42:09    阅读次数:198
成为天才的方法--刻意训练
2006 年,一本 900 多頁的書,The Cambridge Handbook of Expertise and Expert Performance, 出版。這是「怎樣煉成天才」研究的一本里程碑式的學術著作,此書直接引領了後來一系列暢銷書的出現,包括格拉德威爾的《異數》,Geoff Co...
分类:其他好文   时间:2015-01-15 23:42:05    阅读次数:240
uva 01350
1350 - Pinary`Pinary" number is a positive number using only two digits ``0" and ``1" with usual rule that it must not begin with a 0, and the additio...
分类:其他好文   时间:2015-01-15 23:43:44    阅读次数:323
step by step 之餐饮管理系统三
1、说明表名的长度最长为18个字符茶色的字段为主键或联合主键浅黄色的字段为索引浅灰底色的字段为临时表中比正式表多出的字段数据库系统:Sqlserver2008脚本工具:使用CodeGenerate生成文档数据库名称: rmsdb事件探查器:AnjLab2 表结构说明,此表结构是在powerdesig...
分类:其他好文   时间:2015-01-15 23:43:06    阅读次数:263
uva 01510
1510 - Neon SignJungHeum recently opened a restaurant called ‘Triangle’ and has ordered the following neon sign for hisrestaurant. The neon sign has N...
分类:其他好文   时间:2015-01-15 23:41:38    阅读次数:251
2015-01-15
软件开发项目失败的3个原因http://www.codeceo.com/article/3-reason-project-fail.html软件公司是如何一步步走向死亡的 http://www.codeceo.com/article/how-software-company-die.html
分类:其他好文   时间:2015-01-15 23:41:33    阅读次数:131
一个CLI的 的例子
1)这是CLI 调用HTTPOST例子#using using namespace System;using namespace System::Net;using namespace System::Text;using namespace System::IO;// Specify the UR...
分类:其他好文   时间:2015-01-15 23:43:03    阅读次数:309
读取位图(bitmap)实现及其要点
位图的格式如下: 1.文件头信息块 0000-0001 :文件标识,为字母ASCII码“BM”。 0002-0005 :文件大小。 0006-0009 :保留,每字节以“00”填写。 000A-000D :记录图像数据区的起始位置。各字节的信息含义依次为:文件头信息块大小,图像描述信息块的...
分类:其他好文   时间:2015-01-15 23:40:40    阅读次数:146
救命用的
...
分类:其他好文   时间:2015-01-15 23:42:41    阅读次数:267
DatePicker隐藏年/月/日
有时候项目中进行时间设置时,只需要设置年/或月/或日。这时候就需要对相应的部分进行隐藏。1 DatePicker datePk = (DatePicker) findViewById(R.id.dp_date);2 // 获取到年/月/日所在的组件群3 ViewGroup targetGroup =...
分类:其他好文   时间:2015-01-15 23:41:19    阅读次数:221
kickstart+ftp+tftp+dhcp+PXE
##########yumless install.log #看安装logyum install system-config-kickstart* -yyum install tftp* -y #TFTPyum install dhcp* -y #DHCPyum install vsftp* ...
分类:其他好文   时间:2015-01-15 23:41:30    阅读次数:194
BCM6358 进入CFE界面
默认用户名密码:telecomadminnE7jA%5m如果在cfe下进行了e a操作,那么密码也变成telecomadmin注: 所谓 e a,指的是除了cfe,其他在flash上的内容全部清除。CFE界面Initializing Arena.Initializing Devices.Parall...
分类:其他好文   时间:2015-01-15 23:41:48    阅读次数:1027
uva 01393
1393 - HighwaysHackerland is a happy democratic country withm×ncities, arranged in a rectangularmbyngrid and connected bymroads in the east-west direc...
分类:其他好文   时间:2015-01-15 23:41:15    阅读次数:259
fdisk,mount.label
########fdiskll /dev/sda*df -THfdisk -culfdisk -cu ~~n~~p~~+1G~~partx -a /dev/sda########EXT4mkfs.ext4 /dev/sda6mke2fs -b 4096 /dev/sda6tune2fs -l /de...
分类:其他好文   时间:2015-01-15 23:37:01    阅读次数:179
【随笔】ssh登录时如何直接在参数中加入登录密码
如同apt-get安装程序时会有-y参数来避免交互输入一样,我也希望在ssh登录时能够直接附加登录密码以避免交互式输入密码这一步,网上找了找,方法很多。 比如直接通过密钥免密码登录,不过需要改动很多,感觉很麻烦。这里更想要的是不改动server/client的配置下直接免交互式ssh登录。 ...
分类:其他好文   时间:2015-01-15 23:35:18    阅读次数:7616
不能成为天才,也要超越自己
所有物质里面,时间是最重要的,而人可以很好的管理时间,利用时间,所以人很厉害--你也不例外。不能保证你能成为天才,但是可以担保你会成为高手成为高手的秘诀:不断的重复。 不断的重复做你做不好的事。 精神高度集中的不断重复做你做不好的事。只要不断的重复(时间),然...
分类:其他好文   时间:2015-01-15 23:35:54    阅读次数:174
【leetcode】Recover Binary Search Tree
Recover Binary Search TreeTwo elements of a binary search tree (BST) are swapped by mistake.Recover the tree without changing its structure.Note:A sol...
分类:其他好文   时间:2015-01-15 23:35:43    阅读次数:164
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!