Archive for the ‘Uncategorized’ Category

Malaysia Web Hosting Review (2)

This item was filled under [ Uncategorized, Webhost ]

It has been a terrible week for me since the beginning 1st January.
The web hosting service I am using – HIVE, is having problem since 1st of January, when the website is frequently facing problem of database inaccessible. It took 2 days for HIVE to realise that the problem might be caused by part of [...]

Continue reading...

Tagged with: [ , ]

PPStream 流氓软件?

This item was filled under [ Uncategorized ]

看来 PPSTREAM 也要被我列入流氓软件列表了。之前就觉得奇怪,为什么开ppstream 竟然比开迅雷还要吃带宽。如果内网有任何人看ppstream,其他人根本不用做东西了。
多亏 netlimiter , 我才发现原来ppstream是多么可恶的。。。

下载的速度 = 19.91 kB/s
上载的速度 = 72.50 kB/s
难快看ppstream不觉得很顺,但是整个上传的带宽却被它占用。如果只是刚开机的时候这么跑法还ok,但跑了20-30分钟还是这样,只好把ppstream关掉。
关掉就没事了吗?问题还没解决呢。还有一个 PPS 网络加速器,也在占用您的宽频,即使你关掉PPS!加速加速,听它放屁,把我的带宽变成龟速就有。都没看PPS了还要PPS加速来干什么?上传竟然搞到 22.37 kB/s!

PPStream 利用普通视窗用户不能测查流量的弱点,进行如此不道德的勾当,真是没天理。
Like
Unlike

Continue reading...

Tagged with: [ , , ]

简单快速自制伴奏 – Part 1

This item was filled under [ Uncategorized ]

有一首你很喜欢的歌曲,偏偏这首歌并不是该原唱歌手的主打歌之一,不论有没有受其歌迷的注目,该歌曲的KTV 始终没被唱片公司考虑在内。这时候如何呢?
运气好的话,到网上搜一搜,可以找到歌曲的消音伴奏。但若没有好心人制作该伴奏,又应当如何?
这里提供一个简单容易上手制作消音伴奏的方法。开始前,请先准备以下的软件/插件:

歌曲的mp3
安装 Winamp – 音乐播放器的始祖
安装 Winamp 插件 - DeFX 0.97

安装之后,打开 Winamp,从菜单中点选 Options > Preference 。相同地你也可用 Ctrl + P 。
在设定选项视窗中,点击 Plug-in >

在插件选项中,点选DeFX v0.97。
要消音,点选Karaoke的 【On】按钮,所播放的歌曲即刻就被消音了。你可以在 【level】、【filter】、【band】、【width】调整所适合的消音程度。
千千静听的使用者也可用类似上述的方法达到消音的效果。
Like
Unlike

Continue reading...

Tagged with: [ , ]

Wordpress plugin upgrade failed: solved by Core Control

This item was filled under [ Uncategorized ]

I have been using WordPress 2.7.1 for a few months. In the very beginning of the first two months, I was able to upgrade the plugin, with some chances of failure. But lately, I was totally unable to upgrade the plugin in Wordpress through built-in FTP. It just failed miserably, with the message: Download failed.: [...]

Continue reading...

Tagged with: [ , , ]

Passing object from PHP to Flash using JSON

This item was filled under [ Uncategorized ]

To pass an object with JSON serialized value to Flash, download as3corelib and extract to your project folder accordingly.
The example below show a person.php with class person and the corresponding as3 script to get data from php script, decode it and output accordingly.

//flash.php
class Person {
var $surname;
var $lastname;
}

$person[0] = new Person();
$person[0]->lastname = "Bryant";
$person[0]->firstname = "Kobe";

$person[1] = [...]

Continue reading...

Tagged with: [ , , , , , ]