<?xml version="1.0"?>
<rss xmlns:blogChannel="http://backend.userland.com/blogChannelModule" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:blog="http://bitflux.org/doctypes/blog" xmlns:php="http://php.net/xsl" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:georss="http://www.georss.org/georss" version="2.0"><channel><title>ifun.freeflux.net</title><link>http://ifun.freeflux.net/blog/</link><description>Fix your computer problems (Windows, Linux, Mac OS X) for FREE!</description><generator>Flux CMS - http://www.flux-cms.org</generator><copyright>iFun</copyright><item><title>How to Change Product Key without Reinstalling Your Windows XP</title><link>http://ifun.freeflux.net/blog/archive/2008/03/09/how-to-change-product-key-without-reinstalling-your-windows-xp.html</link><guid isPermaLink="false">http://ifun.freeflux.net/blog/archive/id/40/</guid><content:encoded xmlns="http://www.w3.org/1999/xhtml">Say your Windows XP installation (already activated) somehow failed Microsoft Genuine Advantange Test (e.g. your legit product key has already been used by somebody else with Windows XP keygen). You can change the product key used to install your Windows XP without reinstalling your system. The basic idea is to deactivate your system and restart the activation process.&lt;br/&gt;
&lt;br/&gt;
STEP 1 - run regedit, locate \HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CrrentVersion\WPAEvents, change at least one digit of the value of OOBETimer to deactivate your installation of Windows XP. Close regedit and restart your system.&lt;br/&gt;
&lt;br/&gt;
STEP 2 - run "c:\windows\system32\oobe\msoobe /a" to activate your Windows XP. Select Telephone option, then change product key, input new key, and confirm the change, and close the activation window. If you have used a VOL key, your system will show already activated after reboot.</content:encoded><dc:subject>General</dc:subject><dc:creator>ifun</dc:creator><dc:date>2008-03-09T20:36:12Z</dc:date></item><item><title>How to restore GRUB bootloader</title><link>http://ifun.freeflux.net/blog/archive/2008/01/10/how-to-restore-grub-bootloader.html</link><guid isPermaLink="false">http://ifun.freeflux.net/blog/archive/id/37/</guid><content:encoded xmlns="http://www.w3.org/1999/xhtml">&lt;span roman=""
     new=""
     times=""
     style="font-size: 10pt;"
    &gt;&lt;strong&gt;Problem:&lt;/strong&gt; GRUB may be used as a bootloader for a Linux installation. It can also be used for booting multiple operating systems (e.g. Ubuntu Linux, Windows XP, Windows Vista, even Mac OS X if you were able to install it on your PC!). It is normally installed on MBR. If GRUB somehow got corrupted, you will not be able to boot your Linux installation or any other operating systems that were loaded by GRUB. You may also need to restore your GRUB after reinstalled your Windows OSes.&lt;br/&gt;
&lt;br/&gt;
&lt;strong&gt;Solutions:&lt;/strong&gt; under such circumstances, you may restore the default MBR to boot individual Windows installations (see my &lt;a href="http://ifun.freeflux.net/blog/archive/2007/12/30/fix-the-booting-problem-mbr.html"
    &gt;previous post&lt;/a&gt;), or reinstall GRUB. Use the following steps to restore your GRUB:&lt;br/&gt;
&lt;/span&gt;&lt;blockquote&gt;&lt;span roman=""
     new=""
     times=""
     style="font-size: 10pt;"
    &gt; 1. Boot with any Linux live CD/DVD (e.g. Knoppix or Ubuntu Live CD/DVD)&lt;/span&gt;&lt;br/&gt;
&lt;span roman=""
     new=""
     times=""
     style="font-size: 10pt;"
    &gt; 2. Get a root shell (e.g. Applications / System Tools / Root Terminal)&lt;/span&gt;&lt;br/&gt;
&lt;span roman=""
     new=""
     times=""
     style="font-size: 10pt;"
    &gt; 3. Make a folder (e.g. mkdir /mnt/linux)&lt;/span&gt;&lt;br/&gt;
&lt;span roman=""
     new=""
     times=""
     style="font-size: 10pt;"
    &gt; 4. Identify the Linux root partition (i.e. fdisk -l) (e.g. my Ubuntu root partition is /dev/sda2)&lt;/span&gt;&lt;br/&gt;
&lt;span roman=""
     new=""
     times=""
     style="font-size: 10pt;"
    &gt; 5. Mount the Linux root partition (i.e. mount -t ext3 /dev/sda2 /mnt/linux) (replace /dev/sda2 with your Linux root partition determined at step 4)&lt;br/&gt;
6. Mount proc (i.e. mount -t proc none /mnt/linux/proc)&lt;br/&gt;
7. Mount udev (i.e. mount -o bind /dev /mnt/linux/dev)&lt;br/&gt;
&lt;/span&gt; &lt;span roman=""
     new=""
     times=""
     style="font-size: 10pt;"
    &gt; 8. Chroot to the mounted partition (i.e. chroot /mnt/linux)&lt;/span&gt;&lt;br/&gt;
&lt;span roman=""
     new=""
     times=""
     style="font-size: 10pt;"
    &gt; 9. Restore Grub (i.e. grub-install /dev/sda)&lt;/span&gt;&lt;br/&gt;
&lt;span roman=""
     new=""
     times=""
     style="font-size: 10pt;"
    &gt; 10. Exit the shell&lt;/span&gt;&lt;br/&gt;
&lt;span roman=""
     new=""
     times=""
     style="font-size: 10pt;"
    &gt; 11. Reboot&lt;br/&gt;
&lt;/span&gt;&lt;/blockquote&gt;An alternative approach to STEP 9 (if grub-install does not work for you):&lt;br/&gt;
&lt;blockquote&gt;1. Get a root shell&lt;br/&gt;
2. run grub (i.e. type "grub" at the shell)&lt;br/&gt;
3. find /boot/grub/stage1 (it would return some thing like (hd0,2))&lt;br/&gt;
4. root (hd0,2)&lt;br/&gt;
5. setup (hd0) (this would install grub on MBR, alternatively setup (hd0,2))&lt;br/&gt;
6. quit&lt;br/&gt;
&lt;/blockquote&gt;&lt;span roman=""
     new=""
     times=""
     style="font-size: 10pt;"
    /&gt;NOTE: You may need to remove the cached device map (i.e. /boot/grub/device.map) before attempting to restore GRUB.</content:encoded><dc:subject>General</dc:subject><dc:creator>ifun</dc:creator><dc:date>2008-01-10T09:18:16Z</dc:date></item><item><title>Fix the booting problem: MBR</title><link>http://ifun.freeflux.net/blog/archive/2007/12/30/fix-the-booting-problem-mbr.html</link><guid isPermaLink="false">http://ifun.freeflux.net/blog/archive/id/34/</guid><content:encoded xmlns="http://www.w3.org/1999/xhtml">&lt;strong&gt;Problem:&lt;/strong&gt; sometimes your PC may fail to boot up ...&lt;br/&gt;
&lt;br/&gt;
&lt;strong&gt;Solution:&lt;/strong&gt; many inexperienced PC users often panic in such a situation and resort to the only solution available to them: reinstall the operating system! The side effects of such a solution: spending quite some time to reinstall and configure all drivers and applications; risk losing important data.&lt;br/&gt;
&lt;br/&gt;
A simple solution to most boot failures often involves fixing the Master Boot Record (MBR). The MBR resides on the first sector of a Hard Drive. At power up, the system (BIOS) consults the MBR to decide which partition (operating system) should be booted up, then the control is transferred to the partition containing the actual operating system being booted up. The default MBR contains a pointer to the active partition: only one partition can be marked active on each hard drive. Installation of many operating systems does not modify the default MBR but simply flag the partition active. Some operating systems (e.g. Linux Distros) may install the bootloader (e.g. LILO or GRUB) on the MBR. If something went wrong, you may not be able to boot the Linux or any other operating systems (e.g. Windows XP) being loaded by the Linux bootloader.&lt;br/&gt;
&lt;br/&gt;
To restore the default MBR, boot the system using a boot disk (either floppy or windows installation disk), run the following command:&lt;br/&gt;
&lt;blockquote&gt;fdisk /mbr&lt;br/&gt;
&lt;/blockquote&gt;You also need to flag the partition you want to boot active. This can be achieved with fdisk or some partition management programs (e.g. partition magic) - needs to be run from boot disk.&lt;br/&gt;
&lt;blockquote&gt; &lt;/blockquote&gt;PS. Hiren's BootCD is a free ISO image that can be burned onto a CD. It contains many useful tools (including fdisk and partition magic) to help diagnose and fix PC problems.</content:encoded><dc:subject>General</dc:subject><dc:creator>ifun</dc:creator><dc:date>2007-12-30T10:24:52Z</dc:date></item><item><title>Mac OS X: a few useful tips</title><link>http://ifun.freeflux.net/blog/archive/2007/11/29/mac-os-x-a-few-useful-tips.html</link><guid isPermaLink="false">http://ifun.freeflux.net/blog/archive/id/31/</guid><content:encoded xmlns="http://www.w3.org/1999/xhtml">&lt;strong&gt;1. Let Menu Bar show today's Date&lt;/strong&gt;
The Mac OS X Menu Bar shows time and the day of the week, but doesn&#x2019;t show the date information. To show today's date on the Menu Bar, do the following:&lt;br/&gt;
&lt;ul&gt;
    &lt;li&gt;System Preferences -&amp;gt; International -&amp;gt; Formats&lt;/li&gt;
    &lt;li&gt;Select Dates and click &#x201C;Customize&#x201D;; choose one of your preferred date format; highlight and copy the date part (use Command-C to copy); click &#x201C;Cancel&#x201D;&lt;/li&gt;
    &lt;li&gt;Select Times and click &#x201C;Customize&#x201D;; choose Medium; paste the example date just copied in front of the time; click &#x201C;OK&#x201D;&lt;/li&gt;
&lt;/ul&gt;
&lt;strong&gt;2. Stop Mac OS X from automounting all the drives&lt;/strong&gt;
Mac OS X normally automount all partitions it recognises at boot time. Sometimes you may not want this to happen (e.g. you have Windows XP, Tiger and Leopard installed, when you boot one OS, you don&#x2019;t want the others to be automounted).&lt;br/&gt;
&lt;br/&gt;
This can be resolved using the file /etc/fstab. This file may not exist, so you may need to create this file. First, find out the partition&#x2019;s volume name when mounted, e.g. Windows XP is mounted as winxp (on your desktop, or /Volumes/winxp), Tiger as tiger, and Leopard as leopard.&lt;br/&gt;
&lt;br/&gt;
When you are booted into Leopard, if you don&#x2019;t want winxp and tiger to appear on your desktop (suppress automounting), issue the follow command:&lt;br/&gt;
&lt;blockquote&gt;&lt;em&gt;sudo pico /etc/fstab&lt;/em&gt;
&lt;/blockquote&gt;and add the following content:&lt;br/&gt;
&lt;blockquote&gt;&lt;em&gt;LABEL=winxp none ntfs ro,noauto&lt;br/&gt;
LABEL=tiger none hfs rw,noauto&lt;/em&gt;
&lt;/blockquote&gt;&lt;strong&gt;3. Set up PPTP VPN&lt;/strong&gt;
System Preferences -&amp;gt; Network; click &#x201C;+&#x201D; on the bottom left and choose VPN as &#x201C;Interface&#x201D;; provide server&#x2019;s IP address/username/password (this information is provided by your company); optionally add a DNS server&#x2019;s IP address used within your company (e.g. 192.168.254.1) (this would help resolve links on your company&#x2019;s Intranet).&lt;br/&gt;
&lt;br/&gt;
&lt;strong&gt;4. Use Adium for email notification&lt;/strong&gt;
Adium can be used as an email notification too for all your hotmail, yahoo, google mail accounts, even if you don&#x2019;t use it to chat with your friends.&lt;br/&gt;
&lt;br/&gt;
Start up Adium; Preferences -&amp;gt; Accounts; double click on an account (you can add all your accounts) -&amp;gt; Options -&amp;gt; check &#x201C;check for new mail&#x201D;.&lt;br/&gt;
&lt;br/&gt;
Now you need to create new mail notification event: Preferences -&amp;gt; Accounts -&amp;gt; Events; double click &#x201C;New Mail Notification&#x201D; -&amp;gt; choose an action (e.g. &#x201C;Bounce the dock icon&#x201D; &#x201C;Repeatedly&#x201D;).&lt;br/&gt;
&lt;br/&gt;
&lt;strong&gt;
5. Extended attribute com.apple.quarantine&lt;/strong&gt;
Sometimes when you download an application (e.g. useful.app) from the Internet, Leopard may add an extended attribute com.apple.quarantine to the application package, and you may have difficulty to run the application.&lt;br/&gt;
Issue the follow command at a terminal:&lt;br/&gt;
&lt;blockquote&gt;&lt;em&gt;ls &#x2013;ld useful.app&lt;/em&gt;
&lt;/blockquote&gt;You will see something like this &#x201C;drwxr-xr-x@&#x201D;. The trailing @ indicates some extended attribute on the package.&lt;br/&gt;
&lt;br/&gt;
Issue the follow command at a terminal:&lt;br/&gt;
&lt;blockquote&gt;&lt;em&gt;xattr useful.app&lt;/em&gt;
&lt;/blockquote&gt;You will see &#x201C;com.apple.quarantine&#x201D;&lt;br/&gt;
&lt;br/&gt;
You can remove the attribute by issuing the following command (if the file/package is owned by root/admin, add sudo to the command):&lt;br/&gt;
&lt;blockquote&gt;&lt;em&gt;xattr &#x2013;d com.apple.quarantine useful.app&lt;/em&gt;
&lt;/blockquote&gt;The attribute is likely set for all contents within a package (e.g. .app, .kext). In this case, run the following command:&lt;br/&gt;
&lt;blockquote&gt;&lt;em&gt;find useful.app &#x2013;exec xattr &#x2013;d com.apple.quarantine {} \;&lt;/em&gt;&lt;/blockquote&gt;
&lt;script src="http://digg.com/tools/diggthis.js"
     type="text/javascript"
    /&gt;
</content:encoded><dc:subject>General</dc:subject><dc:creator>ifun</dc:creator><dc:date>2007-11-29T09:10:22Z</dc:date></item><item><title>Mac OS X (Leopard): change time machine backup interval</title><link>http://ifun.freeflux.net/blog/archive/2007/11/28/mac-os-x-leopard-change-time-machine-backup-interval.html</link><guid isPermaLink="false">http://ifun.freeflux.net/blog/archive/id/28/</guid><content:encoded xmlns="http://www.w3.org/1999/xhtml">&lt;strong&gt;Objective:&lt;/strong&gt; to set up a flexible schedule (instead of hourly) for automatic Time Machine backup.&lt;br/&gt;
&lt;br/&gt;
&lt;strong&gt;Problem:&lt;/strong&gt; the Leopard Time Machine is default to an hourly backup schedule. You cannot change the backup frequency through the System Preferences Pane if you would like to backup more/less frequently.&lt;br/&gt;
&lt;br/&gt;
&lt;strong&gt;Solution:&lt;/strong&gt; manually modify the default value within com.apple.backupd-auto.plist. The file is located under /System/Library/LaunchDaemons/. Issue the following command at terminal to open the file and make changes:&lt;br/&gt;
&lt;blockquote&gt;&lt;em&gt;sudo pico /System/Library/LaunchDaemons/com.apple.backupd-auto.plist&lt;/em&gt;&lt;br/&gt;
&lt;/blockquote&gt; Find the default value 3600 (seconds) and change it to 7200 if you would like it to backup in 2-hourly intervals (or 1800 for half-hourly backup). Ctrl-O to save the file and Ctrl-X to exit editing. The changes should take effect after reboot.</content:encoded><dc:subject>General</dc:subject><dc:creator>ifun</dc:creator><dc:date>2007-11-28T12:54:11Z</dc:date></item><item><title>Mac OS X: file sharing made easy</title><link>http://ifun.freeflux.net/blog/archive/2007/11/23/mac-os-x-file-sharing-made-easy.html</link><guid isPermaLink="false">http://ifun.freeflux.net/blog/archive/id/25/</guid><content:encoded xmlns="http://www.w3.org/1999/xhtml">&lt;strong&gt;Objective: &lt;/strong&gt;to work around Mac OS X's inadequate built-in file sharing facility.&lt;br/&gt;
&lt;br/&gt;
&lt;strong&gt;Problem:&lt;/strong&gt; Mac OS X's built-in file sharing is inadequate: with Tiger, you can only share a user's home directory; although Leopard now allows you to share any folders on your Mac machine, it does not give you ability to fine tune the access control. More over, you need to remember the names of all shares you have created.&lt;br/&gt;
&lt;br/&gt;
&lt;strong&gt;Solution in brief:&lt;/strong&gt; &lt;em&gt;just create soft links to all the folders you would like to share in your home directory. This way, sharing your home directory also enable you to share any other folders on your Mac OS X.&lt;/em&gt;&lt;br/&gt;
&lt;br/&gt;
&lt;strong&gt;Solution in detail:&lt;/strong&gt; Why not create soft links to all the folders you would like to share, and put these links to a central place within your home directory? The soft links will be resolved to the actual folders when the shares are accessed over a LAN.&lt;br/&gt;
&lt;br/&gt;
Say you would like to share the follow folders/volumes: /Volumes/data, /Volumes/backup, and /Volumes/media/videos.&lt;br/&gt;
&lt;br/&gt;
&lt;strong&gt; Step 1:&lt;/strong&gt; enable file sharing - System Prefences -&amp;gt; Sharing, check "File Sharing", click "Options...", check "Share files and folders using SMB" if you would like to enable Windows or Linux to securely access the shares, check your account name (e.g. john), click "Done".&lt;br/&gt;
&lt;br/&gt;
&lt;strong&gt; Step 2:&lt;/strong&gt; create a directory (e.g. share) within your home directory to hold all the shares - type the follow command in a terminal (NOTE: change john to your user name):&lt;br/&gt;
&lt;blockquote&gt;&lt;em&gt;mkdir /Users/john/share&lt;/em&gt;&lt;/blockquote&gt; &lt;strong&gt;Step 3:&lt;/strong&gt; create soft links for the shares - type the follow commands in a terminal:&lt;br/&gt;
&lt;blockquote&gt;&lt;em&gt; cd /Users/john/share&lt;br/&gt;
ln -s /Volumes/data/ data&lt;br/&gt;
ln -s /Volumes/backup backup&lt;br/&gt;
ln -s /Volumes/media/videos videos&lt;br/&gt;
&lt;/em&gt; &lt;/blockquote&gt; It's done. On a Windows machine, you can map the share, say your Mac machine's IP is 192.168.0.2. Map a network drive with \\192.168.0.2\john, provide your user name (i.e. john in this example) and password. Now you'll be able to access all shares within the share folder.</content:encoded><dc:subject>General</dc:subject><dc:creator>ifun</dc:creator><dc:date>2007-11-23T17:12:27Z</dc:date></item><item><title>Windows: file sharing without setting up a share </title><link>http://ifun.freeflux.net/blog/archive/2007/11/22/windows-file-sharing-without-setting-up-a-share.html</link><guid isPermaLink="false">http://ifun.freeflux.net/blog/archive/id/22/</guid><content:encoded xmlns="http://www.w3.org/1999/xhtml">&lt;strong&gt;Objective:&lt;/strong&gt; quick and easy access to files on a Windows machine over a LAN.&lt;br/&gt;
&lt;br/&gt;
&lt;strong&gt; Problem:&lt;/strong&gt; Say you have laptop running Mac OS X, Ubuntu, or Windows XP/Vista, and you would like to quickly grab some files from a PC running Windows 2000/XP/Vista on the same Local Area Network (LAN) at home or at work.&lt;br/&gt;
&lt;br/&gt;
&lt;strong&gt;Solution in brief:&lt;/strong&gt; &lt;em&gt;There is a hidden share for each drive under Windows (e.g. C$ for C:, D$ for D:). Simply connect to one of these shares to access files you need. You need to provide admin user name and password. Under Mac OS X or Linux, you would use "Connect to Server..."; under another Windows, you just use "Map Network Drive...". Find out the target Windows machine's IP address and off you go!&lt;/em&gt;&lt;br/&gt;
&lt;br/&gt;
&lt;strong&gt;Solution in detail:&lt;/strong&gt; There is no need to login to your Windows machine and set up a share for this purpose. There is a hidden share for each drive under Windows. That&#x2019;s right, there is a hidden share C$ for drive C:, D$ for D:, and so on. These shares are enabled by default for administrative purposes. You need to have an account with administrative privilege.&lt;br/&gt;
&lt;br/&gt;
&lt;strong&gt;Step 1:&lt;/strong&gt; find out the IP address of the Windows machine (type the command &#x201C;ipconfig&#x201D; from a terminal). Say the IP you got is: 192.168.0.2. You can also use the easy-to-remember machine name instead of the IP address on a LAN with all Windows machines.&lt;br/&gt;
&lt;br/&gt;
&lt;strong&gt;Step 2:&lt;/strong&gt; from the laptop connected to the same LAN, connect to one of the default shares of your Windows machine: &lt;blockquote&gt; &lt;/blockquote&gt;
&lt;ul&gt;
    &lt;li&gt;If your laptop runs &lt;strong&gt;Mac OS X&lt;/strong&gt;, from Finder menu item Go-&amp;gt;Connect to Server&#x2026; (or Command-K for quick access), put smb://192.168.0.2/D$ in Server Address and click Connect, provide admin user name and password for the Windows machine when prompted (do not worry about the workgroup setting if you are running Tiger).&lt;/li&gt;
    &lt;li&gt;If your laptop runs &lt;strong&gt;Ubuntu 7.10&lt;/strong&gt;, from menu bar Places-&amp;gt;Connect to Server&#x2026;, select windows share as service type, server: 192.168.0.2, share: D$ (if you leave this blank, you will be able to access all default shares on your windows machine), User Name: admin user name, leave the rest blank, click Connect, a folder named &#x201C;D$ on 192.168.0.2&#x201D; will appear on your desktop, double click you will be prompted for password (do not worry about the workgroup setting).&lt;/li&gt;
    &lt;li&gt;If your laptop runs &lt;strong&gt;Windows XP/Vista&lt;/strong&gt;, open Windows Explorer, select menu item Tools-&amp;gt;Map Network Drive&#x2026;, put \\192.168.0.2\D$ in Folder section, click Finish button, and provide admin user name and password.&lt;/li&gt;
&lt;/ul&gt;
&lt;blockquote&gt; &lt;/blockquote&gt; &lt;strong&gt;Step 3&lt;/strong&gt;: you now have full read and write access to drive D: on your Windows machine. &lt;strong&gt;Be warned&lt;/strong&gt;, your domain administrator can access any part of the local drives of your Windows machine connected to the LAN!</content:encoded><dc:subject>General</dc:subject><dc:creator>ifun</dc:creator><dc:date>2007-11-22T20:51:34Z</dc:date></item><item><title>Fix your computer problems for free</title><link>http://ifun.freeflux.net/blog/archive/2007/11/20/fix-your-computer-problems-for-free.html</link><guid isPermaLink="false">http://ifun.freeflux.net/blog/archive/id/15/</guid><content:encoded xmlns="http://www.w3.org/1999/xhtml">I have always been interested in playing with computers and have accumulated some experiences fixing computer problems. I would like to have fun and meet new friends. Therefore I will offer the following services &lt;strong&gt;free of charge&lt;/strong&gt; to people in need:&lt;br/&gt;
&lt;ul&gt;
    &lt;li&gt;Boot: boot failure; multi-boot&lt;/li&gt;
    &lt;li&gt;Installation: operating systems (windows, linux, mac os x); software; virtual machine&lt;/li&gt;
    &lt;li&gt;Backup and data recovery&lt;/li&gt;
    &lt;li&gt;Malware removal&lt;/li&gt;
    &lt;li&gt;Home network: ADSL; home LAN; file/web server&lt;/li&gt;
    &lt;li&gt;Custom PC build: advice on selecting hardware; help put pieces together&lt;/li&gt;
&lt;/ul&gt;
I recently completed my PhD study (in computer science) and started working. I'm living in Manchester (UK), so this service will be only available to people in Manchester area. I can only work on this on Saturdays at home by appointment. Please drop me a message if you need help on your computing problems.&lt;br/&gt;
&lt;br/&gt;
&lt;strong&gt;PS:&lt;/strong&gt; Watch this place - I'll put some useful guides out soon!</content:encoded><dc:subject>General</dc:subject><dc:creator>ifun</dc:creator><dc:date>2007-11-20T17:12:36Z</dc:date></item></channel></rss>
