加油!! Come on!!
考研,坚持果然需要毅力,加油!!
来首歌,给自己打打气。
同时,庆祝一下SkyDrive可以访问~~
Willpower is needed during aiming graduate. Here is a song to boost my morale.
Come on!!
Also it is to celebrate that SkyDrive now can be accessed from China Mainland.
Please do not use it for for political purposes, Thank you.
Mp3 Link from SkyDrive.
班级布告栏
老有事情要通知,而且光通知就算了,还有东西附带要提供下载。。。
通知的事情QQ群+飞信,都ok了,下载就比较可恶,QQ群共享很多人不知道怎么用,速度和空间大小也不行,恼火。。。
发现Googlesites是个好东西,十几分钟,就搞定了一个简易的班级布告栏,而且使用方便,真好。
Appspot可以访问
昨天刚发完牢骚,今天发现Appspot可以访问了,更加惊奇的是ghs.google.com,feedproxy.google.com居然也可以ping通了。。。
不知道是短暂的光明还是真正的开放,担心。。。
某些人就不要在拿这玩意搞乱七八糟的应用了,搞的又挂掉,让我们多享受先Google的服务吧。。。
Appspot can be accessed in China Mainland now. What’s more, you can access ghs.google.com and feedproxy.google.com now.
Please do not use them for political purposes, otherwise they may be blocked again.
Blogger:让某个widget只在首页(非首页)显示
照着那篇文章弄,还留下了类似<div class=’widget HTML’ id=’HTML1′></div>的东西,所以如果对widget类设置过css样式的话,那必然还是会显示出来。现在有两种办法,一是把widget类的css样式去掉,用其他方法实现,还有一种就是我下面介绍的方法。
1.紧跟Includable开始之后(<b:includable id=’main’>之后)添加:
<b:if cond='data:blog.pageType == "index"'>
ps. pateType包括index(索引页),item(文章页),archive(存档页)三种,那个==(等于)对应还有!=(不等于)。
2.在Includable结束之前(</b:includable>之前)添加:
<b:else/>
<div id="t3">
<script type="text/javascript">
document.getElementById("t3").parentNode.style.display="none";//将父节点,即上一层div设置为不显示
</script>
</div>
</b:if>
ps. 上面的t3在每个widget中都要不同(必须),这样就可以彻底隐藏了。
下面是一个示例(不在文章页中显示):
<b:widget id='HTML1' locked='false' title='HTML' type='HTML'>
<b:includable id='main'>
<b:if cond='data:blog.pageType != "item"'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<h2 class='title'><data:title/></h2>
</b:if>
<div class='widget-content'>
<data:content/>
</div>
<b:include name='quickedit'/>
<b:else/>
<div id="t3">
<script type="text/javascript">
document.getElementById("t3").parentNode.style.display="none";
</script>
</div>
</b:if>
</b:includable>
</b:widget>