September 8th, 2006 |
htmlor |
足球 |
2 Comments »

我的保守估价如下:
- 舍甫琴科刚刚转会,明码标价3000万英镑(也有传言是3500万);
- 特里虽然没有俱乐部出价,但当年费迪南德3000万英镑转会曼联,特里比费迪南德更强,就也算3000万好了;
- 兰帕德作为英格兰+切尔西中场核心,虽然世界杯上表现不尽理想,但2000万英镑总归值的(热刺的卡里克都花了曼联1860万呢);
- 阿什利·科尔刚被切尔西以加拉+500万英镑换来,就算委屈他点(阿森纳的开价可是2500万啊),1500万英镑吧;
- 巴拉克是拜仁合同到期后免费加盟切尔西的(但没人怀疑他的实力吧),他比兰帕德年龄要大,因此算便宜些,1500万英镑好了(跳楼价啊)。
3 + 3 + 2 + 1.5 + 1.5 = 11千万 = 1.1亿英镑(1.6亿欧元)。
这才是半支切尔西。
September 5th, 2006 |
htmlor |
web, 译文 |
3 Comments »
ProNet Advertising是个针对性比较强的blog,主要写在线市场营销相关的文章,这篇Neil Patel的《Don’t be silly with your marketing plan》就非常不错。作者说他近几个月“听了太多弱智的营销计划”(I have heard a lot of dumb marketing plans),于是列举了他认为最傻X的10个营销计划以示众人。当然,这些不一定适合中国国情(流氓最大、插件为王),但姑妄听之,姑妄看之吧。
- 价格比竞争对手更低,以此打击他们,并让其消费者转向我们。
这主意听起来很巧,实则很难。对忠诚的消费者来说,要让他们换一家公司,仅仅价低是不够的。低价还会让你面对“便宜没好货”的置疑。
- 让TechCrunch报道推介,坐等大把机会到来。
(htmlor注:TechCrunch的feed订阅数近90000,其在世界范围的影响力比keso在中国还大)能做到当然好,但这不够。人家不可能每天都介绍你,当新闻效应不再,你怎么办?
- 雇用号称在google内部“有人”的营销公司。
这个计划也够烂。这种鬼话你也信?
- 等着被收购。
这大概是有史以来最烂的营销计划了。白日做梦太不靠谱。假如无人问津,你该如何是好?
- 做个产品上线,然后去找风险投资。
这主意不错,但作为营销计划很烂。大多数这么想的人根本就不知道要拉来几百万美金有多难,尤其是你还没有取得任何成绩时。
- 用google的AdWords做广告。
这不是个好计划,即使有些消费者认为这是最完美的营销计划。通过这个能比竞争对手多出多少机会,很值得怀疑。
- 把产品做的比竞争对手更好用。
这么做没错,能实现产品的差异化。但它不是营销计划。
- 发布免费版产品。
这不应该是营销计划。万一由此导致开支暴增、资金困难呢?它可能创造机会,也可能让你破产。
- 上digg的首页,然后等着用户上门。
能上digg首页自然很好,但仅此显然不够。光环总会淡去,老指望这个太不现实。
- 产品推广词尽量用时髦词汇,web 2.0、sns、ajax…… 多多益善。
这个应该不用再解释了。(htmlor注:他不说我说说吧。老吹这些被炒滥的名词,自卖自夸讨人嫌。)
列出了10不要之后,作者又提出了4点建议(想知道?看原文吧)。最后作者问道:“你认为在营销计划中最重要的是什么呢?”
September 3rd, 2006 |
htmlor |
css |
3 Comments »
应ak47的要求,贴出自己在Almost Spring模板基础上修改的css代码。这个css分两部分,第一部分中和、抵消原css的影响,第二部分才是实现样式的正主儿。如果要做新模板,只第二部分就够了。
第一部分:
/* counteract old styles */
p{
line-height:normal;
}
#wapper,
#header,
#content,
#sidebar,
#footer{
display:block;
margin:0;
padding:0;
}
#footer p{
padding:0;
background-color:transparent;
border-top-width:0;
}
#sidebar h2{
display:block;
padding:0;
background:transparent;
}
#sidebar h2 a{
color:#06d;
}
#sidebar h2 a:hover{
background:#06d;
color:#fff;
}
#sidebar ul ul{
border-top-width:0;
background-color:transparent;
}
#sidebar ul ul li{
padding:0;
border-bottom-width:0;
}
#sidebar ul ul li a{
display:inline;
margin:0;
padding:0;
width:auto;
}
#sidebar ul ul li a:hover{
background-color:#06d;
}
.posttitle a{
float:none;
padding:0;
background:transparent;
}
.posttitle a:link,
.posttitle a:visited{
color:#06d;
}
.posttitle a:hover,
.posttitle a:active{
background:#06d;
color:#fff;
}
.postmeta{
padding-top:0;
background:transparent;
}
.permalink,
.commentslink{
margin:0;
padding:0;
background:transparent;
}
#commentlist{
border-bottom-width:0;
}
#commentlist li{
border-top-width:0;
background-color:transparent;
}
/* end */
第二部分:
/* my styles */
body{
margin:0;
background:#fff;
}
body,
table,
ul,
ol,
input,
select,
textarea{
color:#000;
font-size:12px;
font-family:"lucida sans unicode";
}
h1,
h2,
h3{
color:#000;
font-family:"lucida sans unicode";
}
a:link{
color:#06d;
text-decoration:none;
}
a:visited{
color:#36a;
text-decoration:none;
}
a:hover,
a:active{
background-color:#06d;
color:#fff;
text-decoration:none;
}
img{
border-width:0;
}
form{
margin:0;
padding:0;
}
/* layout */
#wrapper{
width:75% !important;
width:900px;
min-width:900px;
}
#header{
clear:both;
width:100%;
}
#content{
float:left;
width:75%;
}
.post{
clear:both;
}
#sidebar{
float:right;
width:23%;
}
#footer{
clear:both;
width:100%;
}
#wapper,
#header,
#content,
#sidebar,
#footer{
overflow:hidden;
}
/* main */
#wrapper{
margin:auto;
}
#header{
margin-bottom:20px;
padding:20px 0;
background:url(/htmlor/files/2006/07/u10_big.jpg) no-repeat right bottom;
border-bottom:1px dashed #ccc;
}
#content{
}
#sidebar{
background:#f0f0f0;
}
#footer{
border-top:1px dashed #ccc;
}
#header h1{
margin:0;
color:#000;
font-size:24px;
}
#header h1 a{
display:block;
width:195px;
height:35px;
background:url(/htmlor/files/2006/08/blogtitle.gif) no-repeat left top;
color:#fff;
font-size:1px;
}
#content h2{
margin:0 0 1em 0;
font-size:12px;
}
/* article body */
.post{
margin:0 0 2em 0;
}
#content .post .posttitle{
margin:0 0 0.5em 0;
color:#f60;
font-size:16px;
letter-spacing:0.25em;
}
.post .postmeta{
margin:0 0 1em 0;
color:#666;
font-size:10px;
font-family:verdana;
}
.post .postentry{
}
#content .post .postentry h2{
margin:1.5em 0 1em 0;
color:#000;
font-size:14px;
}
.post .postentry h3{
margin:1.5em 0 1em 0;
color:#f60;
font-size:14px;
}
.post .postentry p{
margin:0 0 1em 0;
line-height:1.5em;
font-size:14px;
}
.post .postentry table{
font-size:14px;
}
.post .postentry ul,
.post .postentry ol{
margin:0 0 1em 2em;
padding:0;
line-height:1.5em;
font-size:14px;
}
.post .postentry ul{
list-style:square;
}
.post .postentry blockquote{
width:90%;
margin:0 0 1em 2em;
padding:0 10px;
border-left:5px solid #ddd;
font-family:arial;
}
.post .postentry pre{
margin:0 auto 1em auto;
padding:10px;
background:#f0f0f0;
border:1px dashed #ddd;
white-space:pre;
font-size:12px;
font-family:"courier new";
}
.post .postentry code,
.post .postentry kbd{
color:#000;
font-size:12px;
font-family:"courier new";
}
.post .postentry cite{
font-size:12px;
font-style:normal;
font-family:"lucida sans unicode";
}
.post .postfeedback{
margin:0;
font-size:10px;
font-family:verdana;
}
.post .postfeedback .permalink{
margin-right:10px;
}
.post .postfeedback .commentslink{
}
/* display comments */
#comments{
margin:0 0 1em 0;
color:#f60;
font-size:12px;
}
#commentlist{
margin:0 0 1em 0;
padding:0;
}
#commentlist li{
margin:0;
padding:0.7em 0;
border-bottom:1px solid #eee;
font-size:12px;
}
#commentlist li.alt{
background:#f0f0f0 !important;
padding:0.7em 0.5em;
}
#commentlist li .commenttitle{
margin:0;
font-size:12px;
}
#commentlist li .commentmeta{
margin:0 0 0.7em 0;
color:#666;
font-size:10px;
font-family:verdana;
}
#commentlist li p{
margin:0;
}
.small{
text-align:right;
margin:0 0 1em 0;
}
/* post comment */
#postcomment{
margin:0 0 1em 0;
color:#f60;
font-size:12px;
}
#commentform{
margin:0 0 2em 0;
}
#commentform p{
margin:0 0 0.5em 0;
}
#commentform input,
#commentform textarea{
border:1px solid #ddd;
background:#f0f0f0;
}
#commentform textarea{
width:99%;
}
#commentform #submit{
width:120px;
height:25px;
cursor:pointer;
background:#f60;
border-width:0;
color:#fff;
}
/* sidebar */
#sidebar ul{
margin:10px;
padding:0;
list-style-type:none;
}
#sidebar ul h2{
margin:0 0 0.5em 0;
font-size:12px;
}
#sidebar ul ul{
margin:0 0 1.5em 1.3em;
line-height:1.5em;
color:#666;
list-style:square;
}
#sidebar ul ul li img{
vertical-align:middle;
}
#footer p{
text-align:center;
margin:1em 0 2em 0;
color:#666;
font-size:10px;
font-family:verdana;
}