Monday, November 12, 2012

Best Watching Movie Online Application for Android and IOS - PPS.TV

One of the best things you can do with your mobile tablet is to watch movie online on your bed or where ever the place that you will comfortable with. So I have been searching around and trying out different applications for my Android phone and iPad and it turns out the best movie streaming applications is PPS.tv. No other application is as good as or as stable as PPS.tv. For example, "PPTV" which I downloaded lately, it drained up my battery overnight eventhough I"m not using it. So I will definately not recommended for it.

Just do a search with "PPS" or "PPS.TV" in your GooglePlay Store and iTunes, you should able to find it. To know more about this company, you can visit the official page here. According to them, it is the world largest online video service provider but wikipedia says it is still behind Youku and Tudou in China Market. :D



There are mobile and HD version and I think either one is fine. But for my Android phone, somehow the mobile version is only working for me but not the HD version. For HD version, it works fine with my iPad.

Pros
  • Watch Movies or TV shows for free.
  • Contains most updated TV programs especially for Chinese TV shows.
  • Has ability to resume movie after you close or exit the application.
Cons
  • Is only written in Chinese. You need to undrestand Chinese in order to use this application.
  • Need high-speed internet connection for smooth video streaming.
  • Most movies are outdated. If you're looking for the latest movie, it may not have it.
  • Some western movies are translated to Mandarin which I find it is not original

Is It Legal?

Most people will ask this quesiton whether PPS.TV is legal or not? I honestly do not know the answer. If I"m not mistaken, the streaming technology is using P2P protocol which means technically we cannot tell whether it is "illegal" or not. If it is not "illegal", is it legal? I wouldn't sure and the discussion goes beyond of this scope. So I suggest you use this applicaiton for your educational purpose only.

Monday, October 8, 2012

Using Symbolic Link in Windows with Mklink Command

Symbolic link is something very common in Unix or Linux environment which allow to link the files and directory and ultimately able to make fool of the application. However, not many of us aware there is a new command in windows (i.e. Mklink) which was introduced in MS Vista.

For example, I want to create a soft link to folder_a, I enter the command below:

D:\tmp\mklink_test>mklink /D folder_linked_a folder_a
symbolic link created for folder_linked_a <<===>> folder_a

This creates a symbolic link folder_linked_a to folder_a. To create a hard link, you will need to use the following command with /F:
D:\tmp\mklink_test>mklink /D /F folder_linked_b folder_asymbolic link created for folder_linked_a <<===>> folder_a

For file (not directory) symbolic linking, remove the /D and for file (not directory) hard link, enter the command with /H. To show all the command help just type "Mklink /?"


What is Soft/Symbolic and Hard Link?

Soft or symbolic link is just a shortcut to a file or folder.Operating system treats this a shortcut, not the actual location. Sometimes when we want to quick workaround without changing the directory, using symbolic link is one of the ways to make fool of the application.

Hard link is directly points to the file. The operating system treats this hard link as the actual location. You may want to do this to fake an application directory if symbolic link doesn't work.


How to delete the link?

Just as usual, either you can delete it from windows explorer GUI or command line using "rmdir" or "del"command.


Didn't find what you want? Use Google Search Engine below: