摘要:
一、U盘引导,安装前的准备1、U盘一枚,至少2G2、下载并安装虚拟光驱,这里我用的是UltralSO.二、制作引导盘1、打开UltraISO软件,选择文件->打开,打开需要烧录的镜像文件: 2、选择启动---写入硬盘映像 选择u盘 3、选择硬盘驱动器为U盘所在盘符,写入方式为USB-HDD+,点击便携启动->写入新的硬盘主引导记录->USB-HDD+,在弹出的对话框中选择“是”写入完成之后,启动盘制作完成,这时候需要将需要安装的系统镜像拷贝到硬盘里三、开始引导安装1、启动服务器,并设置BIOS从u盘引导。 2、启动后直接选择install 3、从这一步开始基本上跟普通装系统一 阅读全文
摘要:
MainActivity如下:package cc.testunitswitch;import android.os.Bundle;import android.util.DisplayMetrics;import android.app.Activity;/** * Demo描述: * 利用代码实现dp,px,sp之间的相互转换 * * 参考资料: * 1 http://blog.csdn.net/fx_sky/article/details/8588703 * 2 http://blog.csdn.net/lfdfhl/article/details/8227257 * Thank ... 阅读全文
摘要:
基本参考 http://nagios.sourceforge.net/docs/3_0/quickstart-ubuntu.html,直接apt-get install的话应该更快。要监控url,参考:http://stackoverflow.com/questions/9246557/monitoring-urls-with-nagios 如何避免sendmail发出的邮件被当做垃圾邮件 http://blog.csdn.net/passion_wang/article/details/6259594 阅读全文
摘要:
关于 Eclipse 开发C++ Socket ,在开发的过程中 用WinGW 平台编译, 示例server端:#include #include #include #include using namespace std;#pragma comment(lib, "ws2_32.lib") #pragma comment(lib, "mswsock.lib")DWORD IniSOCKDLL() { WORD wVersionRequested; WSADATA wsaData; int err=0;wVersionRequested = MAKEWO 阅读全文
摘要:
Problem Description Given a sequence a[1],a[2],a[3]......a[n], your job is to calculate the max sum of a sub-sequence. For example, given (6,-1,5,4,-7), the max sum in this sequence is 6 + (-1) + 5 + 4 = 14. Input The first line of the input contains an integer T(1using namespace st... 阅读全文
摘要:
Most processes can be described as either I/O bound or CPU bound.大多数进程都可以描述为IO绑定或者CPU绑定。 An I/O-bound process is one that spends more of its time doing I/O than it spends doing computations. A CPU-bound process, in contrast, generates I/O requests infrequently, using more of its time doing computati 阅读全文
摘要:
之前一直用theano训练样本,最近需要转成c或c++实现。在网上参考了一下其它代码,还是喜欢c++。但是看了几份cpp代码之后,发现都多少有些bug,很不爽。由于本人编码能力较弱,还花了不少时间改正。另外又添加了写权值和读权值的功能,可以保存训练的结果。下面是代码实现的基本功能描述。问题描述:用cpp重写mlp,即普通的多层神经网络。需要实现多个隐藏层与输出层互连,分类层采用softmax分类。测试例子:测试例子为自己构造,将3位二进制转为10进制有8中可能,我分别让它们对应label0-7。例如:001对应的label为1,111对应的label为7,以此类推下面看代码:main.cpp# 阅读全文
摘要:
linux的内核版本是2.6.18,x86_64.man里的解释是:EBADFThe argument s is an invalid descriptor我的模拟测试环境是:前端loadrunner模拟web点击,通过后端的weblogic压自己的服务的时候发现,有时候recv会收到这个错误,意思就是这个fd已经失效了,但是有点不是很明白,所以查询下内核实现,验证下。首先recv的实现就是调用的recvfrom: /* * Receive a datagram from a socket. */asmlinkage long sys_recv(int fd, void __user * u. 阅读全文
摘要:
在这里我使用Gridview中自带的分页,然后进行扩展,代码如下: 第">页 /共" />页 ' CommandName="Page" CommandArgument="First"> ' ... 阅读全文
摘要:
MyEclipse中配置Weblogic10服务器在MyEclipse中配置Weblogic10服务器也是很简单,现在将过程分享给有需要的人。1、在下方的Server选项卡中,鼠标右键选择“Configure Server Connector”选项,如下所示:2、然后在出现的首选项的页面中,选择左方的weblogic10.x节点,将右方的状态改变为可用,然后选择Weblogic10.x的主目录,如下所示:3、然后输入用户名和密码,然后选择某个域的目录,如图所示:4、输入完需要的信息后,各项的信息如下图所示:5、然后保存退出,按照启动tomcat那样启动服务器,启动成功后,输出的日志信息如下图所 阅读全文