Astaghfirullah

Astaghfirullah rabbal baraya
Astaghfirullah minal khataya

Living in the world for a little while
Just stop by blink of an eye
Do not be mesmerized
Do not be deceived
Hereafter back where we
Real life hereafter

Whoever God’s purpose
Surely the world will serve
But the world who aim
Surely not you be tired and miserable
Enslaved to the world until the end of the

Allah’s love Dazzle
No matter how we betray HIM
Nothing interrupted flow HIS pleasure
Always awaited return to the HIS
Always awaited repent at HIS

God sees, God hears
All attitude and our words
No one missed nan eke
God will not forget for ever
God will not forget for ever
Remember, death is certain to pick up
Decide delicious and ideals
No bounce no prevented

When death comes to an end already
Life ends when the time was

Shroud wrapped rigid Tubuhpun
There is no rank order position property
Stay regrets
Awaiting trial to determine
Awaiting trial to determine

O friends quickly repents
Because approaching death
Fear terrible punishment
Penalty blasted through the ages
Penalty blasted through the ages

God’s forgiveness repentance recipients
Despite all the sins of the universe
O friends quickly repents
Because approaching death
Because death approaching.

How to change opera mini 5 speed dial

To change opera 5 mini speed dial is choose your speed dial then type 1

Inverter AC / DC For Car. Is it safe?

Source:http://oldsite.situsotomotif.com/modifikasi/aftermarket-stuff/inverter-ac%10dc-untuk-mobil..amankah?

The device, known named Inverter is a device in the direction of electric current converter (DC: Direct Current) to flow back and forth (AC: Alternating Current). In the car, this tool is generally used as a tool to be able to use a car accessory or additional electronic devices that have an alternating current (AC Voltage).

In the world of car modification, the ordinary use modifikator inverter customernya if you want to apply additional entertainment devices in the car, such as the Lap Top, PlayStation, Home LCD TV, Mini Fridge and various other electronic devices, particularly electronic devices actually a house that did not has special accessories (Car Kit) for use in cars, such as the charger or adapter for dimobil applications.

Inverter Applications
According to Sam Erwin, Auto Fit fitter than in the car market Jaya Blok F/6-7 Kemayoran, Jakarta, an inverter device applications in the car does not matter as long as the power inverter into account the size of the electrical capacity BASED ON automobile battery, alternator and the power of the device addition that will be used.

If you do not notice it, it has an inverter applications will cause problems. As an example, if we apply the power inverter 200 watts but is used for electronic devices that use power in excess of 200 watts, it is certain that the inverter will be damaged or broken and the fuse (Fuse) on the lighter can be immediately broken up, because generally the inverter is connected through a port lighter.

So also in selecting an inverter, for the safest car is powerful enough to use a 200 or 300 watts, if it wants to use a greater power to 1000 watts of electrical installation should have a separate electrical lines are usually drawn directly from the car battery. Yet even in this case we still have to take into account the ability of a car alternator, because if it can not be battery-drop, especially if the car has a small number of CC is usually only equipped with alternators that little helpless too.

Market is very much different kinds of inverters and power, for it should be in buying an inverter, the first thing to look at is the power inverter, choose the appropriate usage needs and capacity of electricity supply dimobil. The second thing that is difficult is choosing a quality inverter, because many of inverters whose quality is not reliable and the average is not given warranty. For that should select an inverter which brand is little known because of quality.

If the inverter is not tested by the vendors will be easier to find quality, how to try using a power tool nearing the inverter capacity, if the device is functioning or abnormal flame in general, means that the inverter is not good quality. For the price range, the average inverter for car dibanderol around 300-500 thousand rupiahs, depending on the size and brand power.

File Splitter

minis

Splits and share large files of any format support, can do well by Gsplit.
GSPLIT a freeware program that can split any file, even with large files though. This application has many options to split files, including the ability to split the file size manually.

Gsplit can create a small program to merge back files that have been splitted without using the original application and can integrate Gsplit even files that are divided into the main file. Gsplit application also adds the Windows Explorer context menu for files shared. Unlike other file divider applications, Gsplit able to process files without having to load the file into memory first.
download at http://www.gdgsoft.com/gsplit/

Language Switcher Based On Ip Location

If you have a website with multi language and you want to switch website language based on visitor ip location, below is the tips to make language switcher based on visitor ip location.

1. You need to install language switcher wordpress plugin to your site. Follow the instruction on http://www.poplarware.com/languageplugin.html

2. Read about sample script to change URL based on IP on http://www.ip2nation.com/ip2nation/Sample_Scripts/Country_Based_Redirect

3. Read about FAQ in http://www.poplarware.com/languageplugin_faq.html#faq. Please notice on number 21. I copy paste below. Remember the position of “// use default language if user did not set” from source code langswitch.php because you will edit the source code on that position.

I can program a little in PHP, and I want to know if there is a way I can do something in PHP that detects what language the site viewer has chosen in the Language Switcher.
Yes, you can. There is a global variable in the Language Switcher called $langswitch_lang_pref, which gets set to the 2-letter language code currently in effect. So you can do something like this:
global $langswitch_lang_pref;
if( $langswitch_lang_pref == ‘ru’ ) {
// do something if the language is Russian
} else {
// do something different if the language is not Russian
}

4. Download data to map IP to country from http://www.ip2nation.com/ip2nation/Download then add it to your database.

5. Test the script from number 2 above on your server.

6. Join the knowledge you get from number 2 and 3 above. This is the important step. Open the langswitch.php you get from number 1. Then edit the source code. Below is an example after you edit it:

// use default language if user did not set

//this line is commented to make language switcher based on ip location to work — if( !$langswitch_lang_pref ) {
//this line is commented to make language switcher based on ip location to work — $langswitch_lang_pref = get_option( $langSwitchDefLangOpt );

// The lines below added by plugie to make language switcher based on ip location to work
$server = ‘localhost’; // MySQL hostname
$username = ‘languangeswitch’; // MySQL username
$password = ‘thisisapassword’; // MySQL password
$dbname = ‘db_languangeswitch’; // MySQL db name

$db = mysql_connect($server, $username, $password) or die(mysql_error());
mysql_select_db($dbname) or die(mysql_error());

$sql = ‘SELECT
country
FROM
ip2nation
WHERE
ip < INET_ATON("'.$_SERVER['REMOTE_ADDR'].'")
ORDER BY
ip DESC
LIMIT 0,1';

list($country) = mysql_fetch_row(mysql_query($sql));

switch ($country) {
case 'id':
$langswitch_lang_pref='id';
break;

default:
$langswitch_lang_pref='en';
break;
}
//============================
//this line is commented to make language switcher based on ip location to work -- }

7. Try to browse your site from any of country using anonymous proxy. You can try http://www.hrmovie.com

8. After you have installed it successfully, you can remove language switcher plugin from your sidebar. So customer can’t choose language they preferred. Your site just give the language based on visitor ip location.

The sample of multi language site that use Language switcher can be found on http://syrup.plugie.com. That website using two language: indonesian and english. If the ip visitor comes from indonesia the website will give indonesian languange. If comes from other countries besides Indonesia the website will give english language

Good luck and tell me your experience.

WordPress database error Table './h45526_wp/wp_wassup' is marked as crashed and should be repaired for query INSERT DELAYED INTO wp_wassup (wassup_id, `timestamp`, ip, hostname, urlrequested, agent, referrer, search, searchpage, os, browser, language, screen_res, searchengine, spider, feed, username, comment_author, spam) VALUES ( '1bb31b70d54355c14043cc3df41b34d7', '1265706725', '38.107.191.86', '38.107.191.86', '/', 'CCBot/1.0 (+http://www.commoncrawl.org/bot.html)', '', '', '0', '', '', 'us', '', '', 'CCBot', '', '', '', '0' ) made by shutdown_action_hook, do_action, call_user_func_array, wassupAppend, insert_into_wp