DetikHot Error

Hari ini lagi buka-buka detikHot sekitar jam 13.30 WIB, rupanya engine PHP detikHot lagi error. Wuih, keliatan deh folder scriptnya… hemm… hati-hati lho detikHot, banyak cracker-cracker jahat di luar sana :D

Ini tampilan halaman yang sempat aku jepret (klik di gambar untuk ukuran penuh):

detikHot Error

Nih pesan error yang keluar:

Warning: include(/data/static/detikcom/promo_mobile_hot.txt) [function.include]: failed to open stream: No such file or directory in /data/detikhot/app/include/iklan/ad_detail.txt on line 5

Warning: include() [function.include]: Failed opening ‘/data/static/detikcom/promo_mobile_hot.txt’ for inclusion (include_path=’.:/usr/local/lib/php’) in /data/detikhot/app/include/iklan/ad_detail.txt on line 5

Cepat perbaiki scriptnya ya…

Vina Morales Juara Ikon Asean Kalahkan Judika dan Jaclyn Victor

Vina MoralesIkon Filipina kategori solo, Vina Morales dan Ikon Filipina kategori band, Kjwan telah berhasil memenangi Ikon Asean pertama, mengalahkan Ikon Malaysia (Jaclyn Victor) dan Ikon Indonesia (Judika & Tahta).

Berlangsung di Putrajaya International Convention Center (PICC), Ikon Asean telah membawa Vina Morales sebagai Ikon Asean pertama kategori solo dan membawa pulang uang tunai sebanyak USD 25,000 (Rp 225.000.000,-). Begitu juga Kjwan yang mengalahkan grup OAG dan band Tahta yang mengibarkan bendera negara mereka ketika babak pertama.

Juri yang mengadili Ikon Asean ialah Hetty Koes Endang (Indonesia), composer dari Malaysia Mac Chew, penyanyi dari Filipina, Eugene R. Villaluz dan composer dari Singapura, Iskandar Mirza Ismail.

Walau Judika tidak menang di Ikon Asean tetep… he is my idol:D

Judika, Ikon [Solois] Indonesia 2007

Judika SihotangJudika Sihotang akhirnya menjadi wakil Indonesia untuk ajang IKON ASEAN 2007 untuk kategori penyanyi solo. Dalam final INdonesia (Ikon Indonesia), penyanyi yang juga runner-up Indonesian Idol 2005 ini berhasil menyisihkan nama-nama seperti Jimmy, Ria Amelia, Tompi, Abdul, Astrid, Eric, Lea Simanjuntak, Pinkan Mambo, dan Sania.

Kalau untuk kategori band, Tahta termasuk mengejutkan, kemenangan Judika dianggap tidak terlalu mengejutkan karena kapasitas penyanyi kelahiran Sidakalang, Sumatera Utara pada 31 Agustus 1978 ini dirasa cukup kuat. Dan terbukti, perolehan SMS-nya selalu leading. Satu lagi prestasi nasional buat Judika!

Judika lahir di Sidakalang, Sumatera Utara pada 31 Agustus 1978. Ia adalah anak ke-6 dari 7 bersaudara menghabiskan masa kecilnya dengan berbagai macam kegiatan. Bakat bernyanyinya sudah tampak semenjak Judika masih duduk di bangku Sekolah Dasar Inpres di Brastagi. Bahkan ia sempat membuat grup vokal bersama Roy (adik) dan Juneidi (sahabat) Jonathan (sahabat) dan juga dikontrak di sebuah hotel internasional berbintang 5 di Brastagi. Read the rest of this entry »

How To Use Wget Through Proxy

Wget is a super-useful utility to download pages and automate all types of web related tasks. It works for HTTP as well as FTP URL’s. Here is a brief tutorial on how to use wget through proxy server.

To get wget to use a proxy, you must set up an environment variable before using wget. Type this at the command prompt / console:

For Windows:

set http_proxy=http://proxy.example.com:8080

For Linux/Unix:

bash# export http_proxy="http://proxy.example.com:8080"

Replace proxy.example.com with your actual proxy server.
Replace 8080 with your actual proxy server port.

You can similarly use ftp_proxy to proxy ftp requests. An example on Linux would be:

bash# export ftp_proxy="http://proxy.example.com:8080"

Then you should specify the following option in wget command line to turn the proxy behavior on:

–proxy=on

Alternatively you can use the following to turn it off:

–proxy=off

You can use –proxy-username=”username” –proxy-passwd=”password” to set proxy user name and password where required.
Replace user name with your proxy server user name and password with your proxy server password. Another alternative is to specify them in http_proxy / ftp_proxy environment variable as follows:

bash# export http_proxy="http://yourusername:yourpassword@proxy.example.com:8080"

Example:

your proxy: proxy.domain.com
your proxy port: 8080
your proxy username: user01
your proxy password: giveme

You can type the command as follows:

bash# export http_proxy="http://user01:giveme@proxy.domain.com:8080"
bash# wget -Y on http://anydomain.com/something_to_download.zip

Your download should start then :D

Beauty Of Mathematics

1 x 8 + 1 = 9
12 x 8 + 2 = 98
123 x 8 + 3 = 987
1234 x 8 + 4 = 9876
12345 x 8 + 5 = 98765
123456 x 8 + 6 = 987654
1234567 x 8 + 7 = 9876543
12345678 x 8 + 8 = 98765432
123456789 x 8 + 9 = 987654321

1 x 9 + 2 = 11
12 x 9 + 3 = 111
123 x 9 + 4 = 1111
1234 x 9 + 5 = 11111
12345 x 9 + 6 = 111111
123456 x 9 + 7 = 1111111
1234567 x 9 + 8 = 11111111
12345678 x 9 + 9 = 111111111
123456789 x 9 +10= 1111111111

9 x 9 + 7 = 88
98 x 9 + 6 = 888
987 x 9 + 5 = 8888
9876 x 9 + 4 = 88888
98765 x 9 + 3 = 888888
987654 x 9 + 2 = 8888888
9876543 x 9 + 1 = 88888888
98765432 x 9 + 0 = 888888888

1 x 1 = 1
11 x 11 = 121
111 x 111 = 12321
1111 x 1111 = 1234321
11111 x 11111 = 123454321
111111 x 111111 = 12345654321
1111111 x 1111111 = 1234567654321
11111111 x 11111111 = 123456787654321
111111111 x 111111111=12345678987654321

Brilliant, isn’t it?

Halaman 3 dari 4«1234»