Withdraw Paypal ke Bank Indonesia

Setelah lama tidak update dengan keadaan diinternet ternyata saya sudah ketinggalan jauh, salah satu yang mengalami perubahan besar adalah Paypal. Bagi yang belum tahu apa itu paypal, ini adalah definisi paypal yang terdapat pada Wikipedia Indonesia :

PayPal adalah bisnis internet yang menyediakan jasa mentransfer uang di antara pengguna email, menghindarkan metode tradisional yang menggunakan kertas seperti cek dan money order. PayPal juga melakukan proses pembayaran untuk “vendor” e-commerce, situs lelang, dan pengguna perusahaan lainnya, yang dikenakan biaya. Markas perusahaan ini di San Jose, California.

Sumber: Wikipedia Indonesia

Pada awalnya paypal sudah support dengan Credit Card yang ada di Indonesia, namun dikarenakan terjadi masalah dengan banyaknya fraud (dalam arti : penipuan kartu kredit) dari Indonesia akhirnya Paypal pun memutuskan hubungan dengan Indonesia. Lanjutkan membaca Withdraw Paypal ke Bank Indonesia

How to extract multi-part zip files

Have you ever seen these file ?

  • zipfiles.zip
  • zipfiles.z01
  • zipfiles.z02
  • zipfiles.z03
  • ……
  • zipfiles.z10

These are the multi-part of zipped files, which mean  one big file are to big to make archive so it should split  into several files. These files were created by winzip. Probably for many people (included me) it such a weird file, and they don’t know how to extract the file archives.

After my research in whole google how to extract it, here i want to share to you how to extract it.

For window platform
There are so many software has support for these extension such as winzip, winrar, 7-zip, and many other, put those file in one folder, and then just click with your supported software above, and whala…. the file  extracted.

For linux platform
The problem for newbie user in linux is they don’t now how to combine the command within. I got the problem too with these platform, but that’s why i like most with this platform, it challenged me to know. Alright then here the command for solve this problem.

hendra-k@server $ cat zipfiles.* > zipfiles-full.zip
hendra-k@server $ zip -F zipfiles-full.zip
hendra-k@server $ unzip zipfiles-full.zip

here the description for these command above :

hendra-k@server $ cat zipfiles.* > zipfiles-full.zip
= merging those file into one full zipped file

hendra-k@server $ zip -F zipfiles-full.zip
= Fixing the archive of the overall zipped files

hendra-k@server $ unzip zipfiles-full.zip
= Extract the full zipped fil

Hope this tutorial is usefull for you