If you’re looking around for the fiverr clone script check it out here http://fivescript.com/
July 26, 2010
July 23, 2010
Guaranteed Downtime Web Hosting
How’s that? I was surfing the internet and search for the “best uptime hosting” but found http://www.nouptime.com/ . First I thought that there’s someone who really offers 200kb of hosting space LOL.
That website really made me laugh! The sarcasm and humour is very inteligent. No stupid person could do that, only an experienced guy / gal would be able to CREATE that.
I tried to contact him saying how much funny he / she is but I couldn’t, the “support ticket” form is also a nice joke.
I am doing this through my own unpopular blog : DUDE, you’re GOOD!
July 4, 2010
Google Pagerank Update 2010
Again, it’s time for google to do another toolbar export. Last time everyone was wrong with the date guessing and I was right.
Now, I will try do my guess again against others who are saying that it’ll be on 30th June or 1st,2nd July.
I can say that I am 60% confident in my guess (last time I was 90%) so I think the next google pagerank update will take place on 6th July.
Let’s just sit and keep an eye on the green bar!
June 29, 2010
June 26, 2010
Ubuntu Linux : Boot error “gave up waiting for root device”
Hey geeks,
I’m just one of the excited people about Ubuntu Linux and I wanted to populate it by spreading and installing it to my non-techie friends too. Of course, most of them never boot on it after I get out of the door but I just encountered one with an older hard disk drive.
The weird strange error giving me was completely like :
Gave up waiting for root device. Common problems:
… …(shows a list of three common problems)
ALERT! /dev/disk/by-uuid/(a bunch of chars & numbers id) does not exist. Dropping to a shell!
BusyBox v1.13.3 …
(initramfs)
————
Ouch, I figured how to solve this out:
1) type : wait-for-root = 300
2)wait, wait, wait and type exit many times untill it boots again
Tadaa!
June 12, 2010
June 10, 2010
Linux Mouse Scroll/Wheel Doesn’t work?
I have encountered this “issue” in two of the linux distributions : Ubuntu (9.10 Karmic Koala & 10.04 Lucid Lynx) and Fedora 6.
The problem was that in firefox I had no mouse scroll / wheel working so I did the following to quickly fix
In Firefox go to
1. Edit->Preferences
2. Point to advanced tab and under Browsing tick the “Use auto-scrolling”
June 6, 2010
PHP Filter Validate Email
If you’re using a PHP5.20 or newer version of the php server you can now easily validate email addresses without any regular expression by doing like follows:
$emailAddress = “someone@test.com”;
if(filter_var($emailAddress,FILTER_VALIDATE_EMAIL)) {
print “Mail is valid”;
}else{
print “Invalid email”;
}
June 3, 2010
Zend Studio 7.2 autocomplete doesn’t work anymore
Zend Studio 7.2 autocomplete / code assist feature doesn’t work anymore? I don’t know why too but I’ve just removed the following file in order to make it work again
Zend/workspaces/<your workspace name>/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.dltk.ui.prefs
Be sure to restart and tadaa!