首页 > 2014年08月01日 > 全部分享
[openfair]解决在centos x64 上安装openfire出现的错误
在centos x64 上安装openfire,运行/etc/init.d/openfire start后发现服务器没法开启,查看log日志:nohup: failed to run command `/opt/openfire/jre/bin/java': No such file or dire...
分类:其他   时间:2014-08-01 04:48:11    收藏:0  评论:0  赞:0  阅读:436
知识大杂烩
最近主要搞项目实战,苦于自己linux环境下各种不会和不熟,所以顺便记录下浏览过的各种资料,以后忘了回来复习:以下资料完全是随手记录,没有任何顺序,需要用直接^F找就行了。1. ps aux指令详解http://blog.csdn.net/hanner_cheung/article/details/...
分类:其他   时间:2014-08-01 04:47:51    收藏:0  评论:0  赞:0  阅读:360
请保护我们的地球
大片大片的珊瑚正在死亡,请保护我们的地球。 转眼就... 希望明天不会是
分类:其他   时间:2014-08-01 04:47:41    收藏:0  评论:0  赞:0  阅读:312
[leetcode]Longest Palindromic Substring
Longest Palindromic SubstringGiven a stringS, find the longest palindromic substring inS. You may assume that the maximum length ofSis 1000, and there...
分类:其他   时间:2014-08-01 04:47:25    收藏:0  评论:0  赞:0  阅读:311
白帽子讲Web安全1.pdf
第一章 我的安全世界观安全是一个持续过程6种威胁:Spoofing(伪装)、Tampering(篡改)、Repudiation(抵赖)、InformationDisclosure(信息泄漏)、Denial of Service(拒绝服务)、Elevation of Privilege(提升权限)一个...
分类:Web开发   时间:2014-08-01 04:47:11    收藏:0  评论:0  赞:0  阅读:683
[LeetCode 题解]: Rotate List
Given a list, rotate the list to the right bykplaces, wherekis non-negative.For example:Given1->2->3->4->5->NULLandk=2,return4->5->1->2->3->NULL.题意:翻转...
分类:其他   时间:2014-08-01 04:47:01    收藏:0  评论:0  赞:0  阅读:282
scichart by Kline
...
分类:其他   时间:2014-08-01 04:46:41    收藏:0  评论:0  赞:0  阅读:945
Graph Theory Algorithms
1 /** 2 * 图论 3 **/ 4 5 /***************************** 图的抽象数据类型 ************************************/ 6 ADT Graph 7 { 8 数据: 9 Gra...
分类:其他   时间:2014-08-01 04:46:32    收藏:0  评论:0  赞:0  阅读:348
算数表达式的练习
c中各种运算符的实践整形运算:#includeint main(){ printf("%d",1+2); printf("%d",1*2); printf("%d",1/2); printf("%d",1-2); return 0; }浮点数运算:#include...
分类:其他   时间:2014-08-01 04:46:21    收藏:0  评论:0  赞:0  阅读:483
2014-07-31 ASP.NET的母版页使用
今天是在吾索实习的第17天。我在这天主要负责系统的骨架的搭建。首当其冲,要用的知识点就是ASP.NET母版页的使用了。 ASP.NET的母版页有两种:一种是MasterPage,最常用也是最普通的母版页;另一种是NestedMasterPage,继承了其他母版页的母版页,即以其他母版页作为自身...
分类:Web开发   时间:2014-08-01 04:46:11    收藏:0  评论:0  赞:0  阅读:367
[转]iSCSI完全指南
[转]iSCSI完全指南Posted on2008-04-01 18:57Tony Zhang阅读(2102) 评论(0)编辑收藏引:在上世纪末、本世纪初,一提到SAN(Storage Area Network),我们立刻就会想到光纤通道(FC,Fiber Channel)技术,也即那时候的SAN多...
分类:其他   时间:2014-08-01 04:46:01    收藏:0  评论:0  赞:0  阅读:324
使用Open Xml按模版导出Excel文件(上)
我们在做应用系统中经常需要将数据库中的数据导出成为Excel文件。如果是要导出报表的话,最好是能够根据定义好的模版生成一个美观的Excel。 以前要生成有样式的Excel。一般是使用Xml形式的Excel修改,或者使用Excel的Api。前者要修改样式的话特别麻烦,后者在A...
分类:其他   时间:2014-08-01 04:45:51    收藏:0  评论:0  赞:0  阅读:412
小白的软件测试之路
软件测试发展之路
分类:其他   时间:2014-08-01 04:45:41    收藏:0  评论:0  赞:0  阅读:333
sun公司的jstl标签库
1 2 3 4 5 6 7 8 9 10 Zero11 12 13 14 15 16 ---------------------------------------------17 18 ${data...
分类:Web开发   时间:2014-08-01 04:45:35    收藏:0  评论:0  赞:0  阅读:455
试用windows Azure
试用windows Azure, 需要国外手机注册,信用卡注册。windows操作系统,只有2008R2,2012,2012R2可以选择,我选择XS最低档,然后选2012R2,欧洲数据中心,那个慢啊,创建启动要差不多20分钟。远程进去那个卡。。。要注意创建好虚拟机之后,要添加IIS,默认是不添加的。...
分类:Windows开发   时间:2014-08-01 04:45:21    收藏:0  评论:0  赞:0  阅读:339
android Uri获取真实路径转换成File的方法
Uri uri = data.getData();String[] proj = { MediaStore.Images.Media.DATA };Cursor actualimagecursor = managedQuery(uri,proj,null,null,null);int actual_...
分类:移动平台   时间:2014-08-01 04:45:11    收藏:0  评论:0  赞:0  阅读:717
[转]POJ的刷题指南(加了超链接的)
网上看到的转过来一下,顺便把题目都加了个超链接,方便刷起~POJ上的一些水题(可用来练手和增加自信)(poj3299,poj2159,poj2739,poj1083,poj2262,poj1503,poj3006,poj2255,poj3094)初期:一.基本算法: (1)枚举. (poj1753,...
分类:其他   时间:2014-08-01 04:45:01    收藏:0  评论:0  赞:0  阅读:404
.net学习笔记--使用抽象方法实现多态
在使用抽象方法实现多态之前,我们必须知道一些知识点:1.抽象类不能被实例化;2.抽象类可以包含非抽象成员,它们可以由其子类继承调用。我们可以先创建一个Person的抽象类,代码如下: 1 abstract class Person 2 { 3 4 public...
分类:Web开发   时间:2014-08-01 04:44:51    收藏:0  评论:0  赞:0  阅读:386
RealTimePerformanceDemoView
using System;using System.Diagnostics;using System.Timers;using System.Windows;using System.Windows.Controls;using System.Windows.Media;using Abt.Cont...
分类:其他   时间:2014-08-01 04:44:41    收藏:0  评论:0  赞:0  阅读:466
[leetcode]Single Number
Single NumberGiven an array of integers, every element appearstwiceexcept for one. Find that single one.Note:Your algorithm should have a linear runti...
分类:其他   时间:2014-08-01 04:44:31    收藏:0  评论:0  赞:0  阅读:264
1926条   上一页 1 ... 85 86 87 88 89 ... 97 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!