Kakyo's profileKakyo.mix.zipPhotosBlogLists Tools Help
    9/29/2009

    还是写点啥吧

    1. 明天去日本领事馆领签证, 下个月底出发去日本.
    2. 工作方面, 游戏项目组已经扩大到100多人...
    3. 嗓子没太多好转, Voice Lab预约到了明年一月...明显不想让我早好. 咱就继续岁月无声.
    4. 上班/学位两响确实是体力大户. 算了...看~~~灰机~~~!
    5. 萌上了81年BBC出品的Lord of the Ring广播剧, 电影版很多台词/CV/音响风格看来是直接来自剧中, 按照当时的硬件水准, 质量超卓.
    6. 萌上了John Abercrombie跟Ralph Towner 75年的<Sargossa Sea>, 和两位后来的<Five Years Later>那种窒息的凄美旋律动机领军相比稍稍有些脾气, 又有些俏皮, 密布着抑扬顿挫的短句, 停顿, 等待ECM混响单元衰减雾散, 紧接着一波更出乎意料令人尖叫的拨弄. 即兴方向走的是Flamenco路线, Towner金属激励味十足的12弦琴跟Abercrombie滤掉高频分量后锋芒无痕的电琴, 前者下笔, 后者浸染, 天幕就这么湛蓝, 绯红, 晦暗, 复明下去.
    7. 从BT上下音乐实在是很难完结, 对强迫症的挑战. soulseek/电驴那个系统是专辑系统的延伸, last.fm/radio无始无终, 对听者而言是一种访客. BT上下的12G民间Ambient选集, 首先是一种选择, 接着变成占有, 决定开始后则要求几个月的投入, 这段记忆的音轨于是被完全书写了. 不论这些还是今后的智能播放, 和信息匮乏的过去相比, 媒体依然是以时间的背景色, 背景声的姿态刻画着人的思维, 不论推还是拉, 从不仅仅是服务.


    9/10/2009

    改进言论,应对傻逼

    Solidot | 90后"黑客"誓为国庆献厚礼
    改进言论,应对傻逼
    (得分:2)
    sunge (8808) Neutral 发表于 2009年9月10日 22时30分 星期四 (#48406)
    ( http://geektalks.cn/ | 最新日志: 2009年9月05日 07时56分 星期六 )
    为什么在中国总是傻逼来代表正常人呢?首先,我觉得这不是傻逼的问题。因为,傻逼是没有行为能力的人,他不可能意识到自己行为的后果,也不可能为自己的行为负责。换句话说,傻逼根本不知道自己在干啥。

    那么,只有可能是被代表的正常人的问题了。被傻逼代表的正常人,看着傻逼们说傻逼言论,开傻逼大会,却保持沉默。我想,这也许是因为正常人都没有真正了解傻逼的危害。

    傻逼是生物,生物都有趋利避害的习性,一旦出现对自己不利的状况,为了保护自己,傻逼可是什么傻逼事情都做得出来的。傻逼也有生殖的本能,傻逼是无性繁殖,一个傻逼总想分裂为两个傻逼,如果办不到这一点,一个傻逼会有把自己周围的正常人都变成傻逼的强烈愿望。

    只有了解傻逼的危害,才能加以防治。正常人要说话,要行动,不能让傻逼再代表你们。如果solidot有90后的,也许你们该做点什么了。当然,正常人说话都比较理性,没有傻逼那样富有冲击力,引起不了重视,这就是技术问题了。


    9/8/2009

    Jesus, Suspend finally worked on my HP desktop

    !!! Finally, here comes the conclusive news of my perfect Ubuntu desktop box.

    The solution script:

    echo "SUSPEND_MODULES=ehci-hcd" > /tmp/unload_modules
    chmod +x /tmp/unload_modules
    sudo mv /tmp/unload_modules /etc/pm/config.d


    Before using this, I was having the famous "blinking cursor" after resume; worse, kernel log was not ready before hitting the power button so there would be no readily available system-log to trace after you reboot into desktop; and even worse, network wasn't ready when you saw the blinking cursor, so ssh from another computer would also fall through.

    Thanks to Google and Ubuntu forums. Detailed clarification follows:

    "A host controller interface (HCI) is a register level interface which allows a host controller for USB or FireWire to communicate with the operating system of a personal computer.

    On the expansion card or motherboard controller, this involves much custom logic, with digital logic engines in FPGAs plus analog circuitry managing the high speed differential signals. On the software side, it requires a device driver (called a Host Controller Driver, or HCD).

    Enhanced Host Controller Interface (EHCI) is a high speed controller standard which is publicly specified.

    So, what's happening is that, on your particular laptop (which is totally different from the one being discussed here), either the usb chipset itself or the driver is causing problems with suspend. By adding
    SUSPEND_MODULES=ehci-hcd

    to /etc/pm/config.d, you are telling linux to unload this module from the kernel before it suspends and reload it when it returns. By having the kernel explicitly unload this module, it ensures that it is not loaded when the actual suspend occurs, and ensures that it is cleanly removed and re-inserted into the running kernel when you come back from suspend. This is a general way to avoid modules that cause problems with suspend. Unfortunately, as I mentioned above, this is a TOTALLY different laptop. Which modules cause these problems (and indeed whether it is a module that causes it or not) is very hardware dependent and will differ greatly between even laptops of the same general make from the same manufacturer."


    "

    Ubuntu 8.04/Issues/Failed Studio Suspend

    From DellLinuxWiki

    Jump to: navigation, search


    Description: System fails to suspend more than once. This is caused by a kernel bug in the USB subsystem that shipped with kernel 2.6.24. It is resolved in 2.6.26.
    Systems Affected: Studio 15n
    Impact: After the first suspend, the USB subsystem is hung.
    Fix: Unload ehci-hcd before suspending.

    $ echo SUSPEND_MODULES="ehci-hcd" | sudo tee -a /etc/pm/config.d/unload_modules
    "