码迷,mamicode.com
首页 > 其他好文
产品经理之原型灵感
计划2015年每天写一篇文章 由于文章编辑器的效率实在太低,所以选择演示文稿导出成图片 部分内容直接使用我在曾经北京航空航天大学开设的《移动终端用户交互工程》的演示文稿,同样效率原因因而直接贴图片...
分类:其他好文   时间:2015-01-26 19:18:51    阅读次数:209
系统垃圾清理脚本
系统垃圾清理脚本代码...
分类:其他好文   时间:2015-01-26 19:16:51    阅读次数:227
scala private private[package] protected 使用说明
package com.scala.idle object PrivateDoor {   def main(args: Array[String]): Unit = {     val privateContainer = new PrivateContainer()     //访问共有变量     println(privateContainer.publicVar)  ...
分类:其他好文   时间:2015-01-26 19:16:08    阅读次数:173
美国海军(NPS)的OSG教程——示例代码一
//OSG 3.2版本 osg::Group *root = new osg::Group(); osg::Geode *pyramidGeode = new osg::Geode(); deprecated_osg::Geometry *pyramidGeometry = new deprecated_osg::Geometry(); //注意,用deprecated_osg,某些功能...
分类:其他好文   时间:2015-01-26 19:16:19    阅读次数:617
[leetcode] 152 Maximum Product Subarray
问题描述: Find the contiguous subarray within an array (containing at least one number) which has the largest product. For example, given the array [2,3,-2,4], the contiguous subarray [2,3] has the l...
分类:其他好文   时间:2015-01-26 19:18:05    阅读次数:145
Address already in use: AH00072: make_sock: could not bind to address 0.0.0.0:80
ubuntu上安装Apache2时出现错误Address already in use: AH00072: make_sock: could not bind to address 0.0.0.0:80 端口被占用造成在root权限下键入命令:# netstat -lnp | grep 80从图中可...
分类:其他好文   时间:2015-01-26 19:16:54    阅读次数:268
DataStage系列教程 (Change Capture)
Change Capture可以比较具有相同列的数据集的差异,得出一个数据集(After)在另一个数据库(Before)的基础上产生的哪些变化。变化类型如表1:变化代码变化中文说明0no change无变化1insert新增2delete删除3edit有变化表1 变化种类1 JOB示例如图1,我们最...
分类:其他好文   时间:2015-01-26 19:15:50    阅读次数:215
上班族苦命啊,工资不搞,还得颈椎病,颈椎病全身都是病
上班族苦命啊,工资不搞,还得颈椎病,颈椎病全身都是病 生活中,人们常常嚷嚷颈椎疼,却很少拿它当回事,也不刻意保护颈椎。专家指出,“万病之源,起于颈椎”,如果保护不好颈椎,整个身体都会生病。 颈椎不好疾病多 专家指出,颈椎作用大,却容易出问题。因为活动频率高、负重大,颈椎极易发生退行性病变。 骨科上一...
分类:其他好文   时间:2015-01-26 19:14:29    阅读次数:154
centos6.4中文输入法安装和切换(转载)
centos6.4中文输入法安装和切换(转载)1、用root登录,或者切换到root账户(su root);2、yum install "@Chinese Support";3、exit;4、System→preferences→input method;(如果没有,注销用户重新登录系统重试)5、在...
分类:其他好文   时间:2015-01-26 19:12:52    阅读次数:121
source, export, which 命令学习
参考: http://blog.csdn.net/wangyangkobe/article/details/65951431. source命令source filename 与 sh filename 及./filename执行脚本的区别在那里呢?1.当shell脚本具有可执行权限时,用sh fi...
分类:其他好文   时间:2015-01-26 19:14:32    阅读次数:178
常用设计模式 简单实例
1.单例设计模式 所谓单例设计模式简单说就是无论程序如何运行,采用单例设计模式的类(Singleton类)永远只会有一个实例化对象产生。具体实现步骤如下: (1) 将采用单例设计模式的类的构造方法私有化(采用private修饰)。 (2) 在其内部产生该类的实例化对象,并将其封装成private s...
分类:其他好文   时间:2015-01-26 19:13:04    阅读次数:255
CFileFind
1、CFileFind类的声明文件保存在afx.h头文件中。2、该类的实现的功能:执行本地文件的查找(查找某个具体的文件,查找某类文件x*.x*,查找所有文件*.*)3、CFileFind类是CGopherFileFind和CFtpFileFind类的基类。4、CFileFind类的构造函数::CF...
分类:其他好文   时间:2015-01-26 19:12:31    阅读次数:181
企业官网代码解释
html 静态文件: 1 2 7 8 9 XXX 10 11 12 13 14 15 16 17 18 ...
分类:其他好文   时间:2015-01-26 19:11:21    阅读次数:223
POJ2159Ancient Cipher
DescriptionAncient Roman empire had a strong government system with various departments, including a secret service department. Important documents we...
分类:其他好文   时间:2015-01-26 19:13:07    阅读次数:165
CentOS 常用快捷键
常用命令:文件和目录:# cd /home 进入 '/home' 目录# cd .. 返回上一级目录# cd ../.. 返回上两级目录...
分类:其他好文   时间:2015-01-26 19:11:45    阅读次数:191
Docker 字典
File System为了让Linux运行起来,通常需要2个file systemboot file system (bootfs)root file system (rootfs)在传统的Linux boot, kernel首先mount(挂载)rootfs, 此时为read-only模式, 然后...
分类:其他好文   时间:2015-01-26 19:09:35    阅读次数:149
[转]为ReportViewer导出的PDF文档加上水印
接到一個頗富挑戰性的需求,Reporting Service或RDLC報表可匯出成Excel、PDF等檔案格式,對一般麻瓜型使用者而言,PDF唯讀,Excel則可修改,業務單位希望在拿到報表紙本時加以區分;換句話說,如果能讓PDF與Excel檔的列印結果有別,即可做為報表結果是否唯讀,有無被修改可能...
分类:其他好文   时间:2015-01-26 19:11:20    阅读次数:201
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!