We should forget about small efficiencies — Donald Knuth
29 Aug
Corel to acquire InterVideo, from News.com.
繼 InterVideo 在去年買下開發 PhotoImpact 的友立之後, 現在開發 CorelDraw, WordPerfect 和 Paint Shop Pro 的 Corel , 也準備花大約二億美金買下 InterVideo 了.
今年真是併購年啊!
Popularity: 9% [?]
28 Aug
FairUse4WM strips Windows Media DRM!, from Engadget.
Windows Media DRM 授權保護機制被一套叫做 FairUse4WM 的軟體破解了, 目前可以破解的苦主是 Windows Media DRM 10 和 11 (不包括 WM DRM 9).
今天在 DK blog 上看到這句話: (如果不能這樣引用, DK 長輩記得通知我啊~)
有很多人認為 DRM 是用於「保障著作人的權利」(Digital “Rights” Management),但實際上 DRM 一定可以被破解,無法保障著作人的權利。DRM 真正的用途如同自由軟體基金會所說的,是「限制使用人的權利」(Digital “Restrictions” Management),並藉由限制使用人的權利而宣稱可以保障著作人的權利。
突然發現之前雖然聽過, 卻沒啥感覺, 但是看到 FairUse4WM 這個軟體之後, 熊熊發現這句話還真是貼切啊~
Popularity: 77% [?]
28 Aug
Firefox Extension Promises Private P2P, from BetaNews.
AllPeers released a beta Thursday of what it called the most ambitious Firefox extension to date, a peer-to-peer application that would allow friends and family to share files and content between one another in a private setting.
The application has been released on Firefox’s extensions Web site, and is compatible with Windows, Mac OS and Linux. The AllPeers backend uses BitTorrent in combination with what is calls a “darknet,” where the computer user will remain anonymous while transferring files.
You can get this Firefox extension on Firefox Add-Ons site or take a online tour on AllPeers official website. In addition, here is a tutorial on AllPeers.
It’s sad, however, that traffic MUST go through the AllPeers servers in the UK from user Comments on Add-Ons site.
Popularity: 19% [?]
28 Aug

FreeEnigma is Firefox extension which implements a version of GPG, and brings cryptography to webmail like Google Mail, Yahoo! Mail or Hotmail.
Popularity: 15% [?]
25 Aug
To get a core dump you need to do something to change the max core file size, because it’s 0 by default.
In Linux, default shell bash has a built-in command which lets you set various resource limits for the processes started by the shell, like the core file size, called ulimit. You, hence, have to change these limitations before executing any program you want.
Let’s see how it work:
sojia [~] -pigfoot- [W0] ulimit -a
core file size (blocks, -c) 0
data seg size (kbytes, -d) unlimited
file size (blocks, -f) unlimited
pending signals (-i) 32767
max locked memory (kbytes, -l) 32
max memory size (kbytes, -m) unlimited
open files (-n) 1024
pipe size (512 bytes, -p) 8
POSIX message queues (bytes, -q) 819200
stack size (kbytes, -s) 8192
cpu time (seconds, -t) unlimited
max user processes (-u) 32767
virtual memory (kbytes, -v) unlimited
file locks (-x) unlimited
“core file size” line says 0 blocks. Change it by using ‘ulimit -c’:
sojia [~] -pigfoot- [W0] ulimit -c
0
sojia [~] -pigfoot- [W0] ulimit -c unlimited
sojia [~] -pigfoot- [W0] ulimit -c
unlimited
As you think, to enlarge the available FDs is to set the option of “-n”. Not exactly. It’s because only privileged user (root) can set this option. Here we go:
sojia [~] -pigfoot- [W0] ulimit -n
1024
sojia [~] -pigfoot- [W0] ulimit -n 8192
bash: ulimit: open files: cannot modify limit: Operation not permitted
sojia [~] -pigfoot- [W0] su
Password:
sojia ~ # ulimit -c
unlimited
sojia ~ # ulimit -n
1024
sojia ~ # ulimit -n 8192
sojia ~ # ulimit -n
8192
sojia ~ # exit
logout
sojia [~] -pigfoot- [W0] ulimit -n
1024
The first, we can see it encounters “Operation not permitted” as normal user. Second, coredump size is inherited. The last but the important thing is, when we terminate privileged session and return to normal user shell, the maximum number of FDs is back. You know why? Feedback please. ;-)
AS a result, if we want to change the maximum number of FDs for some program, we must execute it as root. Please keep it in mind.
Popularity: 16% [?]
22 Aug
Mozilla Thunderbird 2.0b2 Branch builds (20060822)
Sepecial Check-in
Known Issues
Popularity: 9% [?]
22 Aug
Network Algorithmics, from Slashdot.
Network Algorithmics: An Interdisciplinary Approach to Designing Fast Networked Devices. Which is a interesting book I would like to read recently. Here is some information from Amazon.
Table of Contents
Popularity: 17% [?]