Free Android CakePHP GMaps Articles by Bali Web Design

September 24, 2008

Google Maps Mania

Filed under: google maps — Tags: — admin @ 10:25 pm

As become familiar with Google Map API coding, i would like to announce me as Google Maps Mania. We knew that since 2005, Google has release a beta version of Google Maps Service in February 2008 through its Labs Incubator. And on June 2005 Google Map API is released to all programmer around the world.

Using this great API, Google allowing programmer to create thousand of application using their Google Maps Services. At my first glance, the ability to toggle between street map and satellite view is amazing. For some country we can see a road map also.

Since 2007, i were involving with 2 Probypro‘s Project based on Google Maps API. One is known as Pop portal project and the other is Tourismausportal project.

Being involving with this 2 project is sharp my skill on Google Maps API. And because i am doing core code for this two application make me know that Google Maps API is great for building Map Application. And it is free for all.

So on next day i will post many article focus on Google Map API. You can find all topics related to Google Maps coding under google maps category

September 20, 2008

How to load javascript file on window on load

Filed under: html,javascript — Tags: , — admin @ 7:36 pm

Here is another way to load a javascript file on window on load.

<script type="text/javascript">
window.onload = function () {
var script = document.createElement("script");
script.src = "site/js/3000297746.js";
document.body.appendChild(script);
};
</script>

September 8, 2008

How to redirect 404 to error page?

Filed under: website management — admin @ 11:33 pm

We need to give message to our website user that requesting a page that doesn’t exist in our website. If we don’t think about this or left it as default, user will get error message that produce by the browser. And this is not look professional.

So we need to give a message about what they looking is not exists in our website and give him option to search or go to another page. There are a simple way to do it, by add ErrorDocument info on htaccess file.

First create an error html file, named it as you want, for example 404-error-page.htm. And then edit htaccess file, put this line at last line.

ErrorDocument 404 /404-error-page.htm

Upload htaccess file again to your server. Later if someone looking for a page that doesnt exists in your website, server will redirect into 404-error-page.htm

September 7, 2008

Another software for download video on youtube

Filed under: internet — Tags: , — admin @ 8:16 pm

Youtube has many interesting video for watch. There are many short course video for web design, seo mastering, or photography. You also can find many funny video, song clip or interesting video about life.

For watching a video, we need to open a certain clip or video url using our browser. And wait for browser to download video data from youtube server and then show it on video player.

Of course if you want to watch that video again later, you need to open that url again anda download video data from beginning again. This is uncomfortable for us that doesn’t have good speed and cheap bandwidth.

So i just found a software for download a youtube video into your local PC. You can download it here. happy downloading!

September 1, 2008

How to use Google as proxy?

Filed under: internet — Tags: , — admin @ 1:41 am

Sometime our provider or internet connection at office is blocked by administrator. It is a company policy to disallow employee to open certain sites, for example friendster, youtube, or facebook.

They want the employee focus on their job. But you know what i really not comfortable with this situation, because in my opinion i has respect to my task or job so ill do the best for it. But sometime we need to find a usefull article or maybe just looking around for new relationship with other professional.

I have one trick how to open a site that blocked by your administrator. This way i will use Google Translator as a proxy to blocked sites. Here we are

  1. Simple go to http://translate.google.com.
  2. Input url of the site in Translate a web page section.
  3. Select the source language as Spanish and target Language English.
  4. Click translate

You will get the site is translated by Google. Important the site is not blocked.

August 27, 2008

Technorati

Filed under: web-history — admin @ 8:54 pm

Technorati Profile

August 9, 2008

How to download Youtube video to local Computer or PC

Filed under: internet — Tags: , — admin @ 10:08 am

Many of us looking for interesting video on youtube and find it. We also sometime want to save this video into your local computer or PC for watch again later. I have one trick how to download youtube video to your local PC. Here we are:

  1. find video link on youtube for example i want to download NBA Final Video http://youtube.com/watch?v=Qmp8Dbn9tC4
  2. Go to http://www.clipnabber.com/ for media grabber
  3. Paste http://youtube.com/watch?v=Qmp8Dbn9tC4 into URL on clipnabber
  4. Click on Nab Video button
  5. Wait when loading until you see Video URL http://youtube.com/watch?v=Qmp8Dbn9tC4
  6. Right click on FLV Download Link and select Save Target As
  7. Select folder that you want the video to be saved
  8. And then you can play the video file again using VLC Media Player

Enjoy downloading!

August 2, 2008

Login to multiple Google Talk Account

Filed under: internet — Tags: , — admin @ 10:06 am

Google talk is instan messanger service like Yahoo Messanger or MSN. You need a GMail account to be able to use this service. Using this service you can send instan message to another GMail account.

Defaultly one computer is for one account. So if you want to login to many account in one computer? I will show you a simple step how to do it on your computer.

  1. Create shortcut of Google Talk to your Desktop. Google Talk defaultly located on “C:\Program Files\Google\Google Talk\googletalk.exe”. Right click on this file and the select Send To > Desktop.
  2. Right click on new shortcut on your desktop, and then select Properties.
  3. Change target field into “C:\Program Files\Google\Google Talk\googletalk.exe” /nomutex
  4. And then click OK button.
  5. Now every time you double click this icon, it will open new instance of Google Talk.

I hope this article is helpful for you. Enjoy!

August 1, 2008

Yellow background on HTML text field Form

Filed under: html — Tags: , — admin @ 10:05 am

Have you ever found a confusing condition on your browser IE or Firefox that when you open an HTML Form page some text field has yellow background even you dont have this color on your css or html.

This situation also make me confuse because my client said that he saw yellow background on a computer but on another computer he doesn’t see yellow background. He want to know the answer why.

I was already thinking about this confusing thing before, but i didn’t try to find more detail about this problem. But i know this is something to do with the plugin on browser. Something like auto complete form.

So i go to forum and found the reason. According to the forum, it is because we use google toolbar for auto complete capability when we input data on HTML form. So we can set an auto complete form when we fill another html form later.

To disable the toolbar just go to View > Toolbars > Google Toolbar. And then refresh the browser. The textfield background will colouring with its original color.

July 29, 2008

How to post form into a popup window

Filed under: html,javascript — Tags: , — admin @ 10:04 am

When you need to send a variable to a popup window from mainpage, ussually we will put it in url as GET method. But using this problem we will get problem when the variable has long character. We know that GET has limited long.

So we need to use POST method to submit a form. But how we can do it? I have a trick how to do it.

First we create a javascript for handling onsubmit event on html form.

function thePopupWindows(windowsname){
var win = window.open('', windowsname, ''width=580,height=450');
return true;
}

and then set this function on HTML Form :

<form action="popupwin.php" method="post" target="thepopup" onsubmit="return thePopupWindows(this.target);">
<input id="name" name="name" type="text" />
<input type="submit" value="Submit">
</form>

« Older PostsNewer Posts »