Text

December 18, 2007

Java Dial-up Networking Package For Windows


JDUN Download

JDUN provides a dial-up networking (DUN) Java interface for use with Windows operating systems. Microsoft™ remote access services (RAS) can be accessed such as enumerating DUN phonebook entries, dialing connections, and hanging up connections.

You can now add dial-up capabilities to your Java application with ease. JDUN also allows any type of connection provided through Windows Dial-up Networking. This includes modem, VPN, broadband, serial, parallel, and other connections.

JDUN provides the following functionality:

  • Create entry (dial-up, VPN, etc)
  • Edit entry
  • Delete entry
  • Rename entry
  • Get all entry names
  • Dial entry with defaults or override username / password / phone number
  • Dial non-entry (simple modem connection)
  • Hang up connection
  • Detect entry connection
  • Detect internet connection
  • Retrieve local IP and remote server IP from a PPP dial-up connection allowing the establishment of a socket connection

Java Runtime Exec Example

import java.io.*;

class RunProc {
public static void main(String args[]) {
try {
Runtime rt = Runtime.getRuntime();
Process pr = rt.exec("cmd /c dir");

InputStream inStd = pr.getInputStream();
InputStreamReader inStdR = new InputStreamReader(inStd);
BufferedReader bStd = new BufferedReader(inStdR);

String line=null;

while((line=bStd.readLine()) != null) {
System.out.println(line);
}
int exitVal = pr.waitFor();
System.out.println("Exited with error code "+exitVal);

} catch(Exception e) {
System.out.println(e.toString());
e.printStackTrace();
}
}
}

December 15, 2007

Melihat Spesifikasi CPU Menggunakan CPU-Z

CPU-Z adalah freeware yang menampilkan informasi spesifikasi devices pada komputer.

CPU
  • Name and number.
  • Core stepping and process.
  • Package.
  • Core voltage.
  • Internal and external clocks, clock multiplier.
  • Supported instructions sets.
  • Cache information.
Mainboard
  • Vendor, model and revision.
  • BIOS model and date.
  • Chipset (northbridge and southbridge) and sensor.
  • Graphic interface.
Memory
  • Frequency and timings.
  • Module(s) specification using SPD (Serial Presence Detect) : vendor, serial number, timings table.
System
  • Windows and DirectX version.
DOWNLOAD

Pidgin Instant Messaging

Pidgin adalah client Instant Messaging multi-protocol yang dapat digunakan untuk semua IM account yang dimiliki dalam satu aplikasi

Pidgin Dapat Digunakan pada :

  • AIM
  • Bonjour
  • Gadu-Gadu
  • Google Talk
  • Groupwise
  • ICQ
  • IRC
  • MSN
  • MySpaceIM
  • QQ
  • SILC
  • SIMPLE
  • Sametime
  • XMPP
  • Yahoo!
  • Zephyr

Pidgin adalah free software. Lisensi oleh GNU General Public License (GPL) version 2.

Download

TranslatorXP Enterprise (portable)

Dapet link dari tetangga... :D

Translator untuk bahasa Indonesia, English, Bahasa Daerah...
- Translate bisa per alinea atau paragraf
- Portable (jadi ga usah nginstall...)
- Bekerja 100% pada windows XP
- Tolong jangan dikomersilkan, buat belajar aja.. :)

Download


credit : rusian

December 5, 2007

Kumpulan E-books Gratis...Free Ebooks...

Link untuk download e-books gratis tentang komputer.
diantaranya : pemrograman, linux, jaringan komputer, dan lain-lain...

kalo ada yang gratis,,, ngapain beli.....?! :D

Linknya : http://soft.51pcok.com/ebook/

Semoga bermanfaat... :)