Android Market is renamed to Google Play
Last Week, I found Android Market is renamed to Google Play. I prefer the old name more. I like the word, "Market" is more suitable. Because "Market" is a place to buy or get the things. Moreover, "Play" sounds more like "Entertainment". "Market" can be a place for the general stuff.
Well, I think Google chose to re-brand that, because there are a number of Android "Market". You can get the apps not just only from Google. So, that is better to add the word, "Google". This is good for branding. In addition, I guess the word, "Play" means somethings. This may mean Google will put more focus on games and songs. That is interesting.
Error:'evo_hitlog' is marked as crashed and should be repaired
I got this error 'evo_hitlog' is marked as crashed and should be repaired. The cause of this error is evo_hitlog is full. You go to mysql, and type 'repaire table evo_hitlog'. Or just simply in run the command in phpmyadmin,TRUNCATE TABLE evo_hitlog;
Western Digital Passport - HKD$788 Only
I brought a Western Digital Passport USB3.0 750GB external Harddisk, that is only HKD$788 in CentralField. Even Umart needs to charge around AUD$100(around HKD$830). That is a bit cheaper.
Moreover, I bought a case for this too! That is $49.
That looks nice! Moreover, the case can be anti-shock too!
P.S. I got USB 3.0 Samsung 500GB. That seems to be as fast as this new one!
I love this new toy!
New Look for Facebook Page
I have found out there will be a new look for Facebook Page. They will introduce the timeline page to the Page. I think Timeline page will be the basic concept of Facebook. Well that will make it to looks different from Twitter. All Facebook page will start to upgrade the new look on 30th March 2012.
How to put your PC in sleep or hibernate via C#
I thought that is impossible to put your PC in sleep or hibernate via C#. I found that is incorrect! Moreover, that is very simple too, just one line of command.
Putting the PC in sleep mode
Code
Application.SetSuspendState(PowerState.Suspend, false, false); |
Putting the PC in Hibernate mode
Code
Application.SetSuspendState(PowerState.Hibernate, false, false); |
That is so simple!!!