Tulisan ini tidak bermaksud untuk melanggar hak cipta foto milik orang lain. Hanya untuk pengetahuan.
Jika kita ingin mendownload foto dari Flicker atau instagram dimana kita tidak bisa mendownloadnya. Anda dapat melakukanya lewat cara berikut.
1. Buka firefox
2. Buka halaman flicker atau instagram yang diinginkan sampai foto tersebut muncul di halaman web
3. Klik Kanan
4. Pilih View Page Info
5. Pilih Tab Media
6. Cari gambar yang Anda inginkan di address.
7. Pilih save as
Selesai.
Semoga membantu!
Friday, January 9, 2015
Friday, January 2, 2015
LINUX Create Executable Binary File
I'm newbie trying to learn about linux, Centos 6.5. Today I learned how to change from #./yourprogram in certain directory to #yourprogram. I want to share it here.
Condition:
I've just downloaded Eclipse for example. In tar.gz.
When I extracted the files in certain folder, I can run the program by calling #./eclipse.
Goals:
What I do want is to run a simple command $eclipse, then I can have my program running.
Answer:
Consider this as your program directory.
/usr/eclipse
it can be any directory.
This is the way.
#touch /usr/bin/eclipse
#chmod 755 /usr/bin/eclipse
#vi /usr/bin/eclipse
then put this inside.
Condition:
I've just downloaded Eclipse for example. In tar.gz.
When I extracted the files in certain folder, I can run the program by calling #./eclipse.
Goals:
What I do want is to run a simple command $eclipse, then I can have my program running.
Answer:
Consider this as your program directory.
/usr/eclipse
it can be any directory.
This is the way.
#touch /usr/bin/eclipse
#chmod 755 /usr/bin/eclipse
#vi /usr/bin/eclipse
then put this inside.
export ECLIPSE_HOME="/usr/eclipse"Finished!
$ECLIPSE_HOME/eclipse $*
Subscribe to:
Posts (Atom)