SONY NWZ-W252随机光盘找不到了,不想使用WMP11来管理MP3,sonystyle上关于w252页面也没有下载,Google后得知软件名字叫content transfer.

W252 sony大陆官网下载地址http://service.sony.com.cn/AUDIO/Download/28569.htm

lucid安装scribe手记

| No Comments | No TrackBacks

 

首先apt-get install必须的依赖
apt-get install libboost-dev libboost-test-dev libboost-program-options-dev libevent-dev automake libtool flex bison pkg-config g++ libssl-dev
在thrift.apache.org上下载0.7.0版本的thrift
./configure --with-ruby=no
make
make install
然后cd contrib/fb303
./bootstrap.sh
make
make install
安装fb303是必须的,否则scribe无法编译
scribe是从git上获取的
安装步骤同fb303
 
编译好scribe之后,运行src/scribed examples/example1.conf,能正常运行即为编译成功
如果遇到src/scribed: error while loading shared libraries: libthrift.so.0: cannot open shared object file: No such file or directorycuw错误,将/usr/local/lib/libthrift.so.0 append到/etc/ld.so.conf并执行ldconfig即可
 
之前安装失败, google半天收到不少误导...结果发现把thrift && fb303 && scribe的文件中apache::thrift和namespace apache都替换成facebook::thrift和namespace facebook也能编译...仔细看了下才知道要先安装fb303

一直在每个windows机器上都安装了一份gow ( The lightweight alernative to cygwin), 但是在使用中遇到了几个bug

 

wget
wget在设定二进制下载的情况,仍然会导致NSIS的部分文件下载出错,导致执行NSIS运行时报错
因为必须在cli下运行,使用lftp 4.23版本替代了wget进行FTP下载操作
cp
非常诡异的问题,cp -r在某些特定目录下执行拷贝操作时,会丢失某个大写文字开头的文件, 更改cwd就没有这个问题
使用xcopy解决这个问题

 

0-13D内, 正常访问, 可以续费
14-40D内, NS被更改为dnsX.expirenotification.com, 域名被domain parking, 显示到期时间为Expiration Date + 1 Year
40-75D内, status为redemptionPeriod
>75D 删除
 
 
某域名还有35天才能购买... still waiting
 

 

在ubuntu 10.04.2 LTS 64bit下使用apt安装的imagemagick和php/imagick, 在处理图片的时候会segment fault退出。
strace显示是处理完毕munmap出现的segment fault...
处理方式是显式设定OMP_NUM_THREADS=1, 是imagemagick使用的libgomp seg faulting。
openmp的committee说openMP在与其他线程模型一块工作时行为未定义...
所以想正常的用,要么编译的时候disable掉openmp, 要么显式export OMP_NUM_THREADS=1, 因为没有一个能在运行时关掉openmp的方法
悲催的是--disable-openmp选项由于经常link失败, 而imagemagick也没有针对这个问题提供2个版本的编译脚本...so

Type Hints can only be of the object and array (since PHP 5.1) type. Traditional type hinting with int and string isn't supported. referer

	We will not provide typehints for primitive types as PHP has automatic 
typeconversion for them Also we are not adding any checks for primitive 
types since that would either slow down the compile step or would 
require new keywords. (by helly@php.net)

user comment里面提供了利用set_error_handler解决php对int/string类型type hint报fatal error的方法, 但是set_error_handler..这个合适吗? 罢了,php type hint不支持interface, 却支持数组,quick and dirty, 这或许就是php philosophy吧

按照无觅官方movable Type安装说明, 在后台的Design->Templates,Archive Templates列表中点击名为Entry的模板文件, 在<$mt:EntryBody$>后面添加无觅的部分代码即可。但是这样会导致在显示含有Extended的文章(即包含EntryMore)的时候,无觅的插件会显示在BODY和EXTENDED中间,而不是全文的最后。

所以无觅的movable Type标准安装说明应该修改为:

4. 在编辑域中找到<$mt:EntryBody$>,并在其后添加如下代码:

<mt:If tag="EntryMore">
<mt:Else>
        <div class="wumii-hook">
            <input type="hidden" name="wurlvalue="<$mt:EntryPermalink$>" />
            <input type="hidden" name="wtitlevalue="<$mt:EntryTitle encode_html="1"$>" />
        </div>
        <span style="display: none;">
            <mt:EntryTags><rel="tag"><$mt:TagName$></a></mt:EntryTags>
        </span>
        <script>
            var wumiiSitePrefix "<$mt:BlogURL$>";
        </script>
</mt:If>

5.在编辑域中找到<$mt:EntryMore$>,并在其后添加如下代码:

<div class="wumii-hook">
    <input type="hidden" name="wurlvalue="<$mt:EntryPermalink$>" />
    <input type="hidden" name="wtitlevalue="<$mt:EntryTitle encode_html="1"$>" />
</div>
<span style="display: none;">
    <mt:EntryTags><rel="tag"><$mt:TagName$></a></mt:EntryTags>
</span>
<script>
    var wumiiSitePrefix "<$mt:BlogURL$>";
</script>

6.继续在此文件中找到</body>  .. 下略

dokuwiki的页面很多都是<meta name="robots" content="noindex,nofollow"/>

默认设置下,在页面修改5天后才会改成index和follow

When creating/modifying a page allow search engines to index it after this time (in seconds). This works by adding <meta name=“robots” content=“noindex,nofollow” /> in the output if the specified time hasn't elapsed.

参考链接:

doku config:indexdelay

doku config:relnofollow

关于Readability

| No Comments | No TrackBacks

All user request have an X-AppEngine-Country header which contains the ISO-3166-1 alpha-2 country code for the user, based on the IP address of the client request. (from GAE ReleaseNotes)

ISO 3166-1 alpha-2 codes are two-letter country codes defined in ISO 3166-1, part of the ISO 3166 standard published by the International Organization for Standardization (ISO), to represent countriesdependent territories, and special areas of geographical interest. 

ISO 3166-1 http://zh.wikipedia.org/zh-cn/ISO_3166-1
ISO 3166-1 alpha-2 http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2

最新评论

  • suchasplus:
    这个域名只是有人注册掉了...貌似嘛都没干 domain tasting现在是收费的了。。1美元一次。。 read more
  • qingbo:
    完全删除的瞬间马上会有专业经营域名的公司抢注掉,不管这个域名多垃圾。注册后有个啥period忘了,好像是三天还是五天,在这段时间里该公司会测试该域名的流量,如果对它没有什么好处的话它在此时间段结束前放弃,不会有任何损失。你可以查一下那些刚刚被删除的域名是不是这种下场 :) 我当时是在godaddy上下的backorder,godaddy都抢不过这种公司,是在这些公司放弃之后才得到的。 read more
  • anonymous:
    初来乍到,请多多关照。 read more
  • anonymous:
    俺是来看看的,俺不是打酱油的。 read more
  • Noobslab:
    Really nice, Thanks for this read more
  • leeawan:
    thank you very much read more
  • subbu:
    why it is saying this version of qq is having read more
  • 互联网营销:
    用了一次这个系统纠结了 read more
  • suchasplus:
    @tanmax curl -I http://blog.suchasplus.com/downloads/flashget-1.0.3-0_cn-version-fixed.noarch.deb HTTP/1.1 200 OK Date: Thu, 16 read more
  • tanmax:
    再给个原版最新的flashget地址 http://bbs.flashget.com/download/flashget-1.0.3-0_cn.noarch.deb 谢过拉 read more
OpenID accepted here Learn more about OpenID
Powered by Movable Type 5.02
Creative Commons License
This blog is licensed under a Creative Commons License.