Tadinya tak pikir lumayan susah, mesti seting segala macem, gak taunya pas langsung nyoba ternyata superb gampang 
Step2 nya mudah kok.
1. Nyalakan Lucid Lynxnya 
2. Colok Hape SE W950 dalam mode “Normal Mode”
3. Klik Icon koneksi lalu nanti akan muncul Mobile Broadband.
4. Klik aja tu Mobile Broadbandnya, nanti akan muncul instruksi yang intinya adalah untuk seting apn.
5. Karena saya menggunakan axis maka saya pilih axis 
6. Tunggu proses sebentar n viola ….. udah conect deh
7. Lounch Firefox n jalanin tes, waktu pertama kali saya gagal, setelah di cek ternyata proxynya tak seting punya kantor, setelah di no proxy langsung lancar jaya.
Semoga berguna, btw lagi bingung nyari broadband inet nih ….
December 11th, 2009
Wawan
Kabar gembira buat penggemar operamini, ternyata untuk versi 5 sudah diluncurkan beta2 nya. So gak pake lama langsung download aja dari w950, webnya di http://operamini.com/next/. Saran saya kalo mau ok langsung donlot dari hape jangan pake pc biar cocok tipenya.
Read more…
November 29th, 2009
Wawan
Opera has release new web browser Opera 10.10.
This is some unique feature in this version :
1. Opera Unite = Use applications to share content with others in a quick and easy way.
2. Opera Turbo = Boost your speed with our powerful servers to compress Web pages, so you get them faster.
3. Visual tabs = Drag the handle underneath the tabs to reveal thumbnails of your open Web pages.
4. Customizable Speed Dial = Get easy access to your favorite sites every time you open a new tab. Choose the layout and the background you prefer.
5. Opera Link = Synchronize your Speed Dial, bookmarks, notes and other useful data.
http://www.opera.com/browser/features/


When u want to make permalink or clean url in your website, u will need function code that will encode your link to that (except u using CMS
). The example for clean url > from http://www.myweb.com/a=post&b=1 become http://www.myweb.com/post/1 its more beauty and more friendly to search engine. Beside using this function u can using it with .htaccess and some mod_rewrite engine in Apache. U can see in my other article for that
. Lets see my simple code is :
/* clean url */
function permalink($stringurl) {
$url=parse_url($stringurl);
$strurl = basename($url['path'],".php").".";
$qstring = parse_str($url['query'],$vars);
while(list($k,$v) = each($vars)) {
$strurl .= $v.".";
}
$strurl .= "html";
return $strurl;
}
AJAX (shorthand for asynchronous JavaScript and XML) is a group of interrelated web development techniques used on the client-side to create interactive web applications. With AJAX, web applications can retrieve data from the server asynchronously in the background without interfering with the display and behavior of the existing page. The use of AJAX techniques has led to an increase in interactive or dynamic interfaces on web pages and better quality of Web services due to the asynchronous mode. Data is usually retrieved using the XMLHttpRequest object. Despite the name, the use of JavaScript and XML is not actually required, nor do the requests need to be asynchronous.
From : Wikipedia
Recent Comments