CoderMan的博客也是放置在阿里云的ECS上,速度绝对是刚刚的,大家打开的速度肯定不会慢。
有些同志们至今可能还在用虚拟主机吧,事实上阿里云服务器真心不贵,有俩种计费方式:分别是按月计费和按流量计费。想知道详细的阿里云服务器的参数,可以留言给我,我分享详细的测评,无意间看到阿里云优惠全界面,那就分享下吧。
阿里云服务器优惠券:链接在此。
阿里云服务器购买页面:链接在此.
...
分类:
其他好文 时间:
2014-07-15 22:21:27
阅读次数:
280
yum 提供了丰富的工具用于支持软件包的安装。
有时候需要安装不只只是一个的情况下,可以使用groupinstall选项。
首先可以通过grouplist查询对应的group信息,比如需要安装开发工具的情况下,
可以使用以下命令:
$ yum groupinstall "Development Tools"...
分类:
其他好文 时间:
2014-07-15 12:49:01
阅读次数:
291
由题意推得结论:p+q-gcd(p,q);
/*
* hdu 1722--Cake
* date 2014/7/15
* state AC
*/
#include
#include
using namespace std;
/*
int gcd(int x,int y)
{
while(x!=y)
{
if(x>y)x=x-y;
else y...
分类:
其他好文 时间:
2014-07-15 10:32:39
阅读次数:
184
我的主题是,有时候知道一些细节会让你写出更好的代码。...
分类:
编程语言 时间:
2014-07-15 10:26:52
阅读次数:
225
hdu1180诡异的楼梯……bfs走迷宫……wa了16次,我太渣了...
分类:
其他好文 时间:
2014-07-15 10:24:16
阅读次数:
212
先写下这个问题的模式
def preorderTraversal(self, root):
if root == None: return []
re = []
insert root to stack s
while s not empty:
cur_root = top of stack s
s.pop()
how to handle cur_root
how to ...
分类:
其他好文 时间:
2014-07-15 10:17:43
阅读次数:
274
Django在Win7下的安装及创建项目hello word的例子 有关python 的django 框架安装与开发的小例子。Django在Win7下的安装及创建项目hello word。1、安装:命令如下:pip install Django==1.6.52、创建项目django-admin.py...
Perl File Handling: open, read, write and close files#====================Opening filesSolution 1:Opening a file in perlopen FILE, "filename.txt" or d...
分类:
其他好文 时间:
2014-07-15 09:47:39
阅读次数:
222
USE [MainDb]GO/****** Object: StoredProcedure [dbo].[BackDataUpdate] Script Date: 07/15/2014 08:46:25 ******/SET ANSI_NULLS ONGOSET QUOTED_IDENTIF...
分类:
数据库 时间:
2014-07-15 09:45:39
阅读次数:
336
#!/bin/bash while[1]doa=$(ifconfigeth0|grep'RXpac'|awk'{print$2}'|awk-F:'{print$NF}')echo-ne"$a\r"#不换行刷新数据 doneecho参 数:-n 不要在最后自动换行 -e 若字符串中出现以下字符,则特....
分类:
其他好文 时间:
2014-07-15 09:43:48
阅读次数:
191