Let’s go skiing this snow season!

Last weekend, we drove almost 500km from Sydney to Thredbo.

Sydney to Snowy Montain
Sydney to Snowy Montain

Friday night, it was freezing and the temperature drops to -5°. We left few bottles outside. Saturday morning, they all iced up. Saturday was sunny but cold. The cold weather still can not stop our passion.

From top of the mountain

Ski is fun but dangerous. I saw at least two people was sent to the hospital by ambulance. My ski pole was also broken.

Domino’s Pizza $5.95 mobile ordering site exploit

Domino’s Pizza has new mobile ordering site, and any value or traditional pizza only $5.95 each pick up.
This deal is for mobile user only. It will re-direct non-mobile user to normal online ordering site, and the price jumps up to $7.95.

From technical perceptive, how does Domino’s server determine a mobile user? Normally a web request contains “User-Agent” to help web server tell who is visiting. This is a typical example of web request. If we change the “User-Agent” content, we can cheat domino’s web server and order $5.95 pizza.

GET / HTTP/1.1
Host: www.dominos.com.au
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.18) Gecko/20110614 Firefox/3.6.18
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Connection: keep-alive

OK, let’s do it!

  1. Download user agent switcher for your Firefox and install.
  2. Change user agent to iPhone
  3. Star ordering from http://dominos.com.au/mobile.aspx and enjoy $5.95 pizza

 

Lane Cove National Park

After three weeks continuous raining, finally it’s a sunny weekend. We can step outdoors for a small winter trip to enjoy the long waiting sun shine.

We are begin with Riverside walking track for a short bush walk.

Few weeks raining makes Lane Cove river overflow.

Ducks like swimming.

Zipping the download files on the fly ASP.Net (real-time zip and download file from server)

I am currently working on an ASP.Net web project, which allows client to download a well structured submission package. Due to security reason, web server can not create folder and write file on client side. Web server can generate a well structured zipped file and push to the client.

There could be two ways to achieve that;

Fist way:

  1. Create folders and copy files into each folder
  2. Use 3rd party tool, eg winrar, 7zip to zip the whole folder to one zipped file
  3. Send back download web address, and let client download the zipped file

If the zipped file is small and web server is powerful enough, client won’t feel any delay. However if the file is big, client side will get no any response until zip file is ready. We can put similar message, eg “Please wait… ”. But client side still don’t know how long would take. If zip file is not ready within time out period, server will get reset. This is a really awful user experience.

Second way:

  1. Create folder and zip the files on the fly (on web server’s memory)
  2. Send back zipped stream to client through Response
  3. Client download  zipping file one by one

Client can clearly feel the progress of downloading.

Here is the code for 2nd solution:

//prepare response header
Response.Clear();
//set Response Content Type
Response.ContentType = "application/x-zip-compressed";
Response.AddHeader("Content-Disposition", "attachment; filename=Download.zip");
ZipOutputStream zipOutput = new ZipOutputStream(Response.OutputStream);
try
{
            zipOutput.IsStreamOwner = false;
            //set compress level
            zipOutput.SetLevel(9);

            ArrayList fileList = functions.GetFileList();
            foreach (string fileName in fileList)
            {
                string folderName = "folder1" + @"";

                zipEntry = new ZipEntry(folderName + fileName);
                zipOutput.PutNextEntry(zipEntry);
                            
                byte[] file = functions.GetFile(fileName);
                //zip file
                zipOutput.Write(file, 0, file.Length);
                 //send to client for downloading
                Response.Flush();
            }
        }
        catch (Exception ex)
        {
            Response.Write(ex.ToString());
        }
        finally
        {
            zipOutput.Finish();
            zipOutput.Close();
            Response.End();
        }

CeBIT Australia at Sydney Darling Harbour

CeBIT is the world’s largest and most international computer expo, and is a traditional computer show held every year. As it grows quickly, CeBIT Australia becomes bigger and bigger. Lots of IT equipment suppliers join this trade show, eg DELL, Samsung, Hitachi, D-Link, etc. This year, CeBIT 2011 starts yesterday and is held for 3 days.

Samsung huge LCD display and show stand

D-Link and its Ethernet router

NEC and DELL

Motorola

Pronto software

CSRIO is displaying their 3D detect system

Waterproof LCD monitor

Other stands

 

 

The only disappointing is  no world-wide largest IT manufacture, eg IBM, Intel, NVidia. I didn’t see many emerging technologies.

Woolworth Everyday Reward promotion activation link

If  you have registered Woolworth Everyday Rewards Card, sometimes it will send you their weekly promotion email. If you active the offer, it will credit you either fuel saving offer or Qantas bonus points when your shopping spend is over certain amount.

My friend is always receiving such email but I didn’t. Are they randomly picking up some valued customer or targeting someone? I don’t know, but I just want to be treated fairly same as others. Let’s make my own promotion offer.

Here is a example of activation link in their recent promotion email:

http://everydaypromos.com.au/wowactivation/23625.do?email=[email protected]&everyDayRewardsNo=9344435941223&formForward=LOAD

  • The first 23625 is event ID, and it increment for each promotion event by one.
  • 9344435941223 is your Everyday Reward Card number

If you can replace the above parameters with your own one, and copy&paste into your web browser, you also can enjoy Woolworth’s promotion.

I also wrote a small tool and you can download here. Please ensure .Net Framework is installed on your computer.

Unlock Huawei E585 WCDMA 3G modem

My colleague brought two PocketWifi 3G Modems to my desk and asked me to see if possible to unlock them. I found out that they are actually E585 WCDMA 3G Modem OEM by Huawei. It will normally cost you $25 each to unlock if you ring up the customer service.

After few hours attempting, I finally found a way to unlock them for free without any cost. If you like DIY, here are the outlines to share.

Preparation: a USB Cable, locked SIM card, and internet access

  • Connect 3G Modem to PC with USB Cable and install windows modem driver (ensure not WIFI connection)
  • Download RevSkills from http://psas.revskills.de/?q=node/6 and install on your computer
  • Run RevSkill from your desktop and select “QC+AT-Cmd”

  • Select correct 3G modem COM port from the list and Baud Rate

  • Go to DIAG tab, and click “Send”, if success, you will see your 3G Modem Version information comes out

  • Select “Save NVItems to file” and click “Lets go”. It will pop a window to ask you where to save the NVItems

  • Use Notepad to open the saved file and search “PST”. The number behind “PST” is the unlock code. After you enter this unlock code, your device is free to use any WCDMA 3G network.

 

 

A funny joke application makes your window dance

These days I am so busy with work, and haven’t got time to write anything.

This is a funny joke application I wrote long time back. It will make your front window dance. If you press any key, this application will exit.

You can download here
This is the code, in case if you want to make your own.

#include "stdafx.h"
#include "math.h"
#include "windows.h"
#include "time.h"
#include "conio.h"

int _tmain(int argc, _TCHAR* argv[])
{
	RECT rect;
	int offset;
	while(!kbhit())
	{
		HWND hWnd = GetForegroundWindow();
		GetWindowRect(hWnd,&rect);
		offset = sin((float)rand())*10;
		rect.left += offset;
		rect.bottom += offset;
		rect.right += offset;
		rect.top += offset;
		MoveWindow(hWnd,rect.left,rect.top,rect.right-rect.left,rect.bottom-rect.top,true);
		Sleep(20);
	}
	return 0;
}

Install APK into new HTC smart phone

Today, my colleague asked me how to install downloaded *.apk into his new HTC phone. As HTC doesn’t come with file manager, you have to enable USB debug mode. Here are the steps to install

  • Enable HTC USB Debug mode

  • You will see the application is in your Android smart phone