Computer And Internet, Miscellaneous, Personal

I believe this topic is good for application developers. In this short article we will learn how to created SMS gateway and applicated it on worldwide-web using PHP script. What is SMS? SMS stands for short message service. It’s the text communication service component of phone or mobile communication systems, using standardized communications protocols that allow the exchange of short text messages between fixed line or mobile phone devices… more details about SMS please read in wikipedia.

I already written about how to build SMS gateway on my “Bahasa Indonesia” blog, but many people give negative comment on that article because that article is just illustration without real product. There is nothing goes wrong on that article, everything has requirement to created SMS gateway. I think people commenting negative on that article because they never use their brain to “think outside the box“.

Here is image illustration how SMS and Internet can be combined, this application can created a better experience for end users :

Enough for my bad introduction, before we start to learn how to created real SMS gateway we need some requirements in here:

  1. An computer to act as gateway and web-server.
  2. One or more Phone/Modem+SIM cards to act as connection between your SMS gateway and your provider.
  3. NowSMS program (60 days trials or buy) act as virtual machine to send and received SMS.
  4. Web hosting with PHP support (needed when you want to created an online worldwide-web application).
  5. An knowledge to solve a little problem.

First, we have to make our computers to be a web-server. I recommended to use XAMPP. It works on windows/linux operating system. Use your knowledge to solve all problem you may faced on this step, no need to ask me everything :) You may have to setting port forwarding on your router if necessary.

Next step is connecting your phone/modem to your computer. You can use USB-Cable, Bluetooth, Infrared, or anything that can be used to connecting your phone into your computer. Use your knowledge to solve all problem on this step. In this sample I used USB-Cable.

Next step is installing NowSMS and configure it. After you install NowSMS run it, program should show this screen, next click on add.

Choose which one fit on your configuration and then click OK.

Choose modem installed on your computer, then click test and add modem. In many case, mostly the problem is you might can connecting your Phone but your phone didn’t support for SMS. You can solve this case by use USB-Cable connection.

When you success on add modem, this screen will shown. make sure you click on test button once again.

Click on properties and write down your phone number, you can write phone/modem PIN if it required.

Run this sms gateway service when you needed to send SMS from worldwide-web application.

Try it on your local computers, by default port for SMS gateway is 8800. So you have to write http://localhost:8800 to see this form.

After this step our SMS gateway are ready to use. Next step is created application via PHP script to let us sending SMS or received SMS from internet.

Received SMS

First we have to created an MySQL database to recorded all incoming message to our database. Created a new MySQL database and then import this code:

# CREATE TABLE `inbox` (
# `id` int(5) NOT NULL auto_increment,
# `msg` text NOT NULL,
# PRIMARY KEY (`id`)
# ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;

Next use this sample PHP script

# <?php
#
# // database
# $db_host = “localhost”;
# $db_user = “username”;
# $db_pass = “password”;
# $db_name = “database name”;
#
# // connect to mysql
# $link = mysql_pconnect ($db_host, $db_user, $db_pass) or die (“can’t connect”);
# mysql_select_db ($db_name) 0or die (“can’t select database”);
# $msg = trim($msg);
#
# //input to table inbox
# $sql = “INSERT INTO inbox
# SET id=”,
# msg=’$msg’”;
# $query = mysql_query($sql) ;
# ?>

Next step is configure setting on NowSMS program:

  1. Click 2-Way tab.
  2. Check Process Received SMS Messages
  3. Add SMS Command Prefix text, example: Idol (every SMS received with Idol prefix will added into database).
  4. Write your phone number on Receive Phone Number(s)
  5. Write http:/[yourdomainname]/[yourpath]/index.php?msg=@@FULLSMS@@ to Command to Execute.
  6. Click Add then click Apply.

When we received message to this phone number with right prefix it will automatically recorded into our database, on next step we can use this database to any application we need example: vote SMS, etc. Please be creative!

Sending SMS

Next, how we created an simple script to send SMS message from our web-server? I was searching on google and found this good sample script. It might be useful to use. Read the full sample SMS script in here. Use your imagination and be creative!

Ending

That’s it, enough the lesson for today :) If you like this script you can donate to me *LOL* I’m just kidding… If you want to test SMS application you can try this http://sms.istanto.net it would sending SMS message to all Indonesian GSM/CDMA network. Have a good day everyone :) :)

Share |
1 Star2 Stars3 Stars4 Stars5 Stars (2 votes, average: 5.00 out of 5)
Loading ... Loading ...
Computer And Internet, Miscellaneous, Personal, Tips & Trick

In this short article we will learn how to created an custom google translate tools. Google translate tools is free translate service provided by google. This tools really help people to translate some website/page to any language people want.

Google translate tools standards is not really interesting in style *lol* So why we don’t created a simple good looking translate tools our own, but of course we have to credited google as this service provider? Alright let’s created it, I want everyone be creative as possible.

First we have to know how translate tools format working. Example:

http://translate.google.com/translate?hl=en&sl=en&tl=pl&u=http%3A%2F%2Fwww.istanto.net

This is standard format when google translate try to translating my blog from English to Polish. There is some rules we can manipulate it. Example, I try change tl=pl with tl=id:

http://translate.google.com/translate?hl=en&sl=en&tl=id&u=http%3A%2F%2Fwww.istanto.net

The result is I got id translation page (Indonesian). When I try change sl=en to sl=id I got result:

http://translate.google.com/translate?hl=en&sl=id&tl=id&u=http%3A%2F%2Fwww.istanto.net

So the answer is we can manipulate this format if we know country code! That it! Standard format would be like this:

http://translate.google.com/translate?hl=en&sl=[YOUR PAGE ORIGINAL LANGUAGE]&tl=[LANGUAGE YOU WANT TRANSLATED TO]&u=[PAGE SOURCE]

HL = Hidden Language? *lol* I Don’t know! This properties maybe the language setting on each computers or from where google page country we coming from.

SL = Source Language

TL = Translated Language

U = User

Okay we already know and understand this format, our next goal is created a custom html code to follow this format. This is a simple code I created, if you can please use CSS to make this code clean.

<style>
.translate img {
filter:alpha(opacity=100);
-moz-opacity: 1.0;
opacity: 1.0;
border:0;
padding-left:0px;
}

.translate:hover img {
filter:alpha(opacity=50);
-moz-opacity: 0.50;
opacity: 0.50;
border:0;
}

</style>
<div style=”text-align:center”>

<a class=”translate” href=”#” target=”_blank” rel=”nofollow” title=”English” onclick=”window.open(‘http://translate.google.com/translate?u=’+encodeURIComponent(location.href)+’&langpair=en%7Cen&hl=en’); return false;”><img alt=”English” border=”0″ align=”absbottom” title=”English” height=”24″ src=”http://www.istanto.net/flag/uk-flag.png” style=”cursor: pointer;margin-right:8px” width=”24″/></a>

<a class=”translate” href=”#” target=”_blank” rel=”nofollow” title=”French” onclick=”window.open(‘http://translate.google.com/translate?u=’+encodeURIComponent(location.href)+’&langpair=en%7Cfr&hl=en’); return false;”><img alt=”French” border=”0″ align=”absbottom” title=”French” height=”24″ src=”http://www.istanto.net/flag/france-flag.png” style=”cursor: pointer;margin-right:8px” width=”24″/></a>

<a class=”translate” href=”#” target=”_blank” rel=”nofollow” title=”German” onclick=”window.open(‘http://translate.google.com/translate?u=’+encodeURIComponent(location.href)+’&langpair=en%7Cde&hl=en’); return false;”><img alt=”German” border=”0″ align=”absbottom” title=”German” height=”24″ src=”http://www.istanto.net/flag/german-flag.png” style=”cursor: pointer;margin-right:8px” width=”24″/></a>

<a class=”translate” href=”#” target=”_blank” rel=”nofollow” title=”Spain” onclick=”window.open(‘http://translate.google.com/translate?u=’+encodeURIComponent(location.href)+’&langpair=en%7Ces&hl=en’); return false;”><img alt=”Spain” border=”0″ align=”absbottom” title=”Spain” height=”24″ src=”http://www.istanto.net/flag/spain-flag.png” style=”cursor: pointer;margin-right:8px” width=”24″/></a>

<a class=”translate” href=”#” target=”_blank” rel=”nofollow” title=”Italian” onclick=”window.open(‘http://translate.google.com/translate?u=’+encodeURIComponent(location.href)+’&langpair=en%7Cit&hl=en’); return false;”><img alt=”Italian” border=”0″ align=”absbottom” title=”Italian” height=”24″ src=”http://www.istanto.net/flag/italy-flag.png” style=”cursor: pointer;margin-right:8px” width=”24″/></a>

<a class=”translate” href=”#” target=”_blank” rel=”nofollow” title=”Dutch” onclick=”window.open(‘http://translate.google.com/translate?u=’+encodeURIComponent(location.href)+’&langpair=en%7Cnl&hl=en’); return false;”><img alt=”Dutch” border=”0″ align=”absbottom” title=”Dutch” height=”24″ src=”http://www.istanto.net/flag/dutch-flag.png” style=”cursor: pointer;margin-right:8px” width=”24″/></a>

<br/><br/>

<a class=”translate” href=”#” target=”_blank” rel=”nofollow” title=”Russian” onclick=”window.open(‘http://translate.google.com/translate?u=’+encodeURIComponent(location.href)+’&langpair=en%7Cru&hl=en’); return false;”><img alt=”Russian” border=”0″ align=”absbottom” title=”Russian” height=”24″ src=”http://www.istanto.net/flag/russian-flag.png” style=”cursor: pointer;margin-right:8px” width=”24″/></a>

<a class=”translate” href=”#” target=”_blank” rel=”nofollow” title=”Brazil” onclick=”window.open(‘http://translate.google.com/translate?u=’+encodeURIComponent(location.href)+’&langpair=en%7Cpt&hl=en’); return false;”><img alt=”Brazil” border=”0″ align=”absbottom” title=”Brazilian” height=”24″ src=”http://www.istanto.net/flag/brazil-flag.png” style=”cursor: pointer;margin-right:8px” width=”24″/></a>

<a class=”translate” href=”#” target=”_blank” rel=”nofollow” title=”Japanese” onclick=”window.open(‘http://translate.google.com/translate?u=’+encodeURIComponent(location.href)+’&langpair=en%7Cja&hl=en’); return false;”><img alt=”Japanese” border=”0″ align=”absbottom” title=”Japanese” height=”24″ src=”http://www.istanto.net/flag/japan-flag.png” style=”cursor: pointer;margin-right:8px” width=”24″/></a>

<a class=”translate” href=”#” target=”_blank” rel=”nofollow” title=”Korean” onclick=”window.open(‘http://translate.google.com/translate?u=’+encodeURIComponent(location.href)+’&langpair=en%7Cko&hl=en’); return false;”><img alt=”Korean” border=”0″ align=”absbottom” title=”Korean” height=”24″ src=”http://www.istanto.net/flag/korean-flag.png” style=”cursor: pointer;margin-right:8px” width=”24″/></a>

<a class=”translate” href=”#” target=”_blank” rel=”nofollow” title=”Arabic” onclick=”window.open(‘http://translate.google.com/translate?u=’+encodeURIComponent(location.href)+’&langpair=en%7Car&hl=en’); return false;”><img alt=”Arabic” border=”0″ align=”absbottom” title=”Arabic” height=”24″ src=”http://www.istanto.net/flag/arab-flag.png” style=”cursor: pointer;margin-right:8px” width=”24″/></a>

<a class=”translate” href=”#” target=”_blank” rel=”nofollow” title=”Chinese Simplified” onclick=”window.open(‘http://translate.google.com/translate?u=’+encodeURIComponent(location.href)+’&langpair=en%7Czh-CN&hl=en’); return false;”><img alt=”Chinese Simplified” border=”0″ align=”absbottom” title=”Chinese Simplified” height=”24″ src=”http://www.istanto.net/flag/china-flag.png” style=”cursor: pointer;margin-right:8px” width=”24″/></a>

<div style=”font-size:10px; padding:8px 0px 0px 0px”><a href=”http://www.istanto.net/how-to-creating-custom-google-translate-tools.html” target=”_blank”>Custom Google Translate Tools</a> – <a href=”http://www.google.com” target=”_blank”>Provided by google</a>

</div></div>

The result will be like this:

That’s looks beauty right? :) You can add more translated language if you want. All you need to do is preparing the country flag pictures and edited the code. I wan’t someone created wordpress plugins for this custom translate, you’re free to use code in here.

That’s the lesson for today, have a nice day. :)

Share |
1 Star2 Stars3 Stars4 Stars5 Stars (2 votes, average: 5.00 out of 5)
Loading ... Loading ...
Make Money Online, Miscellaneous, Personal, Short Reviews

Do you have a lot of money? You want to grown your money without risk or only accept a low risk? where did you invest your money? on bank? did you know how bank’s managed your money? bank interest rates suck in short and long terms? Well.. That’s a good question to start this article.

If you have lot of money and you want your money grown without need you to work, there is only 2 options available.

  1. Invest your money in property, business, etc.
  2. Deposit your money on bank and earn interest rate.

The problem is sometimes you may face risk to loss your money if you invest  your money in private way (this way is not recommended unless you know the risk and person). With a good management you could survive and rewarded (more money for you). Bank is always secure as usual, but their interest rate this day actually to low, How you can call that “interest rate” if actually it’s not really “interesting”? :) If you want to set your own rate without needed to worry about your money you should this, zopa.

What is zopa? zopa is a safe place where people meet to lend and borrow money. This is a good website idea, by lend your money you could help others people to grown their business. In other side, you actually also make money for yourself, this is really perfect idea! Basically this is a “win-win” solution for both side. Errmm.. not really, 3 side win in here I forget zopa *lol* :P

By lending in zopa you’re actually do a smart investment. Why? the reason is simple. People without money and plan to borrow money usually will using and managed that money with excellent way. Mostly 99% will run their business with serious because you know they have to pay back that money to you including fees. It’s not really bad as lender, if you’re just want to help people you can set your rate low.

After reviewing zopa I believe this is a good source website. Their management and strategy could help everyone to grown. Please remember of course everything has risk, it’s also applied for zopa.

If you’re not sure your money safe (lender) zopa give options to start your lend with only 50 euro. This money will spreaded, it wouldn’t spend to one person only (brilliant idea). We all know the risk, sometimes people do success to pay their loan but sometimes they don’t. In zopa I see they’re smart enough to manage your money and you will only faced a low risk, I recommended this site for everyone.

Good luck :)

Share |
1 Star2 Stars3 Stars4 Stars5 Stars (2 votes, average: 3.50 out of 5)
Loading ... Loading ...
Miscellaneous, Personal

Da*n I got fooled once again :( I hope this will be the last time I got scammed. I already learn many experience with all those scammer. This is my newest real personal story about fraud domain appraisal. I know this happen because I’m not doing research first. For everyone please do research first before you do something. It’s will really help you to stop get scammed by many f*cking scammer out there.

So it began, *lol* One day I got email from someone I don’t know (hammond@thenamepros.com, other report he was using another email address but words completely almost same, the good news IP always same all coming from 213.140.225.228) He send mail to me and asking how much I sell my domain name (ahooy.net, actually I listed it for testing if someone interest on that domain name). This email coming after I list my domain name on SEDO, that’s why I give title with this words “Target SEDO User“. Of course I interest and reply that email, and then he started to foolish me “In order to successful transaction with him, I must buy certificate domain appraisal on website he want (this website own by him).

So I just trust this scammer without research and start to buy certificate domain appraisal on www.bestdomainexperts.com (this site owned by those scammer) After I pay and they send to me a FAKE result I try to contact this guy again. He started to acting like really interesting to buy my domain name and try to foolish me again to using www.bestdomainexperts.com service (listing) I started to smell something wrong in here, I do research on google and found out this guy is scam lot of people on there, look at this URL: http://www.namepros.com/639974-another-scam-letter-elite-investment-group-4.html

After found this page, I try to manipulate this scammer to reveal some information but no luck, all email just trash words talking blablabla.. I open dispute on paypal (now escalate to claim) and email SWREG about this scammer. I really want to puch this guy on his face till he die if he in front of me *lol* Because this case I’AM OFFICIALY CLOSED ALL BUSINESS, OFFER, PARTNERSHIP, AND FRIENDSHIP REQUEST FROM NIGERIA AND RUSSIAN.

Next, You can see all screenshot of this conversation (ALL REAL, I GUARANTEE WITHIN MY LIFE) :

NOTE:

My goal is not this $81.xx but I want to jailed this frauders, I can simply earn more than $81.xx in one day. This is all about reputation not about money.

This is my proof about this guy is one person, he’s frauder, he’s scammer, don’t trust his words, everything he say just TRASH.

I use two email address on this conversation, ist***o[at]gmail.com (me) and ratna*****[at]gmail.com (my sister). Scammer using two email address hammond@thenamepros.com and info@namesaleshop.com, but all coming from same IP 213.140.225.228.

Please don’t laugh when you read this stupid conversation :D

1. Scammer start’s to refer me to website he want.


Read More »

Share |
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...
Computer And Internet, Personal, Tips & Trick

Computer virus always using sociable technique to infecting their victims. When there is gossip virus creator always using this gossip to spreading their virus ex:paris hilton xxx movies, what FBI hidding from us, etc. This time they’re using facebook popularity to infect all facebook fans. This virus also has been reported bundled with FAKE antispyware security tools.

When you see this on your monitor that mean you’re already infected.

Just ignore this fake antispyware warning, if you follow it you will get more virus infected your computer or your operating system gonna be corrupt.

How to Remove Facebook Virus W32/Obfuscated.D2!genr :

1. It’s recommended to running windows in “safe mode” when in cleaning process, backup all your important data first!.

2. Disable “System Restore” when in cleaning process.

3. Disconnected your computers from local network.

4. Download “unlocker” and install it.

5. Download “security task manager“  then kill virus process active in computer background.

6. Download repair.inf then right click, choose “install”. Make sure repair.inf content same with this:

[Version]

Signature=”$Chicago$”
Provider=nobody

[DefaultInstall]
AddReg=inject
DelReg=rem

[inject]
HKLM, Software\CLASSES\batfile\shell\open\command,,,”"”%1″” %*”
HKLM, Software\CLASSES\comfile\shell\open\command,,,”"”%1″” %*”
HKLM, Software\CLASSES\exefile\shell\open\command,,,”"”%1″” %*”
HKLM, Software\CLASSES\piffile\shell\open\command,,,”"”%1″” %*”
HKLM, Software\CLASSES\regfile\shell\open\command,,,”regedit.exe “%1″”
HKLM, Software\CLASSES\scrfile\shell\open\command,,,”"”%1″” %*”
HKLM, SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon, Shell,0, “Explorer.exe”
HKCU, Software\Microsoft\Internet Explorer\Main, tart Page,0, “about:blank”
HKLM, SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon,userinit,0, “userinit.exe”

[rem]
HKLM, SOFTWARE\Microsoft\Windows\CurrentVersion\Run,reader_s
HKLM, SOFTWARE\Microsoft\Windows\CurrentVersion\Run,47543326
HKLM, SOFTWARE\Microsoft\Windows\CurrentVersion\Run,PromoReg
HKCU, SOFTWARE\Microsoft\Windows\CurrentVersion\Run,reader_s
HKCU, Software\Microsoft\Windows\CurrentVersion\Policies\System,EnableProfileQuota
HKLM, SOFTWARE\AGProtect
HKLM, SOFTWARE\47543326
HKLM, SOFTWARE\Microsoft\Windows NT\CurrentVersion\Network, UID
HKLM, SOFTWARE\Microsoft\Windows\CurrentVersion, Rlist
HKU, .DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\{43BF8CD1-C5D5-2230-7BB2-98F22C2B7DC6}
HKU, .DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\{8FFA689D-2C2B-2B2E-D865-74C04CA4EF06}

7. Delete this file list has been created by virus,  before you doing this set your computers to show all hidden files.

%systemroot%\Documents and Settings\All Users\Application Data\47543326
%systemroot%\Documents and Settings\%user%\Start Menu\Programs\Security Tools.lnk
%systemroot%\Documents and Settings\%user%\Desktop\Security Tools.lnk
%systemroot%\Documents and Settings\%user%\Application Data\wiaservg.log
%systemroot%\Documents and Settings\%user%\Local Settings\Temp\*.tmp
%systemroot%\WINDOWS\Temp\wpv311256600826.exe
%systemroot%\WINDOWS\Temp\wpv411256806849.exe
%systemroot%\Documents and Settings\%user%\reader_s.exe
%systemroot%\Documents and Settings\%user%\Start Menu\Programs\Startup\isqsys32.exe
%systemroot%\WINDOWS\system32\reader_s.exe
%systemroot%\Windows\system32\wbem\proquota.exe
%systemroot%\windows\system32\sdra64.exe

%systemroot%\Windows\system32\lowsec
local.ds
user.ds
user.ds.lll

* NOTE: when you have problem deleted folder %systemroot%\Windows\system32\lowsec and file %systemroot%\windows\system32\sdra64.exe please use unlocker. Right click on folder/files then choose unlocker, choose deleted then click OK. If there any warning just ignore it.

7. Deleted all temporary files using ATF-Cleaner.

8. Update your best antivirus then scan full all your system, make sure there is no virus/worm/trojan left.

9. Subscribe to my blog… hehehe :D

Good luck, have a great day :)

[Version]
Signature=”$Chicago$”
Provider=nobody

[DefaultInstall]
AddReg=inject
DelReg=rem

[inject]
HKLM, Software\CLASSES\batfile\shell\open\command,,,”"”%1″” %*”
HKLM, Software\CLASSES\comfile\shell\open\command,,,”"”%1″” %*”
HKLM, Software\CLASSES\exefile\shell\open\command,,,”"”%1″” %*”
HKLM, Software\CLASSES\piffile\shell\open\command,,,”"”%1″” %*”
HKLM, Software\CLASSES\regfile\shell\open\command,,,”regedit.exe “%1″”
HKLM, Software\CLASSES\scrfile\shell\open\command,,,”"”%1″” %*”
HKLM, SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon, Shell,0, “Explorer.exe”
HKCU, Software\Microsoft\Internet Explorer\Main, tart Page,0, “about:blank”
HKLM, SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon,userinit,0, “userinit.exe”

[rem]
HKLM, SOFTWARE\Microsoft\Windows\CurrentVersion\Run,reader_s
HKLM, SOFTWARE\Microsoft\Windows\CurrentVersion\Run,47543326
HKLM, SOFTWARE\Microsoft\Windows\CurrentVersion\Run,PromoReg
HKCU, SOFTWARE\Microsoft\Windows\CurrentVersion\Run,reader_s
HKCU, Software\Microsoft\Windows\CurrentVersion\Policies\System,EnableProfileQuota
HKLM, SOFTWARE\AGProtect
HKLM, SOFTWARE\47543326
HKLM, SOFTWARE\Microsoft\Windows NT\CurrentVersion\Network, UID
HKLM, SOFTWARE\Microsoft\Windows\CurrentVersion, Rlist
HKU, .DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\{43BF8CD1-C5D5-2230-7BB2-98F22C2B7DC6}
HKU, .DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\{8FFA689D-2C2B-2B2E-D865-74C04CA4EF06}

Share |
1 Star2 Stars3 Stars4 Stars5 Stars (2 votes, average: 5.00 out of 5)
Loading ... Loading ...
Personal, Short Reviews

I’m already used webhostingworld around 6+ month already, Today I decide to write an short review for them and compared them with hostmonster. Did you confused to get hosting with a less limitation? I mean limitation on content, example hosted site with content adult or mp3 files. Well.. if you do then you’re will be happy after reading this short review.

Webhostingworld allowed adult hosting (all plan) and mp3 files hosting (for gold plan only) this is their plus score, server performance did not really fast I think it run based on “quality by price“. Another good score for webhostingworld is their great support team, mostly my hosting problem with them solved in no more than 20 minutes! I’m not lie… even in some condition they reply my complaint in 5 minutes and solved the problem :)

Compared HostMonster VS WebHostingWorld

  1. Price and limitation, I think it almost same between both of this host company, just a little bit difference on marketing. Depend on what we’re looking for… hostmonster almost can guarantee we will not face problem with them because they have limiter per account. In webhostingworld this feature is not available, we may face problem in the future if we used to much resource. Hostmonster not allowed to host adult or mp3 files on their server, webhostingworld allowed it. In score I would give 9 for hostmonster and 8 for webhostingworld.
  2. Server stability and uptime. Hostmonster still winner in here mostly my site hosted on hostmonster never down except there is problem/maintenance. In webhostingworld downtime is not to much but sure it sometimes 1 times in a week (it make me crazy, you know each minute we can generate money so time is priceless). In score I would give 9 for hostmonster and 7 webhostingworld.
  3. Costumer support (CS). No doubt! webhostingworld have the best support team ever (based on my experience) they mostly friendly and understand what the problem we faced, mostly my problem solved in no more than 20 minutes. Well, hostmonster costumer support not really bad but sometimes they “little rude” the time for solving problem also a little slowly mostly the case solved in around 30-40 minutes. In score I would give 8 for hostmonster and 10 for webhostingworld.
  4. Affiliate program, both are great. 10 for hostmonster and 9 for webhostingworld.

This is just my short review based on my experience with them, if you disagree with me please don’t blame me. Have a nice day everyone :D

Share |
1 Star2 Stars3 Stars4 Stars5 Stars (1 votes, average: 3.00 out of 5)
Loading ... Loading ...
Make Money Online, Personal

I have a real story here, one day a friends asking me how could he can monetize he’s twitter account. He has lot of follower but don’t know how to converting it into something valued for himself. I told him to not always convert anything into money because some people don’t mind but some people really hate it… but he’s looks like love money than his follower.

So it began, I started to searching on google and found out there is way to monetize lot of this twitter follower. I found there is some website to monetize your twitter account it was sponsoredtweets.com, yakburst.com, twittad.com, twtmob.com, and magpie.com. Basically this is almost same with advertising in normal, but it could using your words spreads to raise an advertiser sales. Depend on each network it has their own rules so you have to read and choose which one fit for yourself.

The key to earn money in here is lot of followers. I personally don’t know people strategy to get a lot of followers. Some says just make a friends? some says just buy it! OMG, buy twitter followers? I do search in google again and found out there is some website out there sell twitter followers *LOL* look at this and this. You can easily get a lot follower by spending some $$$ to gain more $$$$ *LOL* again.

Alright… now you already know how to monetize your twitter account and how you can get twitter followers *LOL* Should I tell you everything? Nah, you have to learn it yourself! so this article will stop in HERE! :P

Some payment proof:

Yakburst 1 month with 10.000 followers

Why it so damn little? eh..? 10.000 = $38 if you double your follower 20.000 it could be $38×2=$76 if you have a 1.000.000 it could be $38×100=$3.800 yay I got it! have a nice day everyone! :)

Share |
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...
Computer And Internet, Personal

You might have some strange program in your computers based on their operating system and service pack. Example: total vista security, total xp security, vista antimalware 2010, vista defender pro, vista security tool 2010, vista smart security 2010, xp anti mallware 2010, xp defender pro, xp security tool 2010, and xp smart security 2010. If you have one of any program from this list in your computers, that means your computer has been infected by this malware.

I just got infected today, my computers using windows xp and service pack 3 the result is I got fake xp smart security 2010. First time I was thinking if this is new program from Microsoft because I just updated my Microsoft security essential then this program appears. Because this program annoying me I try to search on google and found out this is an malware. I do scanned my computers using Microsoft security essential but it didn’t found anything (this antivirus is NOT recommended) I didn’t believe when this fake antispyware say my FireFox and IE has been infected, it’s stupid :) I just installed it yesterday. If you got message infected by this fake antispyware please IGNORE THEM or you might have problem with your operating system.

Ave.exe is the main component of each program from fake antispyware group. Basically ave.exe didn’t run without help from any files, there is Trojan when it active it will downloaded ave.exe and save it into your %AppData, this Trojan also will configure ave.exe to start annoying you.

When Ave.exe is active it will totally showing you FAKE infection,  it’s also forced anyone infected to buy  a license to remove this fake infection, if you following this stupid ave.exe you will lost your time, your money, and your operating system, Just ignore all warning from Ave.exe and prepared to remove this f*cking malware.

How To: Remove Ave.exe

1. Unplug your computer from network, disconnected from Internet.

1. Start your computer in safe mode.

2. Kill ave.exe process from your computer background (use task manager or an program that will allow you).

3. Merge this code to repair your registry (choose only one or using booth is OK):

FIX.REG (Right click choose merge / double click)

Windows Registry Editor Version 5.00

[-HKEY_CURRENT_USER\Software\Classes\.exe]
[-HKEY_CURRENT_USER\Software\Classes\secfile]
[-HKEY_CLASSES_ROOT\secfile]
[-HKEY_CLASSES_ROOT\.exe\shell\open\command]
[HKEY_CLASSES_ROOT\exefile\shell\open\command]
@=”\”%1\” %*”

[HKEY_CLASSES_ROOT\.exe]
@=”exefile”
“Content Type”=”application/x-msdownload”

FIX.INF (Right click choose Install)

[Version]
Signature=”$Chicago$”
Provider=Myantispyware.com

[DefaultInstall]
DelReg=regsec
AddReg=regsec1

[regsec]
HKCU, Software\Classes\.exe
HKCU, Software\Classes\secfile
HKCR, secfile
HKCR, .exe\shell\open\command

[regsec1]
HKCR, exefile\shell\open\command,,,”"”%1″” %*”
HKCR, .exe,,,”exefile”
HKCR, .exe,”Content Type”,,”application/x-msdownload”

Then reboot your system.

4. Download MalwareBytes Anti-Malware Install this program on your computers and then UPDATED it first before you start scanned all your system.


5. Scan all your system, Removed all Trojan/virus/malware detected.

6. Updated your best antivirus program, scan all your system, Removed all Trojan/virus/malware detected .

7. After all scan result says no infection, connect back to the Internet then watching your network activity, if there is no activity when computer idle then you’re totally safe from this Trojan (please turn off all background which using Internet activity to make sure nothing used your connection).

Good luck :D

Share |
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...
Computer And Internet, Personal, Tips & Trick

Squid is a caching proxy server that can help reduce internet bandwidth usage and improving response time of loading a website by caching and re-using frequently opened web page. Squid reduce the bandwidth usage and accelerate the website loading by caching static website objects such as images, flash objects and text files, with some modification Squid can cache larger files such as PDF, MP3, executable, flash videos, etc.

Last week ago my client ask me to install squid on his computers. First time I meet problem because I’m not familiar with windows 7 (XP Still the best for me). The mostly problem I meet is I can’t install squid as windows 7 service. Anyway I finally found the way to do this… Want to know? keep reading this tutorial…

Preparation before you install squid:

  1. Squid 2.7
  2. Squid.conf sample

The step to install squid on windows 7:

1. Extract squid 7 and put it on example “c:\squid“.

2. Get squid.conf sample and save it as “squid.conf” put this files on example “c:\squid\etc

3. Now the important step! we have to disable UAC (User Account Control) if we didn’t disable this we will got problem on installing squid as windows service. Mostly a lot of  people try to install squid on windows 7 has problem on this step.

Control Panel -> System and Security -> Change User Account Control Settings

Slide the bar into “Never Notify” You need to restart your computer after doing this step.

4. Open command prompt. Then install squid service by typing “squid -i” in your command prompt. If you success you will see something like this:

5. Build your squid cache by typing “squid -z” You will see this message “Creating Swap Directories” in your command prompt, just waiting until it finished.

6. After squid service installed and squid cache finish building now you have to start this service.

Control Panel -> Administrative Tools -> Services

Look for service with name “squid” the start this service (you can also configure it too to auto start each time your computer on)

7. Make sure squid process is running on your computer background. You can see this on task manager in services tab.

8. It’s might important and secure to re-enable back again User Account Control Settings.

9. You just finished installing squid, congratulation :D

Now you have to configure your web browser to use this squid. Open your web browser and looking for (mostly network) then write your squid IP and squid Port. Example my squid IP server is 192.168.1.254 and port 3128.

That’s it, another web browser will have almost same configuration like this. Have a nice day :)

Share |
1 Star2 Stars3 Stars4 Stars5 Stars (1 votes, average: 5.00 out of 5)
Loading ... Loading ...
Miscellaneous, Personal

No, This is not the end business of virtual credit card and bank account seller. This is just a small change on paypal website that allowed Indonesian paypal account getting verified using local bank account. Absolutely  because of this small changes it will kill all virtual credit card seller for Indonesian costumer.

I got this news from email my friend sent to me, he claimed he can get verified on paypal using bank account only (without credit cards or debit cards). This is a good news, I live in Indonesia and I fell happy if paypal allowed we used bank account to get verified because it’s to expensive in here if you need credit cards, plus there is some security issue with Indonesian bank. No need to use virtual credit card anymore :D

Virtual credit cards business die? Nope! There lot country out there still need this service. My virtual virtual credit card and bank account store will not closed by this small changes. I just lost Indonesian costumer….. *LOL*

Here is the steps for Indonesian people who need to get their paypal account verified using local bank account only:

  1. Register for paypal account or login into your unverified account.
  2. Click on “Get Verified“.
  3. Click “Link My Bank Account
  4. Enter your Bank Name, Bank Code, and Account Number. Then click Continue.
  5. Wait for 1-3 days to see micro deposit from paypal.
  6. Once you have this micro deposit amount, login back into paypal again then write the amount.
  7. Congratulation your paypal account verified. :D

Here is bank code:

When you need to withdrawn funds from your paypal account into your bank account you can read bank kliring code from my blog. The problem is I don’t know if paypal allowed we add fund paypal account using local bank account in here.

Haaahh… I’m gonna bankrupt *LOL*

Share |
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...