摘要: 新搭了一台Subversion服务器供多人使用,需要对不同权限的用户做一些登录和操作的测试。遇到一个问题,Subversion总是会记住曾经登录过的用户名和密码,这让使用其他登录账号有些麻烦。搜集资料之后整理出自己的解决方法。方法一:Windows环境:项目上单击右键->TortoiseSVN->Settings->Saved Data->单击Authentication对应的Clear按钮。这样就清除了之前的验证信息。方法二:Windows环境:删除目录C:\Documents and Settings\administrator\Application Data\S 阅读全文
posted @ 2012-05-22 10:33 水芊芊 阅读(10181) 评论(3) 推荐(1) 编辑
摘要: 环境:Win7 + 中文Ubuntu10.10【服务器SSH开启】安装openssh-serverapt-get install openssh-server查看服务器的ssh服务有无开启ps -e | grep ssh如果出现sshd,说明开启,否则开启/etc/init.d/ssh start【SSH客户端访问中文Ubuntu乱码】下载putty软件(http://www.putty.org/),通过修改 font, character set 设置来解决。Window -> Appearance -> Font settings 选择宋体或新宋体。Window -> T 阅读全文
posted @ 2012-05-15 10:43 水芊芊 阅读(1189) 评论(0) 推荐(0) 编辑
摘要: 环境:Win7 + Ubuntu10.10目的:通过Windows/Linux上的VNC客户端来远程访问服务器,并且服务器的界面可见(SSH等的客户端只能通过命令行来远程操作)。软件下载地址:http://www.realvnc.com/products/download.html通常选择免费版的安装即可。【VNC简介】VNC基本上是属于一种显示系统,也就是说他能将完整的窗口界面通过网络,传输到另一台计算机的屏幕上。VNC基本上由两部分组成:客户端的应用程序(vncviewer);服务器端的应用程序(vncserver)。VNC运行的工作流程如下:(1) VNC客户端通过浏览器或VNC Vie 阅读全文
posted @ 2012-05-14 11:41 水芊芊 阅读(1779) 评论(0) 推荐(0) 编辑
摘要: 环境:Ubuntu 12.04【简单安装】一般第一次安装Apache都较为顺利。1. 下载并解压官网地址:http://httpd.apache.org/root@ubuntu:/home/qy/share# tar zxvf httpd-2.2.22.tar.gzroot@ubuntu:/home/qy/share# cd httpd-2.2.22在http-2.2.22里有文件README和INSTALL,用more命令可以阅读。2. 配置root@ubuntu:/home/qy/share/httpd-2.2.22# ./configure --prefix=/usr/local/apa 阅读全文
posted @ 2012-05-04 14:58 水芊芊 阅读(10828) 评论(0) 推荐(0) 编辑
摘要: 概述:讲了公司里常见的几种项目管理组织布局。如果对项目管理有兴趣,推荐从PMBOK入门,考试题多出于此。翻译理解有误烦请指出。1. 职能型:各部门的部门经理就是项目经理,直接向VP汇报。各项目都由本部门控制,跨部门合作需通过经理。借调人员需经过人事经理。2. 项目型:以提供某些咨询或服务为商业模式的公司为主。项目经理直接向CEO汇报,有极大权力。每个项目成员向项目经理汇报。项目结束后人员闲置,新项目上马人员重组。人事和财务也归项目经理管。3. 矩阵型:对以上两种布局扬长避短。(1) Weak型:类似职能型。但有项目协作者,权力很小或无权。(2) Balanced型:在项目期有兼职项目经理。(3 阅读全文
posted @ 2012-04-23 11:44 水芊芊 阅读(4949) 评论(0) 推荐(0) 编辑
摘要: RoR,即Ruby on Rails,是一个Web开发框架,基于它可以使用Ruby语言开发Web应用。包含2部分:Ruby语言和Rails框架。环境:Ubuntu11.10 + Windows7。已在Root权限下。步骤1:安装Rubyapt-get install ruby用ruby --version查看安装好的Ruby版本:ruby1.8用whereis ruby查看将Ruby安装在了什么地方:/usr/bin如果用apt-get install ruby1.9.1则会安装ruby1.9.2。因为有1.9.1的library compatibility version,因此官方发布的安装 阅读全文
posted @ 2012-04-13 17:12 水芊芊 阅读(530) 评论(0) 推荐(0) 编辑
摘要: Samba可实现Linux与Windows的文件、打印等共享。环境:Ubuntu11.10 + Windows7步骤1:下载并安装Samba安装包sudo apt-get install samba smbfs步骤2:设置Ubuntu共享目录(比如用户qy的新建共享目录qyshare),并修改该目录访问权限sudo mkdir /home/qy/qysharesudo chmod 777 /home/qy/qyshare步骤3:备份smb.conf文件。养成这个好习惯,错误了还可以恢复sudo cp /etc/samba/smb.conf /etc/samba/smb.conf_backup步 阅读全文
posted @ 2012-04-13 10:50 水芊芊 阅读(1136) 评论(0) 推荐(0) 编辑
摘要: 题目:定义一个点(Point)类用来表示三维空间中的点(有3个坐标),要求:1、可以生成具有特定坐标的点对象;2、提供可以设置三个坐标的方法;3、提供可以计算该点距某点(或原点)距离平方的方法;4、编写程序验证上述三条。代码: 1 class Point { 2 double x; 3 double y; 4 double z; 5 6 Point(double _x, double _y, double _z) 7 { 8 x = _x; 9 y = _y;10 z = _z;11 }1... 阅读全文
posted @ 2012-04-06 14:53 水芊芊 阅读(266) 评论(0) 推荐(0) 编辑
摘要: 题目:输出101~200以内的所有质数。思路:质数就是只能被1和自身整除的数。代码: 1 public class PrimeNumber { 2 public static void main(String[] args) { 3 for (int i=101; i<200; i+=2) 4 { 5 boolean flag = true; 6 for(int j=2; j<i; j++) 7 { 8 if (i % j == 0) 9 ... 阅读全文
posted @ 2012-04-06 13:57 水芊芊 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 题目:输出1~100以内前5个可以被3整除的数。思路:算一个能被3整除的数,输出直到5个后不再计算和输出。代码: 1 public class DivByThree { 2 public static void main(String[] args) { 3 int count = 0; 4 5 for (int i=1; i<100; i++) 6 { 7 if (i % 3 == 0) 8 { 9 System.out.println(i... 阅读全文
posted @ 2012-04-05 22:39 水芊芊 阅读(218) 评论(0) 推荐(0) 编辑
摘要: 题目:求1!+2!+3!+……+10!思路:先求每个数字的阶乘n!=num,再将num相加。代码: 1 public class Factorial { 2 public static void main(String[] args) { 3 int sum = 0; 4 int num = 1; 5 for (int i=1; i<=10; i++) 6 { 7 num = num * i; 8 sum = sum + num; 9 }10 ... 阅读全文
posted @ 2012-04-05 21:50 水芊芊 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 题目:求Fibonacci数列:1,1,2,3,5,8,……第n个数的值(假设n=40)。思路:Fibonacci数列满足递推公式:F(1)=1,F(2)=1,F(n)=F(n-1) + F(n-2)解法1:递归 1 public class Fibonacci { 2 public static void main(String[] args) { 3 System.out.println(f(40)); 4 } 5 6 public static int f(int n) { 7 if (n == 1 || n ==... 阅读全文
posted @ 2012-04-05 20:52 水芊芊 阅读(216) 评论(0) 推荐(0) 编辑
摘要: Problem 1001Easy or notTime Limit: 1000msMemory Limit: 65536kbDescriptionWe are wondering how easy a problem can be. According to recent research, the most easy problem may be the one which requires to output exactly the input, other than the classical A+B Problem.As our best programmer, you are ask 阅读全文
posted @ 2012-03-21 16:54 水芊芊 阅读(741) 评论(0) 推荐(0) 编辑
摘要: Problem 1000A + B ProblemTime Limit: 1000msMemory Limit: 65536kbDescriptionCalculate a + bInputThe input will consist of a series of pairs of integers a and b,separated by a space, one pair of integers per line.OutputFor each pair of input integers a and b you should output the sum of a and b in one 阅读全文
posted @ 2012-03-20 22:02 水芊芊 阅读(933) 评论(0) 推荐(0) 编辑
摘要: 题目:给一个不多于5位的正整数,要求:1、求它是几位数。2、逆序打印出各位数字。思路:分解出每一位上的数字。代码: 1 #include<iostream> 2 using namespace std; 3 4 int main() 5 { 6 int num; 7 cin>>num; 8 9 int wan = num / 10000;10 int qian = num % 10000 / 1000;11 int bai = num % 1000 / 100;12 int shi = num % 100 / 10;13 int ge... 阅读全文
posted @ 2012-03-20 20:03 水芊芊 阅读(319) 评论(0) 推荐(0) 编辑
摘要: 题目:有1、2、3、4个数字,能组成多少个互不相同且无重复数字的三位数?都是多少?思路:可填在百位、十位、个位的数字都是1、2、3、4。组成所有的排列后再去掉不满足条件的排列。代码: 1 #include<iostream> 2 using namespace std; 3 4 int main() 5 { 6 for(int i=1;i<=4;i++) 7 { 8 for(int j=1; j<=4; j++) 9 {10 for(int k=1; k<=4; k++)11 {12 ... 阅读全文
posted @ 2012-03-19 20:45 水芊芊 阅读(265) 评论(1) 推荐(0) 编辑