Category: 小小草

IT 技术领域学海无涯。其实任何领域都学海无涯,无非 IT 发展太快了,让我有更多嘘唏。希望我掌握的技术有如小小草,虽然渺小,却有旺盛的生命力。

  • Chinese interface in Android

    我不愿意用刷中文 ROM 的方法把手机的界面变为中文。

    我看到这里苹果店的手机都能在设置里调出中文界面,觉得 Android 手机更应该内置了全球语言包。大部分英国卖的 Android 手机看不到中文语言这个选项,是网络提供商把它隐藏起来了。基于这个推理,我 Google 了好久,终于发现在 Market 里搜索 Custom Locale 就能找到若干应用,随便选装一个就能把隐藏的中文调出来。

    随后,我又发现,Android OS 本身已100%国际化,如 Map, Market, Navigation 这些程序都能显示中文。但一些手机厂商自己开发的程序,如拨电话、发短信的程序并没有中文包,比如我的 Samsung Galaxy S2 就没有这样的语言包,所以这些程序在 zh_CN locale 下只能显示英文。

    HTC 在这方面就有独到的优势,毕竟是中国人的公司,它开发的程序一般都照顾到了中文。我买过一个 HTC Wildfire 手机,在 zh_CN locale 时完美汉化,根本不用刷 ROM。

  • Windows XP cannot acquire a valid IP address from DHCP server

    最近碰到一台 Windows XP 无法获得 DHCP 服务器分配的 IP 地址,但若指定 IP 地址则能上网 。辗转好久才找到解决办法:

    首先检查 Services 里 DHCP Client 是否启动;

    其次试着运行 netsh winsock reset /catalog ——我也不清楚这干嘛用的。

    最后重启一下 Windows XP 就能获得 DHCP 服务器分配的地址。

  • Best practices of merging multiple Gmail accounts

    工作需要对外使用多个邮箱,但阅读邮件时又不希望登录多个邮箱,而是希望在单一邮箱里查看和回复邮件。现以在邮箱A查看和回复来自邮箱B的邮件为例讲解设置。

    首先,登录邮箱B,在 Mail settings >> Filters 里 Create a new filter,在 “Doesn’t have” 一栏里填入长串不可能用到的乱字符,如 “J6dPFVFwnCsSBezVfSqRY5JTLNL567Ef”,然后点 “Next step”,选中 “Never send it to Spam“,最后点 “Create Filter”。这避免一些重要邮件被误判为 Spam,留在了邮箱B,不登录就查看不到,会误事。接着,还是在  Mail settings >> Forwarding and POP/IMAP 里 Add a forwarding address,填入邮箱A,follow instructions,不详述。

    然后,登录邮箱A,在 Mail settings >> Accounts >> Send mail as 里 Add another email address you own,填入 Name:whatever 和 Email address:邮箱B,然后点 “Next step”,选中 “Send through 邮箱B SMTP servers”,按 Gmail SMTP 配置去填写 SMTP Server, Username 和 Password,最后点 “Add Account“。

    大功告成。多罗嗦一句,不用邮箱A去POP邮箱B的方法来合并邮件是因为 Gmail 最多允许 POP 5个 accounts,无法合并6个以上邮箱;而且 POP 收取邮件没有从邮箱A转发过来即时。

  • Magento can edit order address since 1.5

    Magento 1.5 以后就允许修改订单地址了,Plieninger_Editable module 就没必要存在了,留着它反而会出错。

    当年想找一个修改订单地址的方案,就找到了 Plieninger_Editable,一用就用了一年。虽然一直不满意它的界面,一直想自己写一个,但一直忙于其他事务。现在跟它说 bye bye,还是很感谢它的。

  • php is_numeric

    某些 php 函数的返回值毫无规律可循。比如

    is_numeric("123")
    

    返回 true;

    is_numeric(" 123")
    

    (前导空格)返回 true;而

    is_numeric("123 ")
    

    (后导空格)返回 false。

    php 有灵活的语法,但每遇这种情况,我总是羡慕其他语言的严谨。

  • Change Magento configurable product to take associated products tax class

    Where and how to change the code?

    At first, I thought overriding Mage_Catalog_Model_Product_Type_Configurable::getOrderOptions().
    Original code

    $options['product_calculations'] = self::CALCULATE_PARENT;
    

    change to

    $options['product_calculations'] = self::CALCULATE_CHILD;
    

    However, it does not work.

    Then I tried to observe the event tax_rate_data_fetch and modify the rateRequest object. But inside rateRequest there is no reference to quoteItem. Only product tax_class_id is there. In the observer class, I do not know when to modify it without reference to quoteItem.

    At last, I had to modify the code in class Mage_Tax_Model_Sales_Total_Quote_Tax. There are several places to change depends on System Configuration. Change where is appropriate.
    Original code

    $taxRateRequest->setProductClassId($item->getProduct()->getTaxClassId());
    

    change to

    if ($item->getProductType() == Mage_Catalog_Model_Product_Type::TYPE_CONFIGURABLE) {
    	$child = current($item->getChildren());
    	$taxRateRequest->setProductClassId($child->getProduct()->getTaxClassId());
    }
    else {
    	$taxRateRequest->setProductClassId($item->getProduct()->getTaxClassId());
    }
    

    It is not a neat approach. Let me know if you have a better idea.

  • I report very first bug to Magento

    Magento 里还是有不少 bugs,我能看出来的就不少。可是我一直懒于 report bug,总觉得我都能发现的 bug,大把有人发现。

    今天心血来潮,大概受“莫以善小而不为”驱使,平生第一次 report bug to Magento。事关 js/mage/adminhtml/product.js 文件里第406 行(Magento 1.5.0.1), 有个笔误,把 readonly 写成了redonly。Associated Products tab of Configurable Products 受此影响,本应只读模式的文本框仍可输入数据。

    非常小的错误。

    今后我把我的发现记载下来。

  • Reinstate thumbnails in jQuery UI theme switcher

    You might have noticed, some tools from jQuery are not fully functional recently. That could be caused by jQuery disabling hotlinks. jQuery UI theme switcher is affected. I call it a bug because jQuery team did not make necessary arrangement before enforcement of hotlink policy.

    Nevertheless, how to reinstate thumbnails in jQuery UI theme switcher while waiting for jQuery team to release a hotlink compatible theme switcher? Easy, with my code – Themeswitcher Launcher.

    
    jQuery(function($){
     $('body').prepend('<div id="msdk-themeswitcher"></div>');
     $('#msdk-themeswitcher').themeswitcher();
     var srcStart = "http://jqueryui.com/themeroller/images/";
     $('img[src^="http://jqueryui.com/themeroller/images/"]').each(
     function() {
     this.src = this.src.replace(srcStart,
     "http://static.jquery.com/ui/themeroller/images/");
     });
    });
    
    

    Themeswitcher Launcher just does a simple job: replacing images source in theme switcher to another source static.jquery.com, which still allow hotlinking. You can replace with your domain if you host these images.

    To save your time, I packaged jQuery UI theme switcher with my Themeswitcher Launcher. Please note I changed jQuery UI theme switcher slightly because I need it for Magento sites. I put function themeswitcher() into jQuery namespace to be standard jQuery plugin, so it can be working with javascript prototype framework.

    Download msdk-themeswitcher-launcher.js.tar.gz

    For those who are interested in my Magento modules: jQuery UI theme switcher and my Themeswitcher Launcher are integrated into my Msdk (Magento SDK) module – it is just an advertisement.

  • Machine convert xls to csv

    Linux is an excellent OS. Today something again proved my choice.

    I was looking for a solution to convert Excel xls to csv format. This conversion is required by a Magento dataflow project.

    Magento native dataflow comes with an XML Excel parser. For some reasons, it does not convert my xls files. I think it may be due to limited functionality of Magento XML Excel parser class, or encoding problem.

    I need something which can reliably convert xls files from 3rd parties, which we have no control over how they produce xls files.

    I was thinking of another php independent class called ExcelReader. However, ExcelReader goes beyond what I need. All I need is convert xls to csv, make ready for dataflow.

    After a day’s research, finally xls2csv caught my attention. I would have found it earlier if I had searched by “linux command line convert xls to csv” earlier. It runs perfectly well on Fedora and CentOS as I tested.

    Installation is straight forward. Run

    
    yum install catdoc
    
    

    FYI, yum install xls2csv, installs something totally different. I have not figured out what it is.

  • I go back to ISP’s nameservers to resolve my domains

    很久以前什么都不懂的时候,觉得能自己做 DNS server,为自己的域名解析,是件很了不起的事情。再加那是 ISP 的 Domain Manager 对批量域名的更新支持不足,而自己的 DNS server 能 GUI 和 command line 并举,满足我对批量操作的要求。

    今非昔比。我倾向于放弃自行解析,重回 ISP nameservers 的环抱。这主要是基于以下考虑:

    • 自己的服务器是普通的服务器,ISP nameservers 是专业的,似乎它们的解析速度更快。
    • 自己的服务器一机多用,一迁移所有服务都要移,把 DNS 剥离出去可以少掉一项工作。
    • Godaddy Domain Manager GUI 有很大改进,现在批处理能满足我的要求。而我大部分域名在 Godaddy 注册,其他 ISP 不见改进,但我要求也不高,不能批量就一个个来吧。
    • Godaddy 控制面板的响应速度有很大提高,可能是它在荷兰建数据中心的功效。
    • 从节约开支的角度,我不得不降低一些服务器的配置,把 DNS 剥离出去可以减轻服务器负担。

    作为一个前期测试,今天先把一个域名交给 Godaddy nameservers 解析,试用一周,如满意就全盘放弃自己的 DNS。