Nice Cursive Font
Someone on Dribbble created an image using this new cursive font - http://www.losttype.com/font/?name=wisdom%20script
Someone on Dribbble created an image using this new cursive font - http://www.losttype.com/font/?name=wisdom%20script
Got an 8-bit Lego's Heart & a Pencil holder from the Boys for Father's Day. :-)
I read an article the other day that basically said that domains don't matter any more for SEO. I don't know if that's true or not, but maybe it has been diminished substantially.
Some time later, I set up an index page for one of my domains. I wanted to see if it had any traffic. I simply created a page that spit out the Domain name and included a stat counter link. A few days later I started getting traffic to that domain. It wasn't type in traffic.It turns out that people were going to Google and typing in that exact domain to search, then they would follow the link back to my page. So this makes me think that YES keyword domains still matter, since people are using search engines to find those domains...I finally moved my blog from WordPress (on Dreamhost) to Posterous. It was really a simple process. I had to go into the WordPress Admin section, then generate an Export File. Then I went back to Posterous and uploaded the Export file to their system. They took care of the rest.
The next step was to update my domain name to point to Posterous. I am using GoDaddy, so I followed these steps: http://help.posterous.com/godaddy-dns-setup-step-by-step
My hope is that I will post more often since Posterous is so simple to use!
There was a desert wind blowing that night. It was one of those hot dry Santa Anas that come down through the mountain passes and curl your hair and make your nerves jump and your skin itch. On nights like that every booze party ends in a fight. Meek little wives feel the edge of the carving knife and study their husbands' necks. Anything can happen. You can even get a full glass of beer at a cocktail lounge.Or perhaps the master, Vladimir Nabokov, as he opened Lolita.
Lolita, light of my life, fire of my loins. My sin, my soul. Lo-lee-ta: the tip of the tongue taking a trip of three steps down the palate to tap, at three, on the teeth. Lo. Lee. Ta. She was Lo, plain Lo, in the morning, standing four feet ten in one sock. She was Lola in slacks. She was Dolly at school. She was Dolores on the dotted line. But in my arms she was always Lolita.Rare is the writer who deserves mention in the same breath as Nabokov or Chandler, but writers should always strive for the example of elegance set by the two men. Good, mechanical, grammatically-correct prose is never good enough. To quote Obi-Wan Kenobi, "Stretch out with your feelings..." This is but a smart part of the process. Next week, on author Mindy Blanchard's blog, I will give a nuts-and-bolts description of the business of books -- what happens once an author types THE END on his or her baby. Tomorrow at writer Marian Allen's blog, I'll be discussing voice and style in the noir genre. I hope to see you there. -- D.B. Grady is the author of Red Planet Noir. He can be found on the web at http://www.dbgrady.com.
function secondsToWords($seconds)
{
/*** number of days ***/
$days=(int)($seconds/86400);
/*** if more than one day ***/
$plural = $days > 1 ? 'days' : 'day';
if ($days > 0) {
$day_string = "$days $plural ";
}
/*** number of hours ***/
$hours = (int)(($seconds-($days*86400))/3600);
if ($days != 0 or $hours != 0) {
if ($hours > 1) {
$hour_string = "$hours hrs ";
} else {
$hour_string = "$hours hr ";
}
}
/*** number of mins ***/
$mins = (int)(($seconds-$days*86400-$hours*3600)/60);
if ($mins != 0) {
$min_string = "$mins mins";
}
/*** return the string ***/
return "$day_string$hour_string$min_string";
}
If I can find a link to the original function, I will post that later.