Feb 23
昨天把一个.net续费了下,支付宝付款53¥。godaddy做的真是越来越出色了,美元自动结算¥,汇率为6.83*,挺厚道。

今天得到的消息:
1.企业网站备案需企业负责人去isp处按工信部指定拍照备案,比身份证还严格,二代身份证好歹还可以自己传照片过去办,这个要亲自,背景颜色还是指定的。好吧,blog已经搬出来了,你要逼我把所有站都搬么?
2.cn域名补全信息,要提交身份证扫描件,不全者3.15日删除,续费价格60¥,更有某个域名注册商对代理商说,资料补足率不足80%要代理降级,代理降级意味着什么?注册和续费价格要贵的多。鉴于此,所有cn(其实也就6个)不续费。
3.有某部头头吹风手机和上网要实名制。银行卡早实名制了吧,电话诈骗中转账不是转到国外账户的吧? 效果呢?


中国网络已死,有事烧纸。

Feb 3
今天收到google发的email通知,看来ie6灭亡再次提速了。以下为原文:

Dear Google Apps admin,​

In order to continue to improve our products and deliver more sophisticated features and performance, we are harnessing some of the latest improvements in web browser technology.  This includes faster JavaScript processing and new standards like HTML5.  As a result, over the course of 2010, we will be phasing out support for Microsoft Internet Explorer 6.0 as well as other older browsers that are not supported by their own manufacturers.

We plan to begin phasing out support of these older browsers on the Google Docs suite and the Google Sites editor on March 1, 2010.  After that point, certain functionality within these applications may have higher latency and may not work correctly in these older browsers. Later in 2010, we will start to phase out support for these browsers for Google Mail and Google Calendar.

Google Apps will continue to support Internet Explorer 7.0 and above, Firefox 3.0 and above, Google Chrome 4.0 and above, and Safari 3.0 and above.

Starting this week, users on these older browsers will see a message in Google Docs and the Google Sites editor explaining this change and asking them to upgrade their browser.  We will also alert you again closer to March 1 to remind you of this change.

In 2009, the Google Apps team delivered more than 100 improvements to enhance your product experience.  We are aiming to beat that in 2010 and continue to deliver the best and most innovative collaboration products for businesses.

Thank you for your continued support!

Sincerely,

The Google Apps team


Email preferences: You have received this mandatory email service announcement to update you about important changes to your Google Apps product or account.

Google Inc.
1600 Amphitheatre Parkway
Mountain View, CA 94043

尝试翻译了下:

亲爱的google应用套件管理员:
  
   在持续改进我们的产品和提供更复杂的功能以及提升性能的过程中,我们利用了一些网页浏览器的最新技术。这包括更快的javascript解析引擎和类似html5这样的新标准。因此2010年之后,我们将停止支持那些软件商不再提供技术支持的老版本浏览器,例如微软的ie6。
  
   我们计划3月1日开始取消google docs套件和google sites编辑器对那些老版本浏览器的支持。之后,在这些老版本浏览器上访问此类应用的某些功能可能带来比较高的延迟,甚至是不能使用。在2010年下半年,我们将取消gmail和google日历对这些浏览器的支持。

   google应用将继续支持ie7+,firefox3.0+,chrome4.0+以及safari3.0+。
  
   从本周开始,使用老版本浏览器访问google docs和google sites的用户将会看见解释这个变化的提示并被要求升级浏览器。我们在3月1日来临前将会再次提醒您。

   在2009年中,google apps团队提供了超过100个提升您产品体验的改进。我们的目标是在2010年再接再厉,为企业提供最好和最创新的协作产品。
    
   感谢您的继续支持。

   此致

google apps 团队

提示:您收到此封邮件是因为您的google apps产品或账户做了重大修改。
Tags:
Dec 31
引用
span.a1{ border:solid 1px #f00; display:block;  height:9px; line-height:9px; padding:0; margin:0;background:url(st/img/t2.png); }
span.a2{ border:solid 1px #f00; display:block;  height:9px; line-height:9px; padding:0; margin:0;}


引用
<span class="a1"></span>
<span class="a2"></span>


ie6下会导致高度不同
dtd为xhtml1-transitional
os为2003 sp2
Dec 12

学学jquery源码 不指定

叶子 , 11:07 , , 评论(0) , 引用(0) , 阅读(129) , From 本站原创
那天面试还有一题,同样没实现出来。大概如下:
var Do;
//代码开始
//-----代码部分
//代码结束
var a = Do("aa");
a.bt("bt");
补全代码,实现a.bt输出结果为aabt。

如果是var a = new Do("aa"),那么直接定义Do为函数,给Do添加方法即可。可是没有new,那么就需要自己构造增强函数了。之前看过点jquery源码,但是没留意这个=_=。今天把jq的翻出来复看,发现了这个秘密...

var Do;
//代码开始
Do = function(a) {
     return new Do.fn.init(a);
};
Do.fn = Do.prototype = {
     temp: "",
     init: function(a) {
            this.temp = a;
            return this;
     },
     bt: function(b) { document.write(this.temp + b ) }
}
Do.fn.init.prototype = Do.fn;
//代码结束
var a = Do("aa");
a.bt("bt");

jq对应的是
// Give the init function the jQuery prototype for later instantiation
jQuery.fn.init.prototype = jQuery.fn;
Dec 9

古文输出 不指定

叶子 , 20:29 , , 评论(0) , 引用(0) , 阅读(110) , From 本站原创
古文输出是从右向左,从上到下输出,虽然ie私有属性有竖排,不过今天面的是要求js实现。当时太急躁了点,在地铁上时候静心一想,其实和前些日子那个贪吃蛇异曲同工,算法比那个还简单...
引用

    function ancient(str, line) {
        //计算列度
        var col = Math.ceil(str.length / line);
        //初始化矩阵
        var a = new Array();
        //初始化行数
        for (i = 0; i < line; i++) {
            a[i] = new Array();
        }

        l = 0;
        for (i = 0; i < line * col; i++) {
            a[l].unshift(!!str[i] ? str[i] : "--");
            l += 1;
            if (l > line - 1) {l = 0;}
        }        
        //输出
        var s = "";
        for (i = 0; i < line; i++) {
            s += a[i].join("");
            s += "<br />";
        }
        return s;
    }
    document.write(ancient("我爱你哈哈哈哈", 2));
分页: 1/8 第一页 1 2 3 4 5 6 7 8 下页 最后页 [ 显示模式: 摘要 | 列表 ]