最近一段时间不会更新了,给自己放假。
Sohu.com to Report Fourth Quarter and Fiscal 2006 Financial Results on February 5
Jan 29, 2007 16:30:00 (ET)
BEIJING, Jan 29, 2007 /PRNewswire-FirstCall via COMTEX/ — Sohu.com Inc. (SOHU, Trade ), China's leading online media, search, and mobile value-added services company, will report its fourth quarter and 2006 fiscal year unaudited results on Monday, February 5, 2007 after U.S. market hours, corresponding with Tuesday morning, February 6, 2007 Beijing/Hong Kong time.
Sohu's management team will host a conference call on the same day at 8:00 PM EST, February 5, 2007 (or 9:00 AM, February 6, 2007 Beijing/Hong Kong time) following the quarterly and fiscal year results announcement.
To listen to the conference call, please use the dial in numbers below: 更多详细内容 »
Tags: sohuURL静态化
论坛和笔记都配置了apache的Rewrite,启用了URL静态化,希望搜索引擎能够更好的抓取。这些spider也真够笨的,规则多了是不是反而变傻了。这个空间也挺狠,居然只有根目录下的才能使用Rewrite规则,子目录的都不可以
。
这个看起来还是比较舒服的。去掉了任何影响访问速度的什么pv统计等等乱七八糟的东西,当然除了广告
,不整这些虚的东西了,alexa工具条也从电脑中删除了,开始专心于内容和品质。另外友情链接也都改为文字链了。
升级完成,貌似一切正常,发表评论也没有问题了。后台的模版不错
采用所谓自动升级方式,然后修改了几个旧模版中涉及的改动。
升级步骤(readme.txt): 更多详细内容 »
换个界面玩玩
原来那个界面已经800年没动过了,虽然简洁,可是时间长了还是有点“审美疲劳”,换个界面新鲜几天
唉,真是可惜啊,虽然这个界面在firefox下只有一点点小瑕疵,可是在ie7下就有点乱了,看来还是用不了多长时间就得换回去了。
[codes=java]
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
//import java.io.PrintStream;
public class Crack5 {
public static String convert(String s) {
if (s == null || s.length() == 0) {
return s;
}
byte abyte0[] = s.getBytes();
char ac[] = new char[s.length()];
int i = 0;
for (int k = abyte0.length; i < k; i++) {
int j = abyte0;
if (j >= 48 && j <= 57) {
j = ((j – 48) + 5) % 10 + 48;
} else if (j >= 65 && j <= 90) {
j = ((j – 65) + 13) % 26 + 65;
} else if (j >= 97 && j <= 122) {
j = ((j – 97) + 13) % 26 + 97;
}
ac = (char) j;
}
return String.valueOf(ac);
}
private static int hash(String s) {
int i = 0;
char ac[] = s.toCharArray();
int j = 0;
for (int k = ac.length; j < k; j++) {
i = 31 * i + ac[j];
}
return Math.abs(i);
}
private static String inputString() {
BufferedReader bufferedreader = new BufferedReader(
new InputStreamReader(System.in));
String s = null;
try {
s = bufferedreader.readLine();
} catch (IOException ioexception) {
ioexception.printStackTrace();
}
return s;
}
public static void main(String args[]) {
try {
System.out.println("MyEclipse IDE v9.99 Keygen");
System.out.print("License Name : ");
String s = inputString();
String licStr = "YE3MP-799-00-9912310";
String h = s.substring(0, 1)
+ licStr
+ "Decompiling this copyrighted software is a violation of both your license agreement and the Digital Millenium Copyright Act of 1998 (http://www.loc.gov/copyright/legislation/dmca.pdf). Under section 1204 of the DMCA, penalties range up to a $500,000 fine or up to five years imprisonment for a first offense. Think about it; pay for a license, avoid prosecution, and feel better about yourself."
+ s;
int j = hash(h);
String lic = s.substring(0, 1) + licStr + Integer.toString(j);
System.out.println("License Key : " + convert(lic));
} catch (Exception exception) {
exception.printStackTrace();
}
}
}
[/codes]
近期评论