Fwd: Re: [ITCENTER] ip pake manual nggak mau konek internet

2006-07-20 Terurut Topik Donie Isnandi
Tolong dong, yang merasa admin e-mail server dari moderngroup.co.id.
Bisa jelaskan kepada saya mengapa saya menerima e-mail ini?

Bila melihat dari score-nya, sepertinya salah satu kategori suatu email
dikategorikan spam adalah terdiri atas HTML. Padahal jelas-jelas e-mail saya
text only hehehe.. untuk meyakinkan saya sampai melihat source e-mail di
outbox lokal, inbox local dan inbox gmail... duh.
Namun bila melihat reply dari postmaster-nya moderngroup ini, entah mengapa
ada baris HTML di bagian bawah e-mail saya.. sungguh aneh.

Apakah rekan-rekan lain mengalami hal ini juga?

-- Forwarded message --
From: [EMAIL PROTECTED]  [EMAIL PROTECTED]
Date: Jul 20, 2006 12:34 PM
Subject: RE: Re: [ITCENTER] ip pake manual nggak mau konek internet
To: [EMAIL PROTECTED]

MDaemon has identified your message as spam.  It will not be delivered.

From  : [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject   : [***SPAM*** Score/Req: 07.81/05.00] Re: [ITCENTER] ip pake
manual nggak mau konek internet
Message-ID:  [EMAIL PROTECTED] 

Yes, hits=7.8 required=5.0 tests=FORGED_MUA_THEBAT_BOUN,
HTML_70_80,HTML_MESSAGE,MDAEMON_SPAM_BLOCKER,SARE_SPEC_LEO_LINE03a
autolearn=no
version=2.63
***
*  3.0 MDAEMON_SPAM_BLOCKER Message has been marked by MDaemon's Spam
Blocker *   0.1 HTML_70_80 BODY: Message is 70% to 80% HTML *
0.0HTML_MESSAGE BODY: HTML included in message *
0.4 SARE_SPEC_LEO_LINE03a BODY: common Leo body text *
4.3FORGED_MUA_THEBAT_BOUN Mail pretending to be from The Bat!
(boundary)

-- End Forwarded message --

-- 
Dony Isnandi (http://isnandi.net/2006/07/20/bug-hunting-dan-tracking)
* programmer in trainee *


[Non-text portions of this message have been removed]



-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [ITCENTER] Tanya PHP??

2006-07-20 Terurut Topik AmiGelz
fungsi

 function datediff($per,$d1,$d2) {
$d = $d2-$d1;
switch($per) {
case : $d/=12;
case m: $d*=12*7/365.25;
case ww: $d/=7;
case d: $d/=24;
case h: $d/=60;
case n: $d/=60;
}
return round($d);
}

cara manggil :D

$waktu_awal=mktime(0,0,0,11,25,1985);
$waktu_akhir=mktime(0,0,0,date(m),date(j),date(Y));
echo datediff(,$waktu_awal,$waktu_akhir). tahun br;
echo datediff(m,$waktu_awal,$waktu_akhir). bulan br;
echo datediff(ww,$waktu_awal,$waktu_akhir). minggu br;
echo datediff(d,$waktu_awal,$waktu_akhir). hari br;
echo datediff(h,$waktu_awal,$waktu_akhir). jam br;
echo datediff(n,$waktu_awal,$waktu_akhir). detik br;

nich contoh penggalan program dengan menggunkan php moga membantu

Pada tanggal 06/07/20, kasiman peranginangin [EMAIL PROTECTED]
menulis:

   Bagaimana caranya untuk mengetahui selisih antara dua tanggal? misalnya
 lahir tanggal 17-08-1945 mau tahu umurnya sekarang ... tahun ... bulan ...
 hari.
 Kalau bisa ada rekan-rekan yang bantu beri skripnya pada PHP yah.
 Please help...!!!


 -
 Do you Yahoo!?
 Everyone is raving about the all-new Yahoo! Mail Beta.

 [Non-text portions of this message have been removed]

  




-- 
 Urip Pisan Jo` Digawe Soro
 add fs and YmId   AmiGelz [at] yahoo [dot] com
-=*=-AmiGelz || NFS || Agen_dosa A.K.A Nurma A K H -=*=-


[Non-text portions of this message have been removed]



-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [ITCENTER] Tanya PHP??

2006-07-20 Terurut Topik kasiman peranginangin
kalau tanggal lahirnya sebelum tanggal 1 Januari 1970 , misalnya ya  tanggal 19 
Juli 1962. dan sistem operasi yang saya gunakan Windows XP,  bisa ndak ya?
  
  --

AmiGelz [EMAIL PROTECTED] wrote:  
fungsi
  
  function datediff($per,$d1,$d2) {
  $d = $d2-$d1;
  switch($per) {
  case : $d/=12;
  case m: $d*=12*7/365.25;
  case ww: $d/=7;
  case d: $d/=24;
  case h: $d/=60;
  case n: $d/=60;
  }
  return round($d);
  }
  
  cara manggil :D
  
  $waktu_awal=mktime(0,0,0,11,25,1985);
  $waktu_akhir=mktime(0,0,0,date(m),date(j),date(Y));
  echo datediff(,$waktu_awal,$waktu_akhir). tahun br;
  echo datediff(m,$waktu_awal,$waktu_akhir). bulan br;
  echo datediff(ww,$waktu_awal,$waktu_akhir). minggu br;
  echo datediff(d,$waktu_awal,$waktu_akhir). hari br;
  echo datediff(h,$waktu_awal,$waktu_akhir). jam br;
  echo datediff(n,$waktu_awal,$waktu_akhir). detik br;
  
  nich contoh penggalan program dengan menggunkan php moga membantu
  
  Pada tanggal 06/07/20, kasiman peranginangin [EMAIL PROTECTED]
  menulis:
  
 Bagaimana caranya untuk mengetahui selisih antara dua tanggal? misalnya
   lahir tanggal 17-08-1945 mau tahu umurnya sekarang ... tahun ... bulan ...
   hari.
   Kalau bisa ada rekan-rekan yang bantu beri skripnya pada PHP yah.
   Please help...!!!
  
  
   -
   Do you Yahoo!?
   Everyone is raving about the all-new Yahoo! Mail Beta.
  
   [Non-text portions of this message have been removed]
  

  
  
  -- 
   Urip Pisan Jo` Digawe Soro
   add fs and YmId   AmiGelz [at] yahoo [dot] com
  -=*=-AmiGelz || NFS || Agen_dosa A.K.A Nurma A K H -=*=-
  
  [Non-text portions of this message have been removed]
  
  
  



-
How low will we go? Check out Yahoo! Messenger’s low  PC-to-Phone call rates.

[Non-text portions of this message have been removed]



-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [ITCENTER] Tanya PHP??

2006-07-20 Terurut Topik AmiGelz
ya bisa pak
$waktu_awal=mktime(0,0,0,11,25,1985); == kan tak isi tanggal lahir saya ini
== 25-11-1985
ya tinggal ganti tanggal yang mau bapak pakek :D



Pada tanggal 06/07/20, kasiman peranginangin [EMAIL PROTECTED]
menulis:

   kalau tanggal lahirnya sebelum tanggal 1 Januari 1970 , misalnya ya
 tanggal 19 Juli 1962. dan sistem operasi yang saya gunakan Windows XP, bisa
 ndak ya?

 --

 AmiGelz [EMAIL PROTECTED] AmiGelz%40gmail.com wrote: fungsi

 function datediff($per,$d1,$d2) {
 $d = $d2-$d1;
 switch($per) {
 case : $d/=12;
 case m: $d*=12*7/365.25;
 case ww: $d/=7;
 case d: $d/=24;
 case h: $d/=60;
 case n: $d/=60;
 }
 return round($d);
 }

 cara manggil :D

 $waktu_awal=mktime(0,0,0,11,25,1985);
 $waktu_akhir=mktime(0,0,0,date(m),date(j),date(Y));
 echo datediff(,$waktu_awal,$waktu_akhir). tahun br;
 echo datediff(m,$waktu_awal,$waktu_akhir). bulan br;
 echo datediff(ww,$waktu_awal,$waktu_akhir). minggu br;
 echo datediff(d,$waktu_awal,$waktu_akhir). hari br;
 echo datediff(h,$waktu_awal,$waktu_akhir). jam br;
 echo datediff(n,$waktu_awal,$waktu_akhir). detik br;

 nich contoh penggalan program dengan menggunkan php moga membantu

 Pada tanggal 06/07/20, kasiman peranginangin 
 [EMAIL PROTECTED] peranginanginkasiman%40yahoo.com
 menulis:
 
  Bagaimana caranya untuk mengetahui selisih antara dua tanggal? misalnya
  lahir tanggal 17-08-1945 mau tahu umurnya sekarang ... tahun ... bulan
 ...
  hari.
  Kalau bisa ada rekan-rekan yang bantu beri skripnya pada PHP yah.
  Please help...!!!
 
 
  -
  Do you Yahoo!?
  Everyone is raving about the all-new Yahoo! Mail Beta.
 
  [Non-text portions of this message have been removed]
 
 
 

 --
 Urip Pisan Jo` Digawe Soro
 add fs and YmId AmiGelz [at] yahoo [dot] com
 -=*=-AmiGelz || NFS || Agen_dosa A.K.A Nurma A K H -=*=-

 [Non-text portions of this message have been removed]






 -
 How low will we go? Check out Yahoo! Messenger's low PC-to-Phone call
 rates.

 [Non-text portions of this message have been removed]

  




-- 
 Urip Pisan Jo` Digawe Soro
 add fs and YmId   AmiGelz [at] yahoo [dot] com
-=*=-AmiGelz || NFS || Agen_dosa A.K.A Nurma A K H -=*=-


[Non-text portions of this message have been removed]



-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [ITCENTER] Download free Adobe Illustrator

2006-07-20 Terurut Topik bAKT
Bisa dunlut di sini, macem produk adobe..

https://www.adobe.com/cfusion/tdrc/index.cfm?product=illustratorloc=en


roguf 0nly.. wrote:
 Temen2 bisa minta tlng, free download Adobe Illustrator situsnya dmn yaa ??

 Thx be 4.


 [Non-text portions of this message have been removed]






   

Send instant messages to your online friends http://asia.messenger.yahoo.com 


-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: Re: [ITCENTER] ip pake manual nggak mau konek internet

2006-07-20 Terurut Topik Donie Isnandi
On 7/20/06, Donie Isnandi [EMAIL PROTECTED] wrote:
deleted

Namun bila melihat reply dari postmaster-nya moderngroup ini, entah mengapa
 ada baris HTML di bagian bawah e-mail saya.. sungguh aneh.


deleted

Sudah dapat konfirmasi dari rekan Mairi. Case Closed :)
-- 
Dony (http://isnandi.net)


[Non-text portions of this message have been removed]



-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [ITCENTER] Backup device

2006-07-20 Terurut Topik WahyudiTH
Maxtor external berada di server yang sama cuma SQL server tidak di shutdown 
karna di-schedule malam hari.
Maksudnya user bisa kerja sampai malem terus backupnya di schedule tengah malam.
Salam,
Wahyudi 

  - Original Message - 
  From: Albert Siagian 
  To: ITCENTER@yahoogroups.com 
  Sent: Wednesday, July 19, 2006 8:22 PM
  Subject: RE: [ITCENTER] Backup device


   -Original Message-
   From: ITCENTER@yahoogroups.com 
   [mailto:[EMAIL PROTECTED] On Behalf Of WahyudiTH
   Sent: Wednesday, July 19, 2006 1:39 PM
   To: ITCENTER@yahoogroups.com
   Subject: Re: [ITCENTER] Backup device
   
   Pak Albert,
   Hasil backup ke HDD external via USB bagus?
   Saya coba menggunakan MAXTOR OneTouch, External HD capacity 
   160 GB, untuk backup database SQL 60 GB via USB lama sekali 
   (lebih dari 6 jam).
   
   Salam,
   Wahyudi
   

  Lancar saja sih, dengan beberapa perbedaan kondisi:
  1. Karena saya backup file data, ada puluhan ribu file besar-kecil.
  Sedangkan anda backup file SQL yang hanya beberapa file.

  2. Saya backup data di server yang sama dengan HDD eksternal. Untuk 60GB,
  butuh waktu sekitar 2 jam. 

  Apakah Maxtor eksternal anda berada di server yang sama dengan SQL Server?
  Mungkin ini ada hubungannya karena trafik via LAN akan lebih lambat.
  Pastikan juga SQL Server anda di shutdown dulu service-nya sebelum backup.

  Salam
  Albert



   







This e-mail message may contain legally privileged and/or confidential 
information. If you are not the intended recipient(s), or the employee or agent 
responsible for delivery of this message to the intended recipient(s), you are 
hereby notified that any dissemination, distribution or copying of this e-mail 
message is strictly prohibited. If you have received this message in error, 
please immediately notify the sender and delete this e-mail message from your 
computer.




[Non-text portions of this message have been removed]





-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [ITCENTER] pake ip manual kok ngga konek internet

2006-07-20 Terurut Topik Steph
Pakai Router apa pak.

Saya beberapa kali mengalami masalah yang sama seperti ini.
Kadang sebaliknya pak, nggak tentu kadang yang manual nggak mau yang 
otomatis juga nggak mau ?

Sejak saya ganti ke Router Linksys saya berkali-kali alami ini.
Sebelumnya tidak pernah, nah ada yang bisa kasih solusi nggak ?

- Original Message - 
From: aku anton [EMAIL PROTECTED]
To: ITCENTER@yahoogroups.com
Sent: Thursday, July 20, 2006 11:23 AM
Subject: [ITCENTER] pake ip manual kok ngga konek internet


saya lgi bingung nech, no ip yang saya buat dengan manual ngga mau konek 
internet, tapi kalo pake otomatis dia mau konek, gimana ya cara 
ngatasinya???
  kmren saya coba pake otomatis dulu trus saya pake ke manual ngga bsa lagi. 
tolong ya. trims



  anton setiawan
surabaya
antonline.l1h.net


-
How low will we go? Check out Yahoo! Messenger's low  PC-to-Phone call 
rates.

[Non-text portions of this message have been removed]






-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED]
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! ::
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id


Yahoo! Groups Links











-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[ITCENTER] Antena Kaleng

2006-07-20 Terurut Topik al_amir_islam
tolong dong makalah cara pembuatan antena kalengX









-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [ITCENTER] ip pake manual nggak mau konek internet

2006-07-20 Terurut Topik Sam Huget
mungkin di server/router, DHCP nya di enable kali pak..

aku anton [EMAIL PROTECTED] wrote:  halo semuanya. saya saat ini sedang 
bingung tuk konek internet. no ip yang saya buat dengan manual kok ngga mau 
konek ke internet ya, tapi klo dibuat pake otomatis dia mau konek. gimana 
nechhh??? minta tolong ya ???

ant --- sby



anton setiawan 
surabaya 
antonline.l1h.net


-
Talk is cheap. Use Yahoo! Messenger to make PC-to-Phone calls. Great rates 
starting at 1¢/min.

[Non-text portions of this message have been removed]






-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 


Yahoo! Groups Links









-
Do you Yahoo!?
 Next-gen email? Have it all with the  all-new Yahoo! Mail Beta.

[Non-text portions of this message have been removed]





-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [ITCENTER] ip pake manual nggak mau konek internet

2006-07-20 Terurut Topik Calculus
Hello aku,

Thursday, July 20, 2006, 11:16:25 AM, you wrote:

 halo semuanya. saya saat ini sedang bingung tuk konek internet. no
 ip yang saya buat dengan manual kok ngga mau konek ke
 internet ya, tapi klo dibuat pake otomatis dia mau konek. gimana nechhh??? 
 minta tolong ya ???

lho anda buat IP sendiri..? memang bener-bener buat IP atau diaksihd
ari ISP? kalo nekat buat sendiri sebaiknya jangan, pakai saja yang
dikasih oleh ISP,sebab ISP punya blok IP tersendiri yang bisa
digunakan oleh pelanggannya.

-- 
Best regards,
 Calculusmailto:[EMAIL PROTECTED]





-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




RE: [ITCENTER] Tanya Koneksi antar kantor yg berbeda lokasi

2006-07-20 Terurut Topik Abie
Coba hub INDOSATM2. mereka punya product VPN IM2 Link yang jaringannya bisa
mengcover semua area

-Original Message-
From: ITCENTER@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Ade Aan Wirama
Sent: Thursday, July 20, 2006 8:29 AM
To: ITCENTER@yahoogroups.com
Subject: Re: [ITCENTER] Tanya Koneksi antar kantor yg berbeda lokasi

1. Tergantung jumlah user yang akan akses dan besar
datanya, spek server yang sekarang bagaimana? cukup
cepat nggak untuk akses data yang sekarang, terus
perhitungkan dengan tambahan akses data dari Jakarta.
Software sih cukup install vpn server dan jangan lupa
setup firewallnya.

2. Koneksi standard maksudnya dial-up? bisa aja, tapi
sekali lagi tergantung data apa saja yang akan diakses
dari Karawang dan frequencynya bagaimana. Lebih baik
pake Leased Line ato nggak minimum ya ADSL.

--- A. Numairullah [EMAIL PROTECTED] wrote:

 Dear All,
 
 Minta advise nya donk, kami punya kantor cabang di
 Jakarta, lokasi kami berada di Daerah Karawang. Nah
 saya mau koneksi ini SQL Server 2000 (OS Server Win
 2000) dengan kantor cabang kami di Jakarta.
 Pertanyaannya :
 1. Apa saja yang dibutuhkan (hardware  software) ? 
 2. Apakah dengan koneksi internet standard bisa
 dilakukan ?
 3. Estimasi costnya sampai berapa ya ?
 
 Thanks b4
 
 Rgds,
 
 
 
 
 
 __
 Do You Yahoo!?
 Tired of spam?  Yahoo! Mail has the best spam
 protection around 
 http://mail.yahoo.com 
 
 
 
 
 -- 
 www.itcenter.or.id - Komunitas Teknologi Informasi
 Indonesia 
 Info, Gabung, Keluar, Mode Kirim :
 [EMAIL PROTECTED] 
 :: Hapus bagian yang tidak perlu (footer, dst) saat
 reply! :: 
 ## Jobs: itcenter.or.id/jobs ## Bursa:
 itcenter.or.id/bursa ##
 $$ Iklan/promosi : www.itcenter.or.id/sponsorship $$
 
 [@@] Jaket ITCENTER tersedia di
 http://shop.itcenter.or.id 
 
  
 Yahoo! Groups Links
 
 
 [EMAIL PROTECTED]
 
  
 
 
 


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 




-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links



 









-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [ITCENTER] Soft recovery untuk flasdisk

2006-07-20 Terurut Topik tuyul tuyul

gw ada nie namany myrecoverfiles,,,gw dah noba sih
100% balik data yg 3 x gw hapus.
--- irfas nato [EMAIL PROTECTED] wrote:

 Teman-teman
   Ada gak software recovery data-data untuk di
 flasdisk, karena ada data-data saya yang terhapus
 dan ingin di ambil lagi ( direcover )

   thanks dan salam,

   irfas
 
   
 -
 How low will we go? Check out Yahoo! Messenger’s low
  PC-to-Phone call rates.
 
 [Non-text portions of this message have been
 removed]
 
 
 
 
 


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 





-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [ITCENTER] Melihat Mac Adress, bagaimana caranya ?

2006-07-20 Terurut Topik Steph
Sudah terselesaikan pak masalahnya.
Saya yang salah, diping dulu toh ternyata.
Saya kira sendiri-sendiri nggak tau kalau harus diping dulu.

Terimakasih Banyak Pak setyo sudah bantuin saya.

- Original Message - 
From: Setyo Suhartanto [EMAIL PROTECTED]
To: ITCENTER@yahoogroups.com
Sent: Thursday, July 20, 2006 12:15 PM
Subject: Re: [ITCENTER] Melihat Mac Adress, bagaimana caranya ?


 di ping dulu ip-nya, baru arp
 kalo gak mau repot, pake software 3rd party aja. google resolve mac 
 nanti
 banyak yg free kok.

 On 7/20/06, Steph [EMAIL PROTECTED] wrote:

   Maaf pak,

 Sudah saya coba arp -a yang kelihatan cuma 3 IP aja : 192...1, 192..2,
 192...3
 Yang lain nggak kelihatan pak, padahal banyak.


 - Original Message -
 From: Setyo Suhartanto 
 [EMAIL PROTECTED]setyo.suhartanto%40gmail.com
 
 To: ITCENTER@yahoogroups.com ITCENTER%40yahoogroups.com
 Sent: Thursday, July 20, 2006 10:48 AM
 Subject: Re: [ITCENTER] Melihat Mac Adress, bagaimana caranya ?

  c:\ ping ipaddress
  c:\ arp -a
 
  On 7/20/06, Steph 
  [EMAIL PROTECTED]steph_millist%40ditekjaya.co.id
 wrote:
 
  Tidak muncul apa-apa ya Pak.
  Saya checknya pakai Windows XP.
 
 
  - Original Message -
  From: Setyo Suhartanto
  [EMAIL PROTECTED] setyo.suhartanto%40gmail.com
 setyo.suhartanto%40gmail.com
  
  To: ITCENTER@yahoogroups.com 
  ITCENTER%40yahoogroups.comITCENTER%40yahoogr
 oups.com
  Sent: Thursday, July 20, 2006 10:16 AM
  Subject: Re: [ITCENTER] Melihat Mac Adress, bagaimana caranya ?
 
   nbtstat -a ipaddress
   SOL
  
   On 7/20/06, Steph
   [EMAIL PROTECTED] steph_millist%40ditekjaya.co.id
 steph_millist%40ditekjaya.co.id

  wrote:
  
   Selamat pagi,
  
   Mohon pencerahannya.
  
   Di Kantor saya pakai Wifi.
   Pernah suatu saat ada komputer lain ( komputer yang tidak saya 
   kenal
 )
   yang masuk ke jaringan, security sudah saya aktifkan.
   Karena DHCP saya aktifkan nampaknya komputer ini mendapatkan IP 
   dari
   DHCP.
  
   Jika kita sudah tau no IP dia bagaimana bisa melihat Macadressnya
 agar
   bisa saya block.
   Terimakasih atas pencerahannya.
  
   Salam IT,
   Steph
  
   [Non-text portions of this message have been removed]
  
  
  
  
  
   [Non-text portions of this message have been removed]
  
  
  
   --
   www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia
   Info, Gabung, Keluar, Mode Kirim :
   [EMAIL PROTECTED] itcenter-help%40yahoogroups.com
 itcenter-help%40yahoogroups.com

   :: Hapus bagian yang tidak perlu (footer, dst) saat reply! ::
   ## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
   $$ Iklan/promosi : www.itcenter.or.id/sponsorship $$
  
   [@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id
  
  
   Yahoo! Groups Links
  
  
  
  
  
  
  
 
 
 
 
 
  [Non-text portions of this message have been removed]
 
 
 
  --
  www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia
  Info, Gabung, Keluar, Mode Kirim : 
  [EMAIL PROTECTED]itcenter-help%40yahoogroups.com
  :: Hapus bagian yang tidak perlu (footer, dst) saat reply! ::
  ## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
  $$ Iklan/promosi : www.itcenter.or.id/sponsorship $$
 
  [@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id
 
 
  Yahoo! Groups Links
 
 
 
 
 
 





 [Non-text portions of this message have been removed]



 -- 
 www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia
 Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED]
 :: Hapus bagian yang tidak perlu (footer, dst) saat reply! ::
 ## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
 $$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

 [@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id


 Yahoo! Groups Links






 





-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [ITCENTER] Tanya PHP??

2006-07-20 Terurut Topik Octanoviar

listing

function datediff($interval, $datefrom, $dateto, $using_timestamps = false) {
  /*
$interval can be:
 - Number of full years
q - Number of full quarters
m - Number of full months
y - Difference between day numbers
  (eg 1st Jan 2004 is 1, the first day. 2nd Feb 2003 is 33. The 
datediff is -32.)
d - Number of full days
w - Number of full weekdays
ww - Number of full weeks
h - Number of full hours
n - Number of full minutes
s - Number of full seconds (default)
  */
  
  if (!$using_timestamps) {
$datefrom = strtotime($datefrom, 0);
$dateto = strtotime($dateto, 0);
  }
  $difference = $dateto - $datefrom; // Difference in seconds
   
  switch($interval) {
   
case '': // Number of full years

  $years_difference = floor($difference / 31536000);
  if (mktime(date(H, $datefrom), date(i, $datefrom), date(s, 
$datefrom), date(n, $datefrom), date(j, $datefrom), date(Y, 
$datefrom)+$years_difference)  $dateto) {
$years_difference--;
  }
  if (mktime(date(H, $dateto), date(i, $dateto), date(s, $dateto), 
date(n, $dateto), date(j, $dateto), date(Y, 
$dateto)-($years_difference+1))  $datefrom) {
$years_difference++;
  }
  $datediff = $years_difference;
  break;

case q: // Number of full quarters

  $quarters_difference = floor($difference / 8035200);
  while (mktime(date(H, $datefrom), date(i, $datefrom), date(s, 
$datefrom), date(n, $datefrom)+($quarters_difference*3), date(j, $dateto), 
date(Y, $datefrom))  $dateto) {
$months_difference++;
  }
  $quarters_difference--;
  $datediff = $quarters_difference;
  break;

case m: // Number of full months

  $months_difference = floor($difference / 2678400);
  while (mktime(date(H, $datefrom), date(i, $datefrom), date(s, 
$datefrom), date(n, $datefrom)+($months_difference), date(j, $dateto), 
date(Y, $datefrom))  $dateto) {
$months_difference++;
  }
  $months_difference--;
  $datediff = $months_difference;
  break;

case 'y': // Difference between day numbers

  $datediff = date(z, $dateto) - date(z, $datefrom);
  break;

case d: // Number of full days

  $datediff = floor($difference / 86400);
  break;

case w: // Number of full weekdays

  $days_difference = floor($difference / 86400);
  $weeks_difference = floor($days_difference / 7); // Complete weeks
  $first_day = date(w, $datefrom);
  $days_remainder = floor($days_difference % 7);
  $odd_days = $first_day + $days_remainder; // Do we have a Saturday or 
Sunday in the remainder?
  if ($odd_days  7) { // Sunday
$days_remainder--;
  }
  if ($odd_days  6) { // Saturday
$days_remainder--;
  }
  $datediff = ($weeks_difference * 5) + $days_remainder;
  break;

case ww: // Number of full weeks

  $datediff = floor($difference / 604800);
  break;

case h: // Number of full hours

  $datediff = floor($difference / 3600);
  break;

case n: // Number of full minutes

  $datediff = floor($difference / 60);
  break;

default: // Number of full seconds (default)

  $datediff = $difference;
  break;
  }

  return $datediff;

}

contoh : 
echo datediff('w', '9 July 2003', '4 March 2004', false);

semoga bermanfaat

- Original Message - 
From: kasiman peranginangin 
To: ITCENTER@yahoogroups.com 
Sent: Thursday, July 20, 2006 12:42 PM
Subject: [ITCENTER] Tanya PHP??


Bagaimana caranya untuk mengetahui selisih antara dua tanggal? misalnya lahir 
tanggal 17-08-1945 mau tahu umurnya sekarang ... tahun ... bulan ... hari.
Kalau bisa ada rekan-rekan yang bantu beri skripnya pada PHP yah.
Please help...!!!


-
Do you Yahoo!?
Everyone is raving about the all-new Yahoo! Mail Beta.

[Non-text portions of this message have been removed]



 

[Non-text portions of this message have been removed]





-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[ITCENTER] Workshop (Game Programming with Flash)

2006-07-20 Terurut Topik Ferry Permana
Salam sejahtera,

Kami dari BiNus Center BSD City, ingin menginformasikan bahwa akan 
segera di buka Workshop (Game Programming with Flash), hari Sabtu pada 
tanggal 22 Juli 2006.

Untuk informasi lebih lanjut, bisa kirimkan email ke 
[EMAIL PROTECTED] atau di 
http://groups.yahoo.com/group/binuscenter_bsdcity/

TEMPAT TERBATAS !!!

Thanks.

Regard,
BiNus Center BSD City








-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[ITCENTER] antena kaleng

2006-07-20 Terurut Topik al_amir_islam
tolong kirimkan alamat atau makalah pembuatan Antena Kaleng. please








-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[ITCENTER] Short Course ( AUTOCAD)

2006-07-20 Terurut Topik Ferry Permana
Salam sejahtera,

Selain Workshop yang telah kami informasikan sebelumnya, kami juga 
akan segera membuka kelas Short Course (AUTOCAD), dengan 10 pertemuan 
dan di mulai pada tanggal 25 Juli 2006 hingga selesai. 

Untuk informasi lebih lanjut, bisa kirimkan email ke 
[EMAIL PROTECTED] atau di 
http://groups.yahoo.com/group/binuscenter_bsdcity/

TEMPAT TERBATAS !!!

Thanks.

Regard,
BiNus Center BSD City









-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





RE: [ITCENTER] Nanya Feature Webhosting

2006-07-20 Terurut Topik Idkham Adhiyasa
intinya kita bisa bikin alamat email tak terbatas tapi nerima email di inbox 
server web hostingnya tetap dibatasi sejumlah space yang kita sewa. 

gabungin saja gmail dengan forwarding di server webhosting. jadi kita nerima  
ngirim email pake domain kita dari gmail. gratis. jadi space yang dipake di 
server gmail.  gak ngabisin space di webhosting kita.

by godam64 : http://organisasi.org

-Original Message-
From: ITCENTER@yahoogroups.com [mailto:[EMAIL PROTECTED]
Behalf Of Andriansah™
Sent: Thursday, July 20, 2006 9:01 AM
To: ITCENTER@yahoogroups.com
Subject: Re: [ITCENTER] Nanya Feature Webhosting


On 7/19/06, a_goenk [EMAIL PROTECTED] wrote:

 Guys,

 nanya dong, klo ada sebuah webhosting yang (salah satunya)
 menawarkan feature seperti ini :
   EmailWeb
 Mail  Ya  Ya  Ya  YaPOP3
 Email  Unlimited  Unlimited  Unlimited  Unlimited 
Email
 Forwarding  Unlimited  Unlimited  Unlimited  Unlimited
 Email
 AutoReply  Unlimited  Unlimited  Unlimited  Unlimited 
Anti
 Spam  Ya  Ya  Ya  Ya
 maksudnya gmn sih ?
 Bisa tolong dijelasin ngga ?


anda mendapat account email banykk banget
anda bisa memforward email banykk banget
anda bisa meng auto reply untuk semua account email (CMIIW)
Ada anti spamnya


Makasih.

 rgds,
 Agung


 -
 Do you Yahoo!?
 Get on board. You're invited to try the new Yahoo! Mail Beta.

 [Non-text portions of this message have been removed]






 --
 www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia
 Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED]
 :: Hapus bagian yang tidak perlu (footer, dst) saat reply! ::
 ## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
 $$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

 [@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id


 Yahoo! Groups Links










-- 
Andriansah

andri.andriani.web.id


[Non-text portions of this message have been removed]





-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links



 






-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[ITCENTER] email

2006-07-20 Terurut Topik Hendra Arif
friend gw mau tanya, perbandingan harga untuk dial up dengan speedy mahalan 
mana ya? paling gw butuh buat email(outlook) aja

thx
Hendra Arif

[Non-text portions of this message have been removed]






-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





RE: [ITCENTER] Serial Number Dreamweaver MX 2004

2006-07-20 Terurut Topik davis santoso
Iya yah.. gw inikan illegal. Hahahaha
AsBun aja. hehehehehe

David

IT Admin

PT. Catur Gatra Eka Perkasa

Jakarta Pusat 10750


-Original Message-
From: ITCENTER@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf
Of AmiGelz
Sent: Thursday, July 20, 2006 11:41 AM
To: ITCENTER@yahoogroups.com
Subject: Re: [ITCENTER] Serial Number Dreamweaver MX
2004

hehheheheh, jadi ingat kejadian yang timbul saat aq
mau bagi2 hal ilegal di
milist ini, hehehehhehehehehhe, weleh-weleh mbok yoo
semua belajar dari
pengalaman kemaren

2006/7/20, Setyo Suhartanto
[EMAIL PROTECTED]:

   - Call back your email
 - Ask for appologize
 - Pray you are not banned

 Huehehehe... dasar newbie.


 On 7/20/06, david_hosana
[EMAIL PROTECTED]david_hosana%40yahoo.com
 wrote:
 
  hi...temen-temen IT ...
  help me doNK ..
  G pengen nginstal DW MX 2004 tapi gak ada no. seri
nya ..
  ada y^ punya ga' ... plizz doNK ... or kirim ke
Email G yachh ..
 
  thanx a LOT ...
  GBU.
 
 
 

 [Non-text portions of this message have been
removed]

  




-- 
 Urip Pisan Jo` Digawe Soro
 add fs and YmId   AmiGelz [at] yahoo [dot]
com
-=*=-AmiGelz || NFS || Agen_dosa A.K.A Nurma A K H
-=*=-


[Non-text portions of this message have been removed]



-- 
www.itcenter.or.id - Komunitas Teknologi Informasi
Indonesia 
Info, Gabung, Keluar, Mode Kirim :
[EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat
reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa:
itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di
http://shop.itcenter.or.id 

 
Yahoo! Groups Links



 






__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 





-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [ITCENTER] Serial Number Dreamweaver MX 2004

2006-07-20 Terurut Topik Satrya Ok
Semoga anda dalam posisi sadar saat mengirim email ini.tolong 
jangan diulangi

david_hosana [EMAIL PROTECTED] wrote:  hi...temen-temen IT ...
help me doNK ..
G pengen nginstal DW MX 2004 tapi gak ada no. seri nya ..
ada y^ punya ga' ... plizz doNK ... or kirim ke Email G yachh ..

thanx a LOT ...
GBU.












-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 


Yahoo! Groups Links









-
See the all-new, redesigned Yahoo.com.  Check it out.

[Non-text portions of this message have been removed]






-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [ITCENTER] Catridge ku kenapa ya !!???

2006-07-20 Terurut Topik Chipier son
cek busa yang dibawah catrigenya kalo bocor ya harus diganti untuk warna hitam 
sekitar 60 rb, tapi kalo ga bocor ya  head printernya sudah tipis dan harus 
diganti harga nya sekitar 250 rb.
   
  

deje nuxer [EMAIL PROTECTED] wrote:
  BUat para pakar IT, khususnya yg pernah ngalami permasalahan seperti aku,
minta tolong sharing dong!
Aku ada masalah dengan catridge canon IP1000, yaitu warna hitam nya gak
bagus, aku udah coba maintenance dengan jalan cleaning, tapi hasilnya tetep
aja, tiddak seperti biasanya klo kotor, hitam nya terlihat bergelombang?
napa ya?
Trus catridge yang satunya waktu aku tes noozle tinta hitam kagak
masalah(normal), tapi malah tinta warna nya yg bermasalah( tepatnya warna
merahnya tidak muncul sama sekali ), kira2 bissa diatasi gak?
Klo harus ganti catridge berapa?!


[Non-text portions of this message have been removed]





-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 


Yahoo! Groups Links










-
Yahoo! Music Unlimited - Access over 1 million songs.Try it free. 

[Non-text portions of this message have been removed]






-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [ITCENTER] Software HRD

2006-07-20 Terurut Topik Chipier son
kalo cari softwarenya nya sih ane ga tau, tapi yang jelas lebih baik software 
hrd tersebut di bangun / dikembangkan dari awal, kalo ari mau perusahaan gue 
juga membuat software2 seperti itu, harga tak kasih bersaing deh
  

juniar_ari [EMAIL PROTECTED] wrote:
  Pagi kawan semua...

Saya lagi nyari software HRD(personalia) nich
Untuk software personality disini dalam arti jika perusahaan ingin 
merekrut / menghire karyawan baru, perusahaan memberikan beberapa 
pertanyaan yang disediakan oleh software tsb, dimana nantinya seluruh 
jawaban akan menghasilkan suatu result secara otomatis dengan 
menggunakan database software tsb tentang kepribadian pelamar.
Kemudian HRD memilih kepribadian siapa yang cocok dengan jabatan/
posisi yang ditawarkan.
Kira2 ada yang tahu ngga saya harus beli dimana?? thanks infonya








-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 


Yahoo! Groups Links









-
Yahoo! Messenger with Voice. Make PC-to-Phone Calls to the US (and 30+ 
countries) for 2¢/min or less.

[Non-text portions of this message have been removed]






-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[ITCENTER] Error di HP PSC 2210

2006-07-20 Terurut Topik Sakti Widharto
Dear rekans IT,
  Mohon bantuannya, 
  Ada yg pernah bongkar HP PSC 2210 (all in one) ? Bagian scannernya maksa 
terus bergerak ke arah kanan, padahal itu sudah mentok (akhirnya jadi bunyi 
krotak2). Kayaknya sensornya gak fungsi, tpi aku gak nemu tempat sensornya. 
(dimana yaa..?)
  Kalau memang scannernya gak bisa diselamatkan, pinginnya  di disable biar 
printernya bisa kepakai. Tpi gimana caranya
   
  Plz
   
  Tx
  Shaq T
  
 


-
Yahoo! Messenger with Voice. Make PC-to-Phone Calls to the US (and 30+ 
countries) for 2¢/min or less.

[Non-text portions of this message have been removed]






-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [ITCENTER] ip pake manual nggak mau konek internet(tetap kagak bisa)

2006-07-20 Terurut Topik aku anton
.

 DNS dan gateway dah bener, ngga lbih dari ip range tetep aja nggak konek

 


 
  anton setiawan 
surabaya 
antonline.l1h.net


-
See the all-new, redesigned Yahoo.com.  Check it out.

[Non-text portions of this message have been removed]





-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [ITCENTER] ip pake manual nggak mau konek internet(tetap kagak bisa)

2006-07-20 Terurut Topik Steph
Mungkin bisa di coba DHCP di Router di disable dulu pak.
Dulu saya pernah saya aktifkan DHCPnya dan Client saya kasih IP sendiri 
tidak ada masalah. Udah bertahun-tahun

Nggak tau deh sekarang kok timbul masalah spt yang bapak alami.
Jalan tengah sementara yang mau pakai DHCP saya kasih DHCP yang nggak mau ya 
dikasih IP manual he 3x.

Jadi kalau ada yg kasih jalan keluar saya ikut terbantu nih

- Original Message - 
From: aku anton [EMAIL PROTECTED]
To: ITCENTER@yahoogroups.com
Sent: Thursday, July 20, 2006 2:57 PM
Subject: Re: [ITCENTER] ip pake manual nggak mau konek internet(tetap kagak 
bisa)


.

 DNS dan gateway dah bener, ngga lbih dari ip range tetep aja nggak konek





  anton setiawan
 surabaya
 antonline.l1h.net


 -
 See the all-new, redesigned Yahoo.com.  Check it out.

 [Non-text portions of this message have been removed]





 -- 
 www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia
 Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED]
 :: Hapus bagian yang tidak perlu (footer, dst) saat reply! ::
 ## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
 $$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

 [@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id


 Yahoo! Groups Links






 



-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




RE: [ITCENTER] email

2006-07-20 Terurut Topik dendy
Klo buat pribadi pake Dial UP cukup, tapi klo buat Corporate mendingan
pake ADSL sejenis Speedy

-Original Message-
From: ITCENTER@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Hendra Arif
Sent: 20 Juli 2006 13:49
To: ITCENTER@yahoogroups.com
Subject: [ITCENTER] email


friend gw mau tanya, perbandingan harga untuk dial up dengan speedy
mahalan mana ya? paling gw butuh buat email(outlook) aja

thx
Hendra Arif

[Non-text portions of this message have been removed]






-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ## $$
Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links



 





-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [ITCENTER] ip pake manual nggak mau konek internet

2006-07-20 Terurut Topik Steph
Buat IP sendiri untuk jaringan kantor mah nggak masalah pak.
Ini kan bukan IP Public, kecuali IP Public.

Kalau yang diberikan oleh ISP setau saya itu IP Public.

Di kantor saya bikin IP sendiri untuk lingkungan kantor nggak ada masalah.

- Original Message - 
From: Calculus [EMAIL PROTECTED]
To: aku anton ITCENTER@yahoogroups.com
Sent: Thursday, July 20, 2006 12:20 PM
Subject: Re: [ITCENTER] ip pake manual nggak mau konek internet


 Hello aku,

 Thursday, July 20, 2006, 11:16:25 AM, you wrote:

 halo semuanya. saya saat ini sedang bingung tuk konek internet. no
 ip yang saya buat dengan manual kok ngga mau konek ke
 internet ya, tapi klo dibuat pake otomatis dia mau konek. gimana 
 nechhh??? minta tolong ya ???

 lho anda buat IP sendiri..? memang bener-bener buat IP atau diaksihd
 ari ISP? kalo nekat buat sendiri sebaiknya jangan, pakai saja yang
 dikasih oleh ISP,sebab ISP punya blok IP tersendiri yang bisa
 digunakan oleh pelanggannya.

 -- 
 Best regards,
 Calculusmailto:[EMAIL PROTECTED]





 -- 
 www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia
 Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED]
 :: Hapus bagian yang tidak perlu (footer, dst) saat reply! ::
 ## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
 $$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

 [@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id


 Yahoo! Groups Links





 



-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [ITCENTER] Melihat Mac Adress, bagaimana caranya ?

2006-07-20 Terurut Topik Setyo Suhartanto
Sama2 Pak Steph,

Bagi2 ke yg laen kalo someday ada yg nanya ya :)


On 7/20/06, Steph [EMAIL PROTECTED] wrote:

   Sudah terselesaikan pak masalahnya.
 Saya yang salah, diping dulu toh ternyata.
 Saya kira sendiri-sendiri nggak tau kalau harus diping dulu.

 Terimakasih Banyak Pak setyo sudah bantuin saya.



[Non-text portions of this message have been removed]



-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




RE: [ITCENTER] Backup device

2006-07-20 Terurut Topik Albert Siagian
 -Original Message-
 From: ITCENTER@yahoogroups.com 
 [mailto:[EMAIL PROTECTED] On Behalf Of WahyudiTH
 Sent: Thursday, July 20, 2006 12:06 PM
 To: ITCENTER@yahoogroups.com
 Subject: Re: [ITCENTER] Backup device
 
 Maxtor external berada di server yang sama cuma SQL server 
 tidak di shutdown karna di-schedule malam hari.
 Maksudnya user bisa kerja sampai malem terus backupnya di 
 schedule tengah malam.
 Salam,
 Wahyudi 
 


Mungkin karena SQL Server *service* (bukan SQL *Server/hardware*) tidak di
shutdown ini penyebabnya. Apakah mungkin database (bukan Server) di shutdown
2-3 jam pada malam/dini hari atau memang _wajib_ 24x7 tanpa bisa shutdown
satu detik-pun? Ngga mesti backup tengah malam kan? Bisa coba jam 4 pagi,
dan nanti waktu anda datang ke kantor, lihat apakah backup sudah selesai
atau masih proses.

Atau kalau mau backup serius, beberapa aplikasi backup, punya agent untuk
membackup file SQL Server yang sedang aktif, jadi Service tidak perlu
shutdown.

Salam
Albert



-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [ITCENTER] Melihat Mac Adress, bagaimana caranya ?

2006-07-20 Terurut Topik Steph
Siiip Pak, nanti kalau ada yang tanya tak share.
Aku juga dah cari di google dan sudah dapat juga.

- Original Message - 
From: Setyo Suhartanto [EMAIL PROTECTED]
To: ITCENTER@yahoogroups.com
Sent: Thursday, July 20, 2006 3:06 PM
Subject: Re: [ITCENTER] Melihat Mac Adress, bagaimana caranya ?


 Sama2 Pak Steph,
 
 Bagi2 ke yg laen kalo someday ada yg nanya ya :)
 
 
 On 7/20/06, Steph [EMAIL PROTECTED] wrote:

   Sudah terselesaikan pak masalahnya.
 Saya yang salah, diping dulu toh ternyata.
 Saya kira sendiri-sendiri nggak tau kalau harus diping dulu.

 Terimakasih Banyak Pak setyo sudah bantuin saya.

 
 
 [Non-text portions of this message have been removed]
 
 
 
 -- 
 www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
 Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
 :: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
 ## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
 $$ Iklan/promosi : www.itcenter.or.id/sponsorship $$
 
 [@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 
 
 
 Yahoo! Groups Links
 
 
 
 
 



-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [ITCENTER] email

2006-07-20 Terurut Topik Steph
Tergantung dari penggunaan pak.
Kalau cuma buat check email seperti outlook aja mah jelas lebih murah 
Dial_UP.

- Original Message - 
From: Hendra Arif [EMAIL PROTECTED]
To: ITCENTER@yahoogroups.com
Sent: Thursday, July 20, 2006 1:48 PM
Subject: [ITCENTER] email


 friend gw mau tanya, perbandingan harga untuk dial up dengan speedy 
 mahalan mana ya? paling gw butuh buat email(outlook) aja

 thx
 Hendra Arif

 [Non-text portions of this message have been removed]






 -- 
 www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia
 Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED]
 :: Hapus bagian yang tidak perlu (footer, dst) saat reply! ::
 ## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
 $$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

 [@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id


 Yahoo! Groups Links






 



-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[ITCENTER] LOWONGAN KERJA

2006-07-20 Terurut Topik Fajri Fachriansyah
Kami adalah Perusahaan IT yang berkembang indonesia.
Membutuhkan beberapa IT Profesional Muda dengan kualifikasi sbb :

Menguasai :
- Java
- J2EE
- WebService
- Linux
- Mercury Sitescope
- ShellScript
- Perl
- Cristal Report

diutamakan memiliki pengalaman 2-4 th

Kirim CV anda ke alamat [EMAIL PROTECTED]

_
Express yourself instantly with MSN Messenger! Download today it's FREE! 
http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/





-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [ITCENTER] email

2006-07-20 Terurut Topik Calculus
Hello Hendra,

Thursday, July 20, 2006, 1:48:50 PM, you wrote:

 friend gw mau tanya, perbandingan harga untuk dial up dengan speedy
 mahalan mana ya? paling gw butuh buat email(outlook)
 aja

kalo cuman dipake cek email mending pake dial up saja. kalo sering
browsing dan donlot, speedy kayaknya cocok deh.

-- 
Best regards,
 Calculusmailto:[EMAIL PROTECTED]



-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[ITCENTER] File Hilang di flashdisk dan Trojan horse IRC/BackDoor.SdBot.JKA

2006-07-20 Terurut Topik Budy Superyadi
Hi guys, aku ada masalah dengan flashdisk.
Aku pake 128 MB Kingston flashdisk, setiap nyimpen file (umumnya text seperti 
.doc .txt. , dll) ke flashdisk pas di colok di kompie lain, file tersebut tidak 
ada :-(
Padahal pernah juga dicoba dicopy beserta folder-nya, tapi foldernya ada, 
file-nya tidak ada. Kira-kira penyebabnya apa ya? Udah di-scan virus pake 
norton terbaru dan AVG tapi tidak ada virus, udah di-format berkali-kali, tetap 
aja kejadian serupa terjadi. Yang belum dicoba di partisi ulang. Bisa ga ya 
flashdisk di partisi, lewat dos (fdisk) misalnya? Atau ada cara lain untuk 
mengatasi masalah ini dan cara mempartisi flashdisk?
Dan satu lagi, PC aku terinveksi Trojan horse IRC/BackDoor.SdBot.JKA, ada di 
C:\WINDOWS\system32\cool.exe dan f.exe. File tersebut sudah dihapus, tapi 
selalu ada lagi. Gimana sih cari ngilanginnya? Sekarang aku paku Antivirus AVG 
Free version. Waktu scan virus, file C:\WINDOWS\system32\host error reading, 
tapi dicari di folder tersebut gak ada nama file tersebut. Ada yang punya 
pengalaman seperti aku ga?

Thanks b4!

Salam,

Budy Superyadi
--
PT. QNet Indonesia
Lippo Plaza, Jl. Jend Sudirman kav. 25
Telp. +62 (021) 5291 3781
Fax.  +62 (021) 5291 3766 


[Non-text portions of this message have been removed]






-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [ITCENTER] makasih mas kalkulus

2006-07-20 Terurut Topik aku anton
makasih mas kalkulus, maksud saya no ip saya masukkan secara manual bukan 
otomatis. makasih atas saran sebelumnya... 

 
  anton setiawan 
surabaya 
antonline.l1h.net


-
Do you Yahoo!?
 Get on board. You're invited to try the new Yahoo! Mail Beta.

[Non-text portions of this message have been removed]





-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [ITCENTER] cari freelance sabtu minggu

2006-07-20 Terurut Topik Rendra Tris
Kalau ada yang mau les private mau nggak? Berapa ratenya per jam...
   
  Rendra Tris
  ---

Andriansah™ [EMAIL PROTECTED] wrote:
  On 7/19/06, the kickers [EMAIL PROTECTED] wrote:

 hallo semua, saya sedang cari perkerjaan freelance
 kira2 ada yang bisa bantu enggak ya?

 skill saya :
 -PHP
 -ASP
 -COLDFUSION
 -VB
 -VISUAL FOXPRO
 -CLIPPER
 -MYSQL
 -MSSQL2000
 -ORACLE (baru belajar)
 -MICROSOFT OS (WIN98,2000,XP)
 -LINUX
 -TROUBLE SHOOTING
 -NETWORKING
 -MAINTENNACE

 oh iya kalo ada pekerjaan di luar bidang IT juga boleh


wah kalo ada saya juga mau tuh

-- 
Andriansah

andri.andriani.web.id

[Non-text portions of this message have been removed]



 


-
See the all-new, redesigned Yahoo.com.  Check it out.

[Non-text portions of this message have been removed]





-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[ITCENTER] ADMIN: Dua tips agar posting anda muncul cepat di milis

2006-07-20 Terurut Topik Kristy Whanarahardja

Rekan2 ITCENTER,

Milis ITCENTER semakin besar, kalau belum mau disebut sbg milis IT
terbesar di Indonesia, dgn anggota 11500+, posting hampir 100 per hari.
Telah diketahui bahwa semata2 demi kenyamanan, ketertiban, dan kebersihan
milis, diberlakukan aturan2 milis dan status milis yg diset
semi-moderated.
Para pengurus/moderator milis hampir setiap hari dan setiap saat melakukan
tugasnya utk menyaring posting2 yg masuk. Dgn kriteria tertentu
sekali-sekali memonitor anggota AKTIF (sering berpartisipasi) yg layak utk
dicabut status moderasinya, dgn kata lain email dari anggota tsb tdk lagi
dimoderasi tapi langsung didistribusikan ke milis.

Kriteria apa? Dua tips (2K) agar email rekan2 semua dicabut status
moderasinya:

- Ketertiban: SELALU ikuti aturan milis (dikirimkan ke milis secara
periodik)
- Kebersihan: SELALU merapikan dan menghapus bagian yg tdk perlu pada saat
membalas email anggota lain

Pengurus tetap berhak utk menset kembali status moderasi atau bahkan
memberikan sanksi apabila anggota melanggar.

PS: Kalau sudah menerapkan 2K tsb, jgn merengek2 ke moderator ;) Moderator
akan mempertimbangkan utk mencabut status moderasi anggota tsb setelah
melihat konsistensinya (bukan cuma satu dua kali saja).

Salam,
Pengurus ITCENTER


Ce message ?lectronique et tous les fichiers attach?s sont confidentiels et 
destin?s exclusivement ? l'usage de la personne ? laquelle ils sont adress?s. 
Si vous n'?tes pas le destinataire de ce message, merci d'avertir ou de le 
retourner ? son ?metteur et d?truire ce message ?lectronique et tous les 
fichiers attach?s de votre syst?me informatique. La publication, l'usage, la 
distribution, l'impression ou la copie non autoris?e de ce message et des 
attachements qu'il contient sont strictement interdits.

This e-mail and any attachment are confidential and intended solely for the use 
of the individual to whom it is addressed. If you are not the intended 
recipient, please telephone or email the sender and delete this message and any 
attachment from your system. Unauthorized publication, use, dissemination, 
forwarding, printing or copying of this e-mail and its associated attachments 
is strictly prohibited.

Este correo electr?nico y todos los ficheros adjuntos son confidenciales y 
destinados exclusivamente al uso de la persona a la cual han sido remitidos. 
Si Usted no es el destinatario del mensaje, agradecemos advierta al remitente y 
elimine el mensaje y sus adjuntos de su sistema.
La publicaci?n, distribuci?n, impresi?n o copia no autorizada de este mensaje y 
de sus adjuntos queda estrictamente prohibida.


[Non-text portions of this message have been removed]



-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[ITCENTER]

2006-07-20 Terurut Topik Agus Kianto
Dh

 

Tolong dong kami lagi membutuhkan UPS DIGITAL WSL 1000VA

 

Kalau ada yg punya stock bisa menghubungi kami di 021-9195901

atau JAPRI aja

 

 

Terima kasih,

Agus Kianto

 



[Non-text portions of this message have been removed]






-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [ITCENTER] Download free Adobe Illustrator

2006-07-20 Terurut Topik roguf 0nly..
Aq dah coba ke situs itu, tp TryOut version (30 hari). Yg free dmn yaa ???


[Non-text portions of this message have been removed]






-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[ITCENTER] maksimun user yg bisa koneksi di win xp

2006-07-20 Terurut Topik deny arifatno
Alo Pakar It
mohon bantuannya,
Kenapa PC pake win xp sp2 yang folder  printernya di sharing, ketika user
yg kesebelas (11) mo akses to PC ga bisa ? Apakh masksimal user yg bisa
koneksi cuma 10 ?

Terimakasih


[Non-text portions of this message have been removed]






-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




RE: [ITCENTER] maksimun user yg bisa koneksi di win xp

2006-07-20 Terurut Topik Denis Arifin
Make xpnya versi home atau prof mas?

 

Denis Arifin

---

EDP Departement

  _  

From: ITCENTER@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of deny arifatno
Sent: Thursday, July 20, 2006 4:27 PM
To: ITCENTER@yahoogroups.com
Subject: [ITCENTER] maksimun user yg bisa koneksi di win xp

 



[Non-text portions of this message have been removed]



-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[ITCENTER] Re: ip pake manual nggak mau konek internet

2006-07-20 Terurut Topik -shah-
Pak Profesor,

konsekwensi dari kita menggunakan sembarang IP itu apa ya?
kalo diban oleh si ISP kan bisa kita pake blok IP yg laen...

mohon pencerahannya.
Makasih.

Re: ip pake manual nggak mau konek internet
Posted by: Calculus [EMAIL PROTECTED]
Date: Thu Jul 20, 2006 12:56 am (PDT)

Hello aku,

Thursday, July 20, 2006, 11:16:25 AM, you wrote:

 halo semuanya. saya saat ini sedang bingung tuk konek internet. no
 ip yang saya buat dengan manual kok ngga mau konek ke
 internet ya, tapi klo dibuat pake otomatis dia mau konek. gimana nechhh???
minta tolong ya ???

lho anda buat IP sendiri..? memang bener-bener buat IP atau diaksihd
ari ISP? kalo nekat buat sendiri sebaiknya jangan, pakai saja yang
dikasih oleh ISP,sebab ISP punya blok IP tersendiri yang bisa
digunakan oleh pelanggannya.

--
Best regards,
Calculus


[Non-text portions of this message have been removed]



-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[ITCENTER] Converter CHM to HLP

2006-07-20 Terurut Topik Safik
Buat rekan2 yg punya software converter chm to hlp ato linknya .. 
Klo bisa yg free yah..?





-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [ITCENTER] Download free Adobe Illustrator

2006-07-20 Terurut Topik Natureza
coba aja ke www.download.com / www.click-now.com.

On 7/20/06, roguf 0nly.. [EMAIL PROTECTED] wrote:

 Temen2 bisa minta tlng, free download Adobe Illustrator situsnya dmn yaa
 ??

 Thx be 4.


 [Non-text portions of this message have been removed]






 --
 www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia
 Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED]
 :: Hapus bagian yang tidak perlu (footer, dst) saat reply! ::
 ## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
 $$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

 [@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id


 Yahoo! Groups Links










[Non-text portions of this message have been removed]






-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [ITCENTER] email

2006-07-20 Terurut Topik Natureza
mahalan speedy bos

On 7/20/06, Hendra Arif [EMAIL PROTECTED] wrote:

 friend gw mau tanya, perbandingan harga untuk dial up dengan speedy
 mahalan mana ya? paling gw butuh buat email(outlook) aja

 thx
 Hendra Arif

 [Non-text portions of this message have been removed]






 --
 www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia
 Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED]
 :: Hapus bagian yang tidak perlu (footer, dst) saat reply! ::
 ## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
 $$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

 [@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id


 Yahoo! Groups Links










[Non-text portions of this message have been removed]






-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [ITCENTER] Antena Kaleng

2006-07-20 Terurut Topik Natureza
knp pake kaleng, pake aja kabel lan

On 7/20/06, al_amir_islam [EMAIL PROTECTED] wrote:

 tolong dong makalah cara pembuatan antena kalengX









 --
 www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia
 Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED]
 :: Hapus bagian yang tidak perlu (footer, dst) saat reply! ::
 ## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
 $$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

 [@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id


 Yahoo! Groups Links










[Non-text portions of this message have been removed]






-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[ITCENTER] Technical Support Engineer (Developer)Project Manager

2006-07-20 Terurut Topik Widix
PT. CREDENT Teknologi part of CREDENT Technology Asia, Pte. Ltd   (formerly
Intergraph South East Asia) www.credent-asia.com is searching for
qualified candidates with the following requirements:
   
  General requirements:
  1. Male/female maximum 30 years old
  2. Willing to travel in a routine basis
   
  A.Technical Support Engineer (Developer)
   
  Expected main capabilities:
  1. Oracle Database Development (SQL, PL/SQL) minimum 1 year in a   row. 
  2. Visual Basic Database Programming using   ADO, minimum 2 years in a
row
  3. Having experience at least in 3 (three) project implementation   cycle.
   
  Additional skills and expertise weighting on competencies as   follows:
  1. GeoSpatial/GIS Concept
  2. Web Programming (ASP, Javascript,   VBScript)
  3. Network and TCP/IP
   
  B. Project Manager
   
  Expected main capabilities:
  1. Experience at least in 8 (eight) projects implementation cycle.   
  2. Experience in project management at least 3 (three) project
implementation cycle.
   
  Additional skills and expertise weighting on competencies as   follows:
  1. Oracle Database Development 
  2. Web Programming (ASP, Javascript,   VBScript)
  3. Visual Basic Database Programming using   ADO
  4. GeoSpatial Concept/GIS
  5. Network and TCP/IP
   
  We encourage for candidates with the qualifications outlined above   to
apply immediatelly. Please send a complete resume indicating position
applied   including salary expectation to [EMAIL PROTECTED] We're
expecting to   receive all applications on July 28   2006 at 12.00 the
latest. Please be notified that we ONLY provide   responses to eligible
candidates.

Ingin main futsal gabung dengan kita di
http://www.maniabola.com/viewtopic.php?t=5








Send instant messages to your online friends http://asia.messenger.yahoo.com 





-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [ITCENTER] SAP itu software mengenai apa?

2006-07-20 Terurut Topik Rendra Tris
SAP adalah salah satu software yang mendukung pembentukan sistem informasi 
Enterprise (ERP System), yang dewasa ini mulai banyak digunakan di perusahaan 
skala besar. Kelebihan SAP, ia dpt mengintegrasikan berbagai fungsi bisnis 
didalam suatu organisasi perusahaan menjadi satu kesatuan. Tanpa software SAP 
dan sejenisnya, sistem informasi TI tdk dapat melakukan hal tersebut. 
Pengintegrasian ini, ditambah dengan berbagai metode manajemen modern membuat 
perusahaan yg menggunakannya dapat memberikan jasa atau produk terbaik dengan 
efisiensi (biaya) yang serendah mungkin. Sehingga perusahaan tsb menjadi sangat 
kompetitif
   
  Smoga bermanfaat...!
   
  Rendra Tris
  -

johanes [EMAIL PROTECTED] wrote:
  Untuk SAP yang no 2, ada tulisan overviewnya di www.ilmukomputer.com.

Regards
Johanes

Agoes Boedi Poerwanto wrote:
 Setahu saya SAP ada 2 macam:
 1. Aplikasi untuk teknik sipil.
 2. Aplikasi bisnis.

 Kalau pertanyaannya mengenai yang ke 2, saya bisa jawab demikian:

 SAP adalah kepanjangan dari System, Analysis and Product in data processing. 
 Ini adalah software aplikasi yang digunakan untuk bisnis perusahaan. 
 Modul-modulnya lengkap, ada Material Management, Production Planning, 
 Finance, Controlling, Plant Maintenance dll. Implementasi tidak harus semua 
 modul, tetapi bisa dipilih sesuai dengan kebutuhan. Software ini buatan 
 Jerman. Saat ini SAP development berpusat di India.

 Untuk lebih jelasnya silakan search di google untuk SAP Expert, SAP 
 Specialist dll atau kunjung ke http://www.sap.com/index.epx atau kalau ingin 
 melihat lebih banyak perkembangan teknologi dari SAP, silakan ke 
 https://www.sdn.sap.com/irj/sdn.


 Regards

 Agoes Boedi Poerwanto
 SAP Basis


 - Original Message - 
 From: noor romy 
 To: ITCENTER@yahoogroups.com 
 Sent: Tuesday, July 04, 2006 7:46 AM
 Subject: [ITCENTER] SAP itu software mengenai apa?


 dear all

 SAP itu software mengenai apa?
 dimana kita membelinya?

 rgd
 romy

 __
 Do You Yahoo!?
 Tired of spam? Yahoo! Mail has the best spam protection around 
 http://mail.yahoo.com 



 

 [Non-text portions of this message have been removed]



 



 


-
Yahoo! Messenger with Voice. Make PC-to-Phone Calls to the US (and 30+ 
countries) for 2¢/min or less.

[Non-text portions of this message have been removed]





-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[ITCENTER] 2nd Seminar InstallFest Linux Edubuntu

2006-07-20 Terurut Topik Prihantoosa
Assalaamu'alaikum wr.wb.
Salam hangat,

Rekans ytc ...

Bagi yang ingin kenal lebih jauh dengan Linux Edubuntu
dan kaitannya dengan Lab Komputer sekolah, bagaimana
membuat LTSP Lab dalam waktu singkat, apakah Edubuntu
bisa menjadi tools untuk memenuhi kurikulum pendidikan
komputer di sekolah ? ...

  Kami dari MIFTA Cidepoks (cidepoks.mifta.org)
mengundang Anda semua untuk hadir dalam acara Seminar
dan InstallFest Linux Edubuntu yang ke 2, pada :
Hari / Tanggal : sabtu / 29 Juli 2006
Di SMP/SMU Lab School Cinere.

Keterangan lebih detail lihat di :
http://cidepoks.mifta.org

Acara ini terselenggara berkat kerjasama MIFTA
Cidepoks dengan : InfoLinux, LP3T NurulFikri, KPLI
Jakarta, Vertex Teknologi Utama, Lab School Cinere,
dll.

Ditunggu kehadirannya ...

Salaam ..
=Toosa=


=Prihantoosa=





-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [ITCENTER] cara untuk memberikan harga pada software yang dibuat sediri bagaimana ya?

2006-07-20 Terurut Topik Rendra Tris
Biasanya kalau mau menghitung suatu produk atau jasa, yang pertama kita lakukan 
adalah menentukan berapa biaya tidak tetap (Variabel cost) dan biaya tetap 
(fixed cost) yang kita keluarkan dalam pembuatan produk/jasa tersebut. Misalnya 
kalau menjual roti, berapa biaya bahan, biaya tenaga kerja langsung dsbnya  (v 
cost) dan berapa biaya tidak tetap (pengunaan alat, mesin, listrik dsbnya).
   
  Nah susahnya,
  pembuatan software/program komputer lebih merupakan pekerjaan otak. Jadi, 
susah menentukan biaya variabelnya. Gampang2nya gini aja, berapa biasanya 
programmer dibayar perjam, termasuk analis sistem yang menentukan kerangka 
masalah yang akan diproses program. Yah kira-kira begitulah harga pokok 
software tersebut. Kemudian tinggal lihat berapa harga program sejenis 
saingan..nah ketemu harga jualnya..Jangan juga dilupakan, menjual 
program selalu diikuti dengan menjual after sales service alias supportnya
   
  Ok,
  smoga bermanfaat...!
   
   
  Rendra Tris
  -

Alf [EMAIL PROTECTED] wrote:
  alo semua ini mailinglist pertama saya,

saya mau tanya bagaimana cara memperhitungkan harga dari software yang 
kita buat sediri berdasarkan pasaran harga yang sekarang?

apakah dihitung permodule? kira 2 berapa harganya permodule

thanks

awal



 


-
Do you Yahoo!?
 Next-gen email? Have it all with the  all-new Yahoo! Mail Beta.

[Non-text portions of this message have been removed]






-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[ITCENTER] Re: Catridge ku kenapa ya !!???

2006-07-20 Terurut Topik ab he....
. ni ilmu dptnya dr tmn,, jadi klo yakin catridge ga da masalah,, berarti 
headnya yg kita akalin.. dgn cara :
1. siapin air panas,, tp jgn panas2 bgt ( panas kuku ) taruh didalem gelas 
beling ( spya gampang d bershin),, trus celupin headnya(jgn semuanya,,cukup 
bagian bawahnya saja) jangan sampai terkena bag. yg bs d baca kompi(bag. 
blkg)... setelah itu,,baru di lap dgn tissue bagian pinggir head,,tp jgn 
terkena aliran tinta/besiyang keluar tinta,,cukup pinggirannya saja...
2. klo cara td gagal, ada tips satu lagi,, masukin air hangat td kedalam tmp 
cartridge sekitar 2 cm.. tngguin aja ampe air tuh habis lewat aliran tinta...
met mencoba...


[Non-text portions of this message have been removed]






-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[ITCENTER] nanya setting san

2006-07-20 Terurut Topik Firdaus

On Thursday 20 July 2006 08:31, Tomi Aja wrote:

mohon pencerahan dari rekan rekan..gimana cara setting dan cara kerja san 
switch ,  ada kah yang pernah dan mempunyai how to nya berbentuk pdf atau 
yang lain , saya memakai san switch merek IBM 8 port.

thx






 Untuk mempermudah Backup Data dari banyak server dari berbagai Lokasi Area,
 sebaiknya menggunakan Arsitektur SAN (Storage Area Network) Switch. Pada
 arsitektur ini, proses Backup data tidak melalui bandwidth jalur LAN
 sehingga tidak membebani Bandwidth tsb, tetapi langsung melalui SAN Switch
 ke External Storage dan lalu di pindah kan lagi ke LTO (Linier Tape Open).
 Dan sudah pasti jika proses Backup Data dilakukan melalui Jalur LAN itu
 akan sangat lama. Saran saya, Bapak rancang arsitektur SAN Switch, lalu
 instal Tivoli SoftwareTivoli Storage ManagerTSM Server  TSM Client.
 Dalam software ini, bisa juga mengintegrasikan berbagai macam jenis
 aplikasi utk Backup  Recovery Management, Archive Management, Application
 Protection.

   Semoga bermanfaat.

   BR,

   Tomi

 Albert Siagian [EMAIL PROTECTED] menulis:
-Original Message-
 
  From: ITCENTER@yahoogroups.com
  [mailto:[EMAIL PROTECTED] On Behalf Of WahyudiTH
  Sent: Wednesday, July 19, 2006 1:39 PM
  To: ITCENTER@yahoogroups.com
  Subject: Re: [ITCENTER] Backup device
 
  Pak Albert,
  Hasil backup ke HDD external via USB bagus?
  Saya coba menggunakan MAXTOR OneTouch, External HD capacity
  160 GB, untuk backup database SQL 60 GB via USB lama sekali
  (lebih dari 6 jam).
 
  Salam,
  Wahyudi

 Lancar saja sih, dengan beberapa perbedaan kondisi:
 1. Karena saya backup file data, ada puluhan ribu file besar-kecil.
 Sedangkan anda backup file SQL yang hanya beberapa file.

 2. Saya backup data di server yang sama dengan HDD eksternal. Untuk 60GB,
 butuh waktu sekitar 2 jam.

 Apakah Maxtor eksternal anda berada di server yang sama dengan SQL Server?
 Mungkin ini ada hubungannya karena trafik via LAN akan lebih lambat.
 Pastikan juga SQL Server anda di shutdown dulu service-nya sebelum backup.

 Salam
 Albert



 --
 www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia
 Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED]

 :: Hapus bagian yang tidak perlu (footer, dst) saat reply! ::

 ## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
 $$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

 [@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id


 Yahoo! Groups Links









 -
 Apakah Anda Yahoo!?
 Kunjungi halaman depan Yahoo! Indonesia yang baru!

 [Non-text portions of this message have been removed]

-- 
Rgrds
Firdaus
[EMAIL PROTECTED]






Disclaimer: Although this message has been checked for all known viruses
 using Trend Micro InterScan Messaging Security Suite, Bukopin 
   accept no liability for any loss or damage arising
   from the use of this E-Mail or attachments.




-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[ITCENTER] Re: Download free Adobe Illustrator

2006-07-20 Terurut Topik -shah-
udah coba download kan ya, download-nya free toh?
bukannya itu yg diminta (kalo liat subject-nya)?

ato mintanya supaya masa pakenya lebih dari 30 hari?
kalo emang bener gitu, berarti ente kudu bayar dulu,
coba aja ke bhinneka.com, kalo gak salah mereka jual
Adobe Illustrator deh.

Re: Download free Adobe Illustrator
Posted by: roguf 0nly.. [EMAIL PROTECTED] rgumyraf
Date: Thu Jul 20, 2006 2:48 am (PDT)

Aq dah coba ke situs itu, tp TryOut version (30 hari). Yg free dmn yaa ???


[Non-text portions of this message have been removed]



-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [ITCENTER] Re: ip pake manual nggak mau konek internet

2006-07-20 Terurut Topik Calculus
Hello -shah-,

Thursday, July 20, 2006, 5:20:56 PM, you wrote:

 konsekwensi dari kita menggunakan sembarang IP itu apa ya?
 kalo diban oleh si ISP kan bisa kita pake blok IP yg laen...

ISP khan punya blok IP tersendiri, kalo kita nekat pakai IP diluar
blok yang digunakan oleh isp tersebut,menurut saya ada dua
kemungkinan, koneksi diblok atau malah tidak bisa konek ke internet
karena isp 'bingung' dalam menyalurkan data ke pc yang tidak terdaftar
ip-nya di sistem mereka.

kalau seandainya perusahaan sudah punya alokasi ip tersendiri dan
berlangganan isp yang memberikan ip tertentu, bisa digunakan solusi
NAT.

-- 
Best regards,
 Calculusmailto:[EMAIL PROTECTED]



-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [ITCENTER] Antena Kaleng

2006-07-20 Terurut Topik Joni kondang
Coba disini bung amir http://wireless.ictp.trieste.it/handbook/download.html

Salam,


On 7/20/06, Natureza [EMAIL PROTECTED] wrote:

knp pake kaleng, pake aja kabel lan


 On 7/20/06, al_amir_islam [EMAIL PROTECTED]
 al_amir_islam%40yahoo.com wrote:
 
  tolong dong makalah cara pembuatan antena kalengX
 
 
 
 
 
 
 
 
 
  --

 




[Non-text portions of this message have been removed]



-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [ITCENTER] Re: Download free Adobe Illustrator

2006-07-20 Terurut Topik Setyo Suhartanto
Jawaban ini kayaknya dah jelas bgt, harusnya si TS dah ngerti :)
Mudah2an sang penanya bukan mau cari situs2 illegal.


On 7/20/06, -shah- [EMAIL PROTECTED] wrote:

udah coba download kan ya, download-nya free toh?
 bukannya itu yg diminta (kalo liat subject-nya)?

 ato mintanya supaya masa pakenya lebih dari 30 hari?
 kalo emang bener gitu, berarti ente kudu bayar dulu,
 coba aja ke bhinneka.com, kalo gak salah mereka jual
 Adobe Illustrator deh.

  
 Messageshttp://groups.yahoo.com/group/ITCENTER/messages;_ylc=X3oDMTJldjdjbDR1BF9TAzk3MzU5NzE0BGdycElkAzEzNjgwODcEZ3Jwc3BJZAMxNjAwMDQzNjk1BHNlYwNmdHIEc2xrA21zZ3MEc3RpbWUDMTE1MzM5OTM0Ng--
 --
 www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia
 Info, Gabung, Keluar, Mode Kirim : itcenter-[EMAIL PROTECTED]






[Non-text portions of this message have been removed]



-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[ITCENTER] beda Pentium Celeron Pentium-M Celeron

2006-07-20 Terurut Topik sangwaktu
as subject,

ada yang bisa kasih pencerahan?
perbedaan yang mendasar?
maksimum berapa Ghz?
maaf kalau pertanyaan-nya agak2 nggak jelas.

trims,
am


-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





RE: [ITCENTER] beda Pentium Celeron Pentium-M Celeron

2006-07-20 Terurut Topik dendy
Pentium Celeron Buat PC sedangkan Pentium M celeron buat Notebook

CMIIW

-Original Message-
From: ITCENTER@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of sangwaktu
Sent: 21 Juli 2006 8:56
To: ITCENTER@yahoogroups.com
Subject: [ITCENTER] beda Pentium Celeron  Pentium-M Celeron


as subject,

ada yang bisa kasih pencerahan?
perbedaan yang mendasar?
maksimum berapa Ghz?
maaf kalau pertanyaan-nya agak2 nggak jelas.

trims,
am


-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ## $$
Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links



 





-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [ITCENTER] beda Pentium Celeron Pentium-M Celeron

2006-07-20 Terurut Topik bAKT
Cuma meluruskan sedikit, cukup Celeron™ saja tanpa embel 2 pentium..
atau M..


dendy wrote:
 Pentium Celeron Buat PC sedangkan Pentium M celeron buat Notebook

 CMIIW

 -Original Message-
 From: ITCENTER@yahoogroups.com [mailto:[EMAIL PROTECTED] On
 Behalf Of sangwaktu
 Sent: 21 Juli 2006 8:56
 To: ITCENTER@yahoogroups.com
 Subject: [ITCENTER] beda Pentium Celeron  Pentium-M Celeron


 as subject,

 ada yang bisa kasih pencerahan?
 perbedaan yang mendasar?
 maksimum berapa Ghz?
 maaf kalau pertanyaan-nya agak2 nggak jelas.

 trims,
 am


   

Send instant messages to your online friends http://asia.messenger.yahoo.com 


-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [ITCENTER] beda Pentium Celeron Pentium-M Celeron

2006-07-20 Terurut Topik Ryo Saeba
On 7/21/06, sangwaktu [EMAIL PROTECTED] wrote:

 ada yang bisa kasih pencerahan?
 perbedaan yang mendasar?
 maksimum berapa Ghz?
 maaf kalau pertanyaan-nya agak2 nggak jelas.

http://en.wikipedia.org/wiki/Celeron

celeron generasi sekarang itu berarti celeron yang berbasis netburst,
artinya dia berdasarkan pentium IV. namanya adalah celeron 4, ini
untuk desktop atau desknote.

celeron M itu berdasarkan pentium M, yang pada gilirannya berdasarkan
pentium III. harap diingat bahwa pentium III dan pentium IV sudah
sangat berbeda, bisa dikatakan pentium IV sama sekali berbeda / tidak
berbasiskan pentium III.

untuk melihat max berapa GHz, silakan lihat:

http://en.wikipedia.org/wiki/List_of_Intel_Celeron_microprocessors

-- 
I solemnly swear that I'm up to no good, http://data.startrek.or.id
things left unsaid, http://ryosaeba.wordpress.com


-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[ITCENTER] Sent Item Microsoft Outlook

2006-07-20 Terurut Topik Rihart Manurung
Dear IT'ers

Kenapa ya di t4 saya ada user yg menggunakan Microsof Outlook di Sent
Itemnya semua berubah jadi Plain Teks padahal waktu kirim dalam bentuk HTML.

Apa ada settinganya yg kurang?

Regards
***
Rihart Manurung
http://batakcyber.multiply.com
http://hart21.multiply.com
fs : [EMAIL PROTECTED]
[EMAIL PROTECTED]
YM : my_rihart / rihart_manroe



[Non-text portions of this message have been removed]



-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [ITCENTER] beda Pentium Celeron Pentium-M Celeron

2006-07-20 Terurut Topik sangwaktu
bang ryo,

jadi bisa dibilang kalau Celeron Pentium M itu 'sederajat' dengan PIII?

rgds,
am

*trims.untuk.responnya*
.
- Original Message - 
From: Ryo Saeba [EMAIL PROTECTED]
Subject: Re: [ITCENTER] beda Pentium Celeron  Pentium-M Celeron


 On 7/21/06, sangwaktu [EMAIL PROTECTED] wrote:
 celeron M itu berdasarkan pentium M, yang pada gilirannya berdasarkan
 pentium III. harap diingat bahwa pentium III dan pentium IV sudah
 sangat berbeda, bisa dikatakan pentium IV sama sekali berbeda / tidak
 berbasiskan pentium III.



-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





RE: [ITCENTER] beda Pentium Celeron Pentium-M Celeron

2006-07-20 Terurut Topik Denis Arifn
Kalo dibilang sederajat, mungkin Celeron Pentium M 'agak' diatas dari PIII.
Tapi dibawah dari PIV mas..

 

-Original Message-
From: ITCENTER@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of sangwaktu
Sent: Friday, July 21, 2006 11:08 AM
To: ITCENTER@yahoogroups.com
Subject: Re: [ITCENTER] beda Pentium Celeron  Pentium-M Celeron

 

bang ryo,

jadi bisa dibilang kalau Celeron Pentium M itu 'sederajat' dengan PIII?

rgds,
am

*trims.untuk.responnya*
.
- Original Message - 
From: Ryo Saeba [EMAIL PROTECTED] mailto:ryosaeba%40gmail.com com
Subject: Re: [ITCENTER] beda Pentium Celeron  Pentium-M Celeron

 On 7/21/06, sangwaktu [EMAIL PROTECTED] mailto:sangwaktu%40gmail.com
com wrote:
 celeron M itu berdasarkan pentium M, yang pada gilirannya berdasarkan
 pentium III. harap diingat bahwa pentium III dan pentium IV sudah
 sangat berbeda, bisa dikatakan pentium IV sama sekali berbeda / tidak
 berbasiskan pentium III.

 



[Non-text portions of this message have been removed]



-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [ITCENTER] Download free Adobe Illustrator

2006-07-20 Terurut Topik oky ardiyanto
Sore,

Kalo mau yang gratis dan portable bisa coba dari
www.portableapps.com(portable gimp sejenis adobe photoshop) atau
www.portablefreeware.com (x-inkscape sejenis adobe illustrator atau
coreldraw).

oky
http://oky.or.id

On 7/20/06, Natureza [EMAIL PROTECTED] wrote:

   coba aja ke www.download.com / www.click-now.com.


 On 7/20/06, roguf 0nly.. [EMAIL PROTECTED] rgumyraf%40gmail.com
 wrote:
 
  Temen2 bisa minta tlng, free download Adobe Illustrator situsnya dmn yaa
  ??
 
  Thx be 4.
 
 
  [Non-text portions of this message have been removed]
 
 
 
 
 
 
  --

  www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia
  Info, Gabung, Keluar, Mode Kirim : [EMAIL 
  PROTECTED]itcenter-help%40yahoogroups.com
  :: Hapus bagian yang tidak perlu (footer, dst) saat reply! ::
  ## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
  $$ Iklan/promosi : www.itcenter.or.id/sponsorship $$
 
  [@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id
 
 
  Yahoo! Groups Links

 
 
 
 
 
 
 
 

 [Non-text portions of this message have been removed]

  



[Non-text portions of this message have been removed]





-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[ITCENTER] pdf files

2006-07-20 Terurut Topik William Francis
...

-
Groups are talking. Weacute;re listening. Check out the handy changes to 
Yahoo! Groups. 

[Non-text portions of this message have been removed]





-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[ITCENTER] Re: sms di web

2006-07-20 Terurut Topik azagazig
hallo it'ersss.
tentang sms di web, jadi ingat waktu proyek yang menggunakan media sms
Dari pengalaman saya, klo pake web tidak ada kerjasama dengan content 
providernya (biasanya tergantung kesepakatan antar content dgn content 
provider (cp)). Tapi CP akan menyediakan web monitoring trafic sms 
yang bisa kita akses setiap saat. Biasanya web yang menampilkan 
fasilitas sms, sifatnya independent, tidak berhubungan dengan web 
trafic monitoring tadi., mudah2an info ini bermanfaat, 
Mau bikin quizz berhadiah ya ... HAti2 MUI udah buka statment 
pelarangan akan quiz2 berhadiah lho, tapi masih dalam 
pembahasan...  









-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [ITCENTER] beda Pentium Celeron Pentium-M Celeron

2006-07-20 Terurut Topik Ryo Saeba
On 7/21/06, sangwaktu [EMAIL PROTECTED] wrote:
 bang ryo,

 jadi bisa dibilang kalau Celeron Pentium M itu 'sederajat' dengan PIII?

nggak lah. pentium M saja sudah jauh lebih cepat ketimbang pentium
III. itu lebih cocok dibilang turunan. pentium III lalu pentium M lalu
celeron M.

-- 
I solemnly swear that I'm up to no good, http://data.startrek.or.id
things left unsaid, http://ryosaeba.wordpress.com


-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [ITCENTER] pake ip manual kok ngga konek internet

2006-07-20 Terurut Topik Firdaus

On Thursday 20 July 2006 12:14, Steph wrote:

pertama liat range ip yang diijinkan , liatnya dimana kalo make router coba 
liat settingan ethernet router yang dijadikan sebagai gateaway , misal :
gw : 10.0.1.1 255.255.255.0 == range ip yang diijinkan dari 10.0.1.2 = 
10.0.1.254 , (10.0.1.0 = network ip , 10.0.1.255 = broadcast ip) untuk 
lebih mudahnya cari subnet calculator di google, ip yang disetting tidak 
boleh ip broadcast dan ip network .
kedua apakah ada settingan yang menjadikan server dhcp itu sebagai server 
gateaway dari local networknya untuk bisa konek ke internet ? ini juga musti 
dilihat , bila ada otomatis seluruh client harus melalui server dhcp tersebut 
untuk bisa ke internet
mudah mudahan bisa sedikit membantu.








 Pakai Router apa pak.

 Saya beberapa kali mengalami masalah yang sama seperti ini.
 Kadang sebaliknya pak, nggak tentu kadang yang manual nggak mau yang
 otomatis juga nggak mau ?

 Sejak saya ganti ke Router Linksys saya berkali-kali alami ini.
 Sebelumnya tidak pernah, nah ada yang bisa kasih solusi nggak ?

 - Original Message -
 From: aku anton [EMAIL PROTECTED]
 To: ITCENTER@yahoogroups.com
 Sent: Thursday, July 20, 2006 11:23 AM
 Subject: [ITCENTER] pake ip manual kok ngga konek internet


 saya lgi bingung nech, no ip yang saya buat dengan manual ngga mau konek
 internet, tapi kalo pake otomatis dia mau konek, gimana ya cara
 ngatasinya???
   kmren saya coba pake otomatis dulu trus saya pake ke manual ngga bsa
 lagi. tolong ya. trims



   anton setiawan
 surabaya
 antonline.l1h.net


 -
 How low will we go? Check out Yahoo! Messenger's low  PC-to-Phone call
 rates.

 [Non-text portions of this message have been removed]






 --
 www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia
 Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED]

 :: Hapus bagian yang tidak perlu (footer, dst) saat reply! ::

 ## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
 $$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

 [@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id


 Yahoo! Groups Links

-- 
Rgrds
Firdaus
[EMAIL PROTECTED]






Disclaimer: Although this message has been checked for all known viruses
 using Trend Micro InterScan Messaging Security Suite, Bukopin 
   accept no liability for any loss or damage arising
   from the use of this E-Mail or attachments.





-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [ITCENTER] beda Pentium Celeron Pentium-M Celeron

2006-07-20 Terurut Topik Ryo Saeba
On 7/21/06, Denis Arifn [EMAIL PROTECTED] wrote:
 Kalo dibilang sederajat, mungkin Celeron Pentium M 'agak' diatas dari PIII.
 Tapi dibawah dari PIV mas..

tidak bisa dibilang begitu.

pentium M, yang sekarang menjadi core solo dan core duo, itu hasil
pengembangan dari pentium III, dan dengan clock rating yang lebih
rendah dianggap setara kinerjanya dengan pentium IV atau pentium basis
netburst yang lebih cepat 1 GHz clock ratingnya.

jadi, celeron M itu adalah turunan dari pentium M. celeron 4 adalah
turunan dari pentium IV (netburst).

-- 
I solemnly swear that I'm up to no good, http://data.startrek.or.id
things left unsaid, http://ryosaeba.wordpress.com


-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [ITCENTER] beda Pentium Celeron Pentium-M Celeron

2006-07-20 Terurut Topik bAKT
Kalo mungkin kemampuan celeron yang sekarang mungkin malah jauh lebih
unggul dari P3 apalagi mobile m celeron, yang hemat daya.
Tapi celeron sendiri sebenernya dibuat untuk kelas value.. sama seperti
sempron di produknya amd..

Walupun mungkin bisa lebih kencang dari P3 tetap saja derajatnya murahan
he he he... :P


sangwaktu wrote:
 bang ryo,

 jadi bisa dibilang kalau Celeron Pentium M itu 'sederajat' dengan PIII?

 rgds,
 am

 *trims.untuk.responnya*
 .
 - Original Message - 
 From: Ryo Saeba [EMAIL PROTECTED]
 Subject: Re: [ITCENTER] beda Pentium Celeron  Pentium-M Celeron


   
 On 7/21/06, sangwaktu [EMAIL PROTECTED] wrote:
 celeron M itu berdasarkan pentium M, yang pada gilirannya berdasarkan
 pentium III. harap diingat bahwa pentium III dan pentium IV sudah
 sangat berbeda, bisa dikatakan pentium IV sama sekali berbeda / tidak
 berbasiskan pentium III.
 



   

Send instant messages to your online friends http://asia.messenger.yahoo.com 


-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [ITCENTER] Tanya PHP??

2006-07-20 Terurut Topik leon grosso


kalau pake database gampang..

contoh pake sql server

tinggal pake keyword datediff ...




- Original Message -
From: kasiman peranginangin [EMAIL PROTECTED]
To: ITCENTER@yahoogroups.com
Sent: Thursday, July 20, 2006 12:42 PM
Subject: [ITCENTER] Tanya PHP??



 Bagaimana caranya untuk mengetahui selisih antara dua tanggal? misalnya
lahir tanggal 17-08-1945 mau tahu umurnya sekarang ... tahun ... bulan  ...
hari.
   Kalau bisa ada rekan-rekan yang bantu beri skripnya pada PHP yah.
   Please help...!!!


 -
 Do you Yahoo!?
  Everyone is raving about the  all-new Yahoo! Mail Beta.

 [Non-text portions of this message have been removed]



 --
 www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia
 Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED]
 :: Hapus bagian yang tidak perlu (footer, dst) saat reply! ::
 ## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
 $$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

 [@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id


 Yahoo! Groups Links













 Disclaimer: Although this message has been checked for all known viruses
  using Trend Micro InterScan Messaging Security Suite, Bukopin
accept no liability for any loss or damage arising
from the use of this E-Mail or attachments.








Disclaimer: Although this message has been checked for all known viruses
 using Trend Micro InterScan Messaging Security Suite, Bukopin 
   accept no liability for any loss or damage arising
   from the use of this E-Mail or attachments.




-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[ITCENTER] Promosi produk dalam Internet

2006-07-20 Terurut Topik vidi Prast
Mohon Bantuannya :
   
  saya memiliki home industri bidang fotografi. saya ingin publikasikan dalam 
internet
  tapi saya bingung:
  1. gimana cara mempublikasikan dalam internet?
  2. apakah harus punya domain sendiri?
  3. apakah ada yang gratis alias nebeng untuk promosi barang saya?
  4. Apakah bisa hanya pake frontpage untuk layaut produk saya?
  trim atas bantuannya...
   


-
See the all-new, redesigned Yahoo.com.  Check it out.

[Non-text portions of this message have been removed]






-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [ITCENTER] email

2006-07-20 Terurut Topik hengki -
Kalo email elu yang masuk banyak, and ukurannya cukup besar apalagi pake 
attachment file yang besar lebih baik pake speedy
  tapi kalo sebaliknya lebih baik pake dial up 

Steph [EMAIL PROTECTED] wrote:
  Tergantung dari penggunaan pak.
Kalau cuma buat check email seperti outlook aja mah jelas lebih murah 
Dial_UP.

- Original Message - 
From: Hendra Arif [EMAIL PROTECTED]
To: ITCENTER@yahoogroups.com
Sent: Thursday, July 20, 2006 1:48 PM
Subject: [ITCENTER] email

 friend gw mau tanya, perbandingan harga untuk dial up dengan speedy 
 mahalan mana ya? paling gw butuh buat email(outlook) aja

 thx
 Hendra Arif

 [Non-text portions of this message have been removed]






 -- 
 www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia
 Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED]
 :: Hapus bagian yang tidak perlu (footer, dst) saat reply! ::
 ## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
 $$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

 [@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id


 Yahoo! Groups Links






 



 


-
Do you Yahoo!?
 Get on board. You're invited to try the new Yahoo! Mail Beta.

[Non-text portions of this message have been removed]






-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [ITCENTER] ADMIN: Dua tips agar posting anda muncul cepat di milis

2006-07-20 Terurut Topik Sam Huget
wah..bung ADMIN.. makasih saya ga perlu dimoderasi lagi.. :)

Kristy Whanarahardja [EMAIL PROTECTED] wrote:  
Rekan2 ITCENTER,

Milis ITCENTER semakin besar, kalau belum mau disebut sbg milis IT
terbesar di Indonesia, dgn anggota 11500+, posting hampir 100 per hari.
Telah diketahui bahwa semata2 demi kenyamanan, ketertiban, dan kebersihan
milis, diberlakukan aturan2 milis dan status milis yg diset
semi-moderated.
Para pengurus/moderator milis hampir setiap hari dan setiap saat melakukan
tugasnya utk menyaring posting2 yg masuk. Dgn kriteria tertentu
sekali-sekali memonitor anggota AKTIF (sering berpartisipasi) yg layak utk
dicabut status moderasinya, dgn kata lain email dari anggota tsb tdk lagi
dimoderasi tapi langsung didistribusikan ke milis.

Kriteria apa? Dua tips (2K) agar email rekan2 semua dicabut status
moderasinya:

- Ketertiban: SELALU ikuti aturan milis (dikirimkan ke milis secara
periodik)
- Kebersihan: SELALU merapikan dan menghapus bagian yg tdk perlu pada saat
membalas email anggota lain

Pengurus tetap berhak utk menset kembali status moderasi atau bahkan
memberikan sanksi apabila anggota melanggar.

PS: Kalau sudah menerapkan 2K tsb, jgn merengek2 ke moderator ;) Moderator
akan mempertimbangkan utk mencabut status moderasi anggota tsb setelah
melihat konsistensinya (bukan cuma satu dua kali saja).

Salam,
Pengurus ITCENTER


Ce message ?lectronique et tous les fichiers attach?s sont confidentiels et 
destin?s exclusivement ? l'usage de la personne ? laquelle ils sont adress?s. 
Si vous n'?tes pas le destinataire de ce message, merci d'avertir ou de le 
retourner ? son ?metteur et d?truire ce message ?lectronique et tous les 
fichiers attach?s de votre syst?me informatique. La publication, l'usage, la 
distribution, l'impression ou la copie non autoris?e de ce message et des 
attachements qu'il contient sont strictement interdits.

This e-mail and any attachment are confidential and intended solely for the use 
of the individual to whom it is addressed. If you are not the intended 
recipient, please telephone or email the sender and delete this message and any 
attachment from your system. Unauthorized publication, use, dissemination, 
forwarding, printing or copying of this e-mail and its associated attachments 
is strictly prohibited.

Este correo electr?nico y todos los ficheros adjuntos son confidenciales y 
destinados exclusivamente al uso de la persona a la cual han sido remitidos. 
Si Usted no es el destinatario del mensaje, agradecemos advierta al remitente y 
elimine el mensaje y sus adjuntos de su sistema.
La publicaci?n, distribuci?n, impresi?n o copia no autorizada de este mensaje y 
de sus adjuntos queda estrictamente prohibida.


[Non-text portions of this message have been removed]



-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 


Yahoo! Groups Links










-
Yahoo! Music Unlimited - Access over 1 million songs.Try it free. 

[Non-text portions of this message have been removed]





-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[ITCENTER] Jenis Virus apa ya...

2006-07-20 Terurut Topik MR.Z
IT'ers, dikantor gw ada 1 PC yang aneh, gw yakin itu virus tapi gw bingung 
jenisnya apa?
  ciri2nya sbb:
  1.memblock AV apapun yang ada DiPC, termasuk install AV
  2.klo masuk Save mode pasti ngerestart
  3.klo gunakan tool search, desktop akan diblock ama virus tersebut
  4.memblock IE,system 32,regedit,msconfig.
   
  Ada solusi dari Teman2,oh iya PC nya pake OS XP (sekedar Info) ?
   
  Thank's B4


-
Yahoo! Music Unlimited - Access over 1 million songs.Try it free. 

[Non-text portions of this message have been removed]





-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[ITCENTER] makasih saran ya 'bout ip

2006-07-20 Terurut Topik aku anton
makasih ya sgla masukkan yang diberikan dan no ip ku dah tembus. 


 
  anton setiawan 
surabaya 
antonline.l1h.net


-
Groups are talking. Weacute;re listening. Check out the handy changes to 
Yahoo! Groups. 

[Non-text portions of this message have been removed]





-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[ITCENTER] ip pake manual nggak mau konek internet

2006-07-20 Terurut Topik %%o_o%%
itu dikarenakan ip dari servernya menggunakan DHCP.
coba dikonfirmasikan ke admin / isp nya aja.


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 





-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[ITCENTER] tanya badan pelatihan

2006-07-20 Terurut Topik Susan
Dear ITers,

Ada nga sih suatu badan yang mengadakan pelatihan mengenai networking dan 
membuat web. (bukan inhouse training) kalau ada, mohon informasinya. lewat 
japri saja.

Regards,
susan

[Non-text portions of this message have been removed]





-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[ITCENTER] Jenis Virus apa ya...

2006-07-20 Terurut Topik MR.Z
IT'ers, dikantor gw ada 1 PC yang aneh, gw yakin itu virus tapi gw bingung 
jenisnya apa?
  ciri2nya sbb:
  1.memblock AV apapun yang ada DiPC, termasuk install AV
  2.klo masuk Save mode pasti ngerestart
  3.klo gunakan tool search, desktop akan diblock ama virus tersebut
  4.memblock IE,system 32,regedit,msconfig.
   
  Ada solusi dari Teman2,oh iya PC nya pake OS XP (sekedar Info) ?
   
  Thank's B4


-
Do you Yahoo!?
 Get on board. You're invited to try the new Yahoo! Mail Beta.

[Non-text portions of this message have been removed]





-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[ITCENTER] ada lowongan nngak ......

2006-07-20 Terurut Topik rac_robert

butuh kerja 

ahli 
- sysadmin os
- sysadmin network
- citrix


thanks
regards
robert








-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[ITCENTER] tanya : ini virus apaaan yah????!!

2006-07-20 Terurut Topik Dela Hardi Kurniawan
morning semuanya :)

saya mo tanya tentang virus.
dikantor ada kompi yg kena virus ( kompinya WinXP Pro ) dengan ciri
- meminimize aplikasi yg akan digunakan
- menghilangkan - system restore, folder option, search option
- regedit tidak hilang dan masih bisa digunakan
kemudian setelah aku kutak-kutik ..
ketemu foder yg mencurigakan
--- - new folder34 kb
  - renova.exe34 kb
  - nova.exe34 kb
  - emma.exe34 kb
* yg dah dicoba
coba scan pke AV dan kill process ngg berhasil :{ -- lewat safe mode
lalu HD aku copot dan discan kekompi lain tetp ngg terdeteksi
(aku pake norton AV )
sebenarnya ini virus apaan yah??
minta sharing donk cara ngapusnya

mohon bantuannya dari mas / mba / Bpk / Ibu sekalian:)
sebelunya saya ucapkan trima kasih yg sebanyak - banyaknya

salam 

kodel :)







-
Do you Yahoo!?
 Next-gen email? Have it all with the  all-new Yahoo! Mail Beta.

[Non-text portions of this message have been removed]





-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[ITCENTER] Share TV Cable

2006-07-20 Terurut Topik Budi Kelana
Rekan2, saya mau tanya tentang TV Cable nih.

 

Kantor saya ada Kabelvision, bos maunya tiap computer di kantor dapat buka
kabelvision menurut channel yang diinginkan masing2 orang.

 

Kira2 bagaimana ya solusinya ? 

Apakah ada alat untuk mengubah signal kabelvision menjadi multichannel
streaming ?

 

Thx.

 

Regards,

Budi Kelana



[Non-text portions of this message have been removed]






-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[ITCENTER] A105-S322

2006-07-20 Terurut Topik Agus Kianto
Dh,

 

 

Tolong dong ada yg punya stock TOSHIBA A105-S322 kami butuh 2 unit

JAPRI yach atau hub di 021-9195901

 

 

 

Terima kasih,

Agus Kianto

 

 

 

 



[Non-text portions of this message have been removed]






-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[ITCENTER] File Hilang di flashdisk dan Trojan horse IRC/BackDoor.SdBot.JKA

2006-07-20 Terurut Topik Budy Superyadi
Hi guys, aku ada masalah dengan flashdisk.
Aku pake 128 MB Kingston flashdisk, setiap nyimpen file (umumnya text seperti 
.doc .txt. , dll) ke flashdisk pas di colok di kompie lain, file tersebut tidak 
ada :-(
Padahal pernah juga dicoba dicopy beserta folder-nya, tapi foldernya ada, 
file-nya tidak ada. Kira-kira penyebabnya apa ya? Udah di-scan virus pake 
norton terbaru dan AVG tapi tidak ada virus, udah di-format berkali-kali, tetap 
aja kejadian serupa terjadi. Yang belum dicoba di partisi ulang. Bisa ga ya 
flashdisk di partisi, lewat dos (fdisk) misalnya? Atau ada cara lain untuk 
mengatasi masalah ini dan cara mempartisi flashdisk?
Dan satu lagi, PC aku terinveksi Trojan horse IRC/BackDoor.SdBot.JKA, ada di 
C:\WINDOWS\system32\cool.exe dan f.exe. File tersebut sudah dihapus, tapi 
selalu ada lagi. Gimana sih cari ngilanginnya? Sekarang aku paku Antivirus AVG 
Free version. Waktu scan virus, file C:\WINDOWS\system32\host error reading, 
tapi dicari di folder tersebut gak ada nama file tersebut. Ada yang punya 
pengalaman seperti aku ga?

Thanks b4!

Budy Superyadi
--
PT. QNet Indonesia
Lippo Plaza, Jl. Jend Sudirman kav. 25
Telp. +62 (021) 5291 3781
Fax.  +62 (021) 5291 3766 


[Non-text portions of this message have been removed]





-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[ITCENTER] Vacancy : RPG/400 Developer AS/400 Administrator

2006-07-20 Terurut Topik Dini Andrini
 
Emerio Corporation is a leading IT Consulting and Services Company. We are a 
consolidation of the group companies GlobeSoft and R  D Team Works. 
Incorporated in 1997, headquartered in Singapore, we employ over 800 dedicated 
and highly skilled professionals across offices in Singapore, India, Malaysia, 
Thailand, China, Indonesia and UK. Our business is structured around six 
service offerings, which are Managed Services, Consulting Services, Software 
Services, Professional Services, Network Services and BPO Services. 

 

Emerio Indonesia will focus on the Banking Solutions practice and would tap the 
business potential in IT Services within the financial Services Industry. The 
Indonesian operation also serves as a valued resourcing base for Emerio's 
resourcing requirements. 

 

In support of our operation in Indonesia as part of Emerio's strategy to 
strengthen its presence in Asia, we are looking for young and experienced 
Professional to fulfill following positions:

 

RPG/400 Developer (3 posiitions)

 

Requirements:

*   Graduate Degree in Information Technology or related major from 
reputable university
*   Has minimum 3 years of programming experience using RPG/400 
*   Has banking background experience would be an advantage advantage
*   
Has good communication skills 
*   
English proficiency is a must, both is oral and written

 

AS/400 System Administrator  (2 positions)

*   Graduate Degree in Information Technology or related major from 
reputable university
*   Has minimum 3 years of relevant hands-on experience in IBM AS/400 
System Administrator

*   Has banking background experience would be an advantage advantage
*   
Has good communication skills 
*   
English proficiency is a must, both is oral and written
*   
Service oriented behavior and communication to internal and external 
contacts 

 

The position would be for 1 year contract but would be extended depend on the 
Resources Performance and Clients requirement.

 

If you consider yourself as a strong and convincing personality with total 
dedication to quality and customer satisfaction, you are welcome to be part of 
Emerio family. Please kindly send your comprehensive resume to:


[EMAIL PROTECTED]



We regret that only shortlisted candidates will be notified

 

 



[Non-text portions of this message have been removed]



-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [ITCENTER] nanya masuk bios di laptop

2006-07-20 Terurut Topik Tommy
Dah coba Alt+F1??
Atau Ctrl+F1 ya..
hmm.. pncet 3-3nya aja deh, biar pasti

- Original Message - 
From: paul dermawan [EMAIL PROTECTED]
To: ITCENTER@yahoogroups.com
Sent: Wednesday, July 19, 2006 4:02 PM
Subject: [ITCENTER] nanya masuk bios di laptop


Saya punya laptop merek toshiba tecra TE 2100 sedang rusak file systemnya
jadi saya mau nginstal ulang nich tapi binggung caranya gima untuk masuk
distartupnya


-
Talk is cheap. Use Yahoo! Messenger to make PC-to-Phone calls.  Great rates
starting at 1¢/min.

[Non-text portions of this message have been removed]






-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED]
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! ::
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id


Yahoo! Groups Links








-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[ITCENTER] VIRUS

2006-07-20 Terurut Topik setia hendrayana
dear all..
minta tolong dong.lieur pisan
saya menggunakan server mail (postfix) +
spammassain+clamav+mysql+squirellmail ..dari kemarin server saya ngirim
email sampe 100 kali ke orang lain (yang saya takutkan email dari kantor
saya nantinya diblok)..tapi domain yang dipakai bukan domain kita...( kita
pakai domain @abc.co id yang dipakai untuk ngirim domain nya :  @xxx.biz )
sehari bisa sampe 100 email yg dikirim keluar.
- apakah ini virus ato sejenis nya?
- Gimana cara menanggulaginya?

Thanks
-Ndra-






-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/