December 23rd, 2008
Looking for mini laptop? Netbook becoming popular now, started by the first Asus Eee PC 701 hit the market. Today there is a huge choice of low-cost highly portable and efficient mini laptops.

What is Netbook?
A netbook is a light-weight, low-cost, energy-efficient, highly portable laptop suitable for web browsing, email and general purpose applications — primarily noted for its small form factor. Netbooks typically have less processing power than full-featured notebooks and limited ability to run resource-intensive operating systems. (Wikipedia)
Read the rest of this entry »
Tags: asus eee, comparison, mini laptop, msi wind, netbook
Posted in Review | 2 Comments »
December 22nd, 2008
I’ve found the way to read/write ID3Tag from MP3 files with VB Script.

Requirement
In order to run the script, you must first download the CDDBControl.dll library file. You can download it here.
Note: it also support WMA format
Click read more to see details.
Read the rest of this entry »
Tags: cddbcontrol, id3tag, mp3, vbscript, wma
Posted in Programming | No Comments »
December 21st, 2008
I’ve created a javascript code to show sliding image on the web (youtube-like video preview).

Requirement
To use the script you need an HTML and Javascript Editor, I’m using Adobe Dreamweaver. You may need 6 jpg image files (to try an example below), and ofcourse a web browser.
Click read more for see the script.
Read the rest of this entry »
Tags: javascript, sliding image
Posted in Programming | 4 Comments »
December 20th, 2008
Nokia released Internet Radio, a symbian software to listen live internet radio. It is fully working on Nokia S60 devices. It comes with a huge directory of compatible radio stations.

Warning: Expensive GPRS cost may apply if you use packet data connection, use WLAN connection instead
The application supports SHOUTcast streaming audio playback (MP3 and AAC+). It also supports local playback of audio files in the following formats: MP3, AAC, eAAC+, MP4, M4A, WMA, 3GPP, AMR, and WAV.
You can download it here.
Requirements
The known list of supported phones:
- S60 3rd Edition
Nokia 3250, E60, E61, E70, N71, N73, N80, N82, N91, N92, N93
- S60 2rd Edition, Feature Pack 3
Nokia N70, N72, N90
- S60 2rd Edition, Feature Pack 2
Nokia 6630, 6680, 6681, 6682
- Other S60 phone may also supported, just give it a try
Click read more to see local stations list.
Read the rest of this entry »
Tags: internet radio, internet radio jakarta, local station, nokia, shoutcast
Posted in Mobile, Tips and Trick | No Comments »
December 19th, 2008
Nokia just announced the latest N-series phone N97. It is equipped with large 3.5″ bright nHD (640 x 360 resolution 16:9 aspect ratio) TFT display touch screen. It’s second nokia device which have touch screen after Nokia 5800 XpressMusic. Running S60 5th Edition platform with Symbian OS v9.4

Specification
Display: 360 x 640 24 bit
Size: 117.2 x 55.3 x 15.9
Weight: 150 g
Input: Qwerty & touch screen
Band: GSM 1800, 1900, 850, 900, WCDMA 1900, 2100, 850, 900
Extra Features: TV Out
GPS: A-GPS
Camera: CMOS 5.0 MP Auto Focus, Carl Zeiss Optics, Flash
Video Playback Formats: H.264/AVC, MPEG-4, RealVideo 7, 8, 9/10, WMV 9
Audio Playback Formats: AAC, eAAC, eAAC+, MP3, WMA
Internal Storage: 32 GB
Memory Card: Micro SD 16 GB included
Connectivity: Bluetooth 2.0, Micro USB, Nokia AV 3.5mm, UPnP, USB 2.0, WLAN
The phone is a long waited by Nokia fans, a touch screen phone from Nokia finally. Nokia now have a weapon to fight Apple’s iPhone, HTC, and Samsung’s latest touch screen devices.
Source: Forum Nokia
Tags: nokia, touch screen
Posted in Mobile, News | No Comments »
December 19th, 2008
Microsoft Windows XP Pro has built in Web Server called Internet Information Service (IIS). In order to use the feature, make sure your IIS service already activated:
- Right click on My Computer, choose Manage
- Expand tree Services and Applications
- If you see Internet Information Services item, then your IIS service is already installed
IIS Installation
To install IIS Service, follow these instructions to activate it:
- Go to Control Panel > Add or Remove Programs
- Open Add/Remove Windows Components, tick on Internet Information Services (IIS)
- Click Next button until it finished

Create a Virtual Server
Check on the Web Sites folder in IIS management console, you may see only “Default Web Site”. If you are a web developer, sometime you need to have another separate web servers. Of course you can also mount a virtual directory to the server, but it will never have root path.
Read the rest of this entry »
Tags: adminscript, iis, vbscript, virtual server
Posted in Programming, Tips and Trick | No Comments »
December 18th, 2008
If you’re browsing behind Microsoft Proxy Server, you’ll be familiar with NTLM authentication prompt your username and password. It’s pretty annoying as you need to type it everytime you open the browser.

Even some Internet application doesn’t support NTLM authentication, for example like Download Accelerator. Some browser like older versions of Firefox asking you the password everytime it load a page.

Fortunately, there is some application that can solve the problem. It’s called NTLM Authorization Proxy Server (NTLMAPS), a proxy software written in Python that allows you to authenticate via Microsoft Proxy Server using NTLM protocol. In order to use the software in Windows, you must install python first or you can use Windows version of it (a standalone executable that does not require python to be installed compiled using py2exe).

Main Features of NTLM Authorization Proxy Server
- supports NTLM authentication via parent proxy server (Error 407 Proxy Authentication Required)
- supports NTLM authentication at web servers (Error 401 Access Denied/Unauthorized)
- supports translation of NTLM scheme to standard “Basic” authentication scheme
- supports the HTTPS ‘CONNECT’ method for transparent tunneling through parent proxy server
- has ability to change arbitrary values in client’s request headers
- supports unlimited number of client connections
- supports connections from external hosts
- supports HTTP 1.1 persistent connections
- stores user’s credentials in config file or requests password from a console during the start time
- supports intelligent failure detection and failover between multiple upstream proxies
Click read more to see the instructions.
Read the rest of this entry »
Tags: authentication, cntlm, ntlm, ntlmaps
Posted in Tips and Trick | 4 Comments »
December 17th, 2008
SSL is short for Secure Sockets Layer, a protocol developed by Netscape for transmitting private documents via the Internet. SSL uses a cryptographic system that uses two keys to encrypt data – a public key known to everyone and a private or secret key known only to the recipient of the message. Both Netscape Navigator and Internet Explorer support SSL, and many Web sites use the protocol to obtain confidential user information, such as credit card numbers. By convention, URLs that require an SSL connection start with https instead of http.

SHTTP
Another protocol for transmitting data securely over the World Wide Web is Secure HTTP (S-HTTP). Whereas SSL creates a secure connection between a client and a server, over which any amount of data can be sent securely, S-HTTP is designed to transmit individual messages securely. SSL and S-HTTP, therefore, can be seen as complementary rather than competing technologies. Both protocols have been approved by the Internet Engineering Task Force (IETF) as a standard.
Click read more to see full article.
Read the rest of this entry »
Tags: encryption, protocol, security, ssl
Posted in Tips and Trick | No Comments »
December 16th, 2008
An Internet Connection can be used by several computers using Internet Connection Sharing (ICS) service built-into Windows XP. ICS service allow two or more networked computers to share a single Internet connection, one computer act as host and another act as client.
It’s easy to set up, just follow the steps you should be able to get it right the first time.

Requirement
- At least two computers (as host and as a client)
- A networking device (could be ethernet card or WiFi) on each computer
- If you’re sharing a broadband internet connection (DSL, cable, or other ethernet based connection), the host computer must have two network device (for example, you can connect the host to internet via ethernet cable and share it to other using WiFi)
- The network must be cabled correctly (except using WiFi)
- One computer (acting as host) must have a working internet connection
There is no minimum connection speed, but you should keep in mind that when two users are downloading using the shared connection simultaneously (the worst-case scenario), each user will experience half of the original performance. In other words, you probably don’t want to bother sharing a 14.4k analog modem connection.
Click read more to see the instructions.
Read the rest of this entry »
Tags: ics, networking, sharing internet connection, wifi
Posted in Tips and Trick | No Comments »
December 15th, 2008
In this tutorial, we’ll teach you how to use Wi-Fi enabled computers/laptops to communicate with each other directly without an Access Point. This method is also known as Ad-hoc mode wireless networking. Operating in ad-hoc mode allows all wireless devices within range of each other to discover and communicate in peer-to-peer without involving central access points.

To follow the tutorial, you just need a Wi-Fi card in each computer. If you are using a laptop, usually it’s already have Wi-Fi device built in.
Click on read more to see instructions.
Read the rest of this entry »
Tags: adhoc, networking, peer to peer, wifi, wireless
Posted in Tips and Trick | 4 Comments »