thanks to the great wall, access to the host from inside the wall will be very slowly since gravator.com
blocked.
no fix until they open the door, or a window.
But I think it really a good try to refresh the new plugin GravatarLocalCache
.
Beyond The Data
thanks to the great wall, access to the host from inside the wall will be very slowly since gravator.com
blocked.
no fix until they open the door, or a window.
But I think it really a good try to refresh the new plugin GravatarLocalCache
.
today when Im tring to refresh kernel 2.6.39 on my Fedora11 node, some small issue hit during make rpm progress.
1 2 3 4 5 6 |
[root@suse-pc linux-2.6.39]# make rpm make clean ... ... rpm --target i386 -ta ../kernel-2.6.39.ZIP.tar.gz --target: Unkown option |
double check and file the problem,
in the file linux-2.6.39/scripts/package/Makefile
, this scriptwill detect the current installation of rpmbuild. If failed it will choose rpm instead. That’s why I hit the problem.
1 2 3 4 5 6 |
23 24 # Do we have rpmbuild, otherwise fall back to the older rpm 25 RPM := $(shell if [ -x "/usr/bin/rpmbuild" ]; then echo rpmbuild; 26 else echo rpm; fi) 27 |
fix:
just refresh the rpm-build
package and continue,.
1 |
yum install rpm-build -y |
讨厌升级的家伙又升级了一次小东西。
将正黑体的版本从V0.8升级到了V1.0-RC, 觉得最明显的进步是粗细粒度控制不错,尽管还有几只字型不满意,
但至少在字体放大缩小时候不会出现虚化锯齿现象了。
http://wenq.org/index.cgi?ZenHei
必须承认我对于自己对于升级一切app的懒惰性。。。
embr似乎还用着0.2*版本,但zi.mu已经失效了一段时间了,却也没有其他要更新的地方。
在windows下着实不方面,用着默认的Terminal+secureCRT, ftp/ssh来搞定,
但上传好zip 解压时候发现问题,
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
... ... inflating: embr/img/ajax.gif extracting: embr/img/arr2.gif extracting: embr/img/bg-btn-green.gif extracting: embr/img/bg-btn-red.gif extracting: embr/img/bg-btn.gif bad CRC 14ad5046 (should be fe7ac514) file #44: bad zipfile offset (local header sig): 30391 (attempting to re-compensate) file #44: bad zipfile offset (local header sig): 30391 file #45: bad zipfile offset (local header sig): 36930 file #46: bad zipfile offset (local header sig): 37437 ... ... |
仔细确认了一下,应该是ftp 没有换成binary mode,手动切了一下重传,一切ok.
更新基本无缝,很赞。不影响现有app~
I’m reading <Expert C Programming>
this topic 6.8 is on setjmp/longjmp
mechanism,
compared with throw/catch
this setting obviously has an re-enter callback.
notes,
-zip
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
#include <setjmp.h> jmp_buf buf; banana(){ printf("In banana()n"); longjmp(buf,1); printf("You'll never see this line.n"); } main(){ if (setjmp(buf)) printf("back into mainn"); else{ printf("first time running n"); banana(); } } |