换域名了

Post on: Category: 未分类Tag: GoDaddy 5 Comments

终于购入了个域名, iczbix.com.

在GoDaddy 用优惠卷买的, 买com送info,
最终价格为:  $7.99 + $0.18 + $0.18 = $8.35 = 52.80 CNY

Read More...

Samsung Kies Air 河蟹版(去除机型限制)

Post on: Category: 个人作品Tag: Android,破解,三星 6 Comments

三星出品的无线管理工具,个人觉得相当好用,和 AirDroid , WebSharing 各有千秋吧.
原本只能在三星的机型上使用,我于是通过LuckyPatcher做了个自定义补丁,
下载此补丁文件,放到SD卡上的LuckyPatcher目录中(/sdcard/LuckyPatcher/),
打开LuckyPatcher,找到软件并选择Custom Patch!(自定义补丁)即可.
补丁可能适用于更新的版本,如果补丁不能用了,我可能会更新补丁.

软件下载: Google Play115网盘(版本2.1.204271)

修改Youku的Swf实现去广告

Post on: Category: 学习笔记Tag: 优酷,Flash 41 Comments

声明:本文只是对Flash实现16进制编辑的基本思路的说明,并不是确实可行完整的Youku去广告方法.

首先打开Firebug,获取swf文件地址,下载下来.

使用大名鼎鼎的某SWF Decomper工具反编译,经过鲁夫的爱的提点,
com.youku.core.view.components.BaseVideo找到了关键代码. 

Read More...

Wamp Error 500

Post on: Category: 学习笔记Tag: Apache,PHP 4 Comments

以前在本地调试PHP脚本一直用的是自己搭建的AMP环境(Apache+PHP+MySQL).
今天写脚本要用到PHP 5.3的功能,我自己搭建的环境还是很久前的PHP 5.2 .于是打算更新下环境.
由于有任务在身,所以没有自己一一下载安装,而是直接使用WAMP.

谁曾想在安装就绪,添加虚拟主机时,出现了大问题.一旦配置文件里有虚拟主机,整个服务器直接报500错误.

研究多时,终于找到解决问题的办法.原来是因为没有添加默认虚拟主机的原因.

加入如下配置


<VirtualHost *:80>
 ServerName *
 DocumentRoot "D:/Wamp/www"
</VirtualHost>

OK,一切恢复了正常.

Moving Projects from GoogleCode to GitHub

Post on: Category: 学习笔记Tag: GoogleCode,GitHub,Git No Comments Yet

Moving from Google Code to GitHub


The protocol outlined below may appear complex, but it looks more
intimidating than it really is. Moving a project takes about two to five
minutes once your GitHub account and your migration computer is
properly configured.

You need four things to move a Google Code SVN project to GitHub:


  1. A Google Code project to move
  2. A GitHub user account
  3. SSH keys, and
  4. A migration computer that is configured to migrate the
    project from Google Code to GitHub. (in this tutorial, we will use a
    Ubuntu server; but any other Linux/Windows/Mac computer, properly
    configured, should do the job)

Read More...

Return Top