Recently, ESET add my domain name to the black-list of their database. You can’t open my site and been warned my site is not safe if your PC is running the ESS or EAV. Why Eset block my site?The answer is obvious. That is reason that you come here. I promise that my site is pure, no virus, no spyware, no Trojan, no pop ads. You can test my word through intalling Kaspersky or other Antivirus Software. If you want open my site and take latest escalation ID & Activation Code, close your ESET software(disable antivirus and antispyware protection function temporarily) or by proxy or virtual machinor. You can also feed the RSS source http://feed.loserblog.cn.

Archive

Archive for the ‘Life’ Category

Web-based time machine

April 5th, 2008 Loser No comments

The Aviary released a lately on-line service yesterday:Time machine, original I think to be an All Fools' Day joke and pass by a see just discover is not.You can ascend to spread 1 this inside of the time machine, then adjust time, can see the person in the photograph in that time perhaps object should have of appearance, very interesting.

go to try it

Categories: Life Tags:

Free Access to MySQL Database Converter

April 4th, 2008 Loser No comments

DB2MYSQL Converter is a totally free software that will convert Microsoft Access Databases to MySQL. It’s easy fast and accurate MS Access to MySQL Database Converter easily converts database records of Microsoft MS Access databases to MySQL server.

DB2MYSQL is very easy to use, just follow the simple screens and let the program automatically do all the work for you. We use a very fast conversion algorithm to provide you with the best possible performance level.



Its Features include: Supports common MySQL data types and attributes. Supports common MS Access column data types and attributes. Works with all versions of MySQL servers running all platforms. Works with MS Access 97, 2000 and XP. Create a dump file. Select tables to transfer. Easy install, uninstall and upgrade.

Limitations

Does not convert forms, queries, reports and Visual Basic scripts
Does not convert system (hidden) tables
Requirements

At least 32 MB RAM
MS Access 7.0 or higher (ODBC is not required)
Necessary privileges to write into the destination database
MySQL dump file

Access-to-MySQL converter allows users to do indirect conversion and get more control over the process. Following this way, the program converts MS Access data into a local MySQL dump file instead of moving it to MySQL server directly. This dump file contains MySQL statements to create all tables and to fill them with the data. Click here to learn how to import dump file into MySQL database.

Price

DB2MYSQL Converter is totally free with no limited features.

Download

Click here to download totally free version of Access-to-MySQL converter.
Installation

After downloading the zip program you should simply unzip it and run the db2mysql program.

Categories: Life Tags:

WordPress Plugin: MySQL Server Crash Monitor

April 4th, 2008 Loser No comments

Since end of October our MySQL Server crashed on or two times a day. We don’t no exactly why. Maybe the Databases are to big. We run several WordPress system on this MySQL Server. but the MySQL services often crashed, then my WordPress can’t connect to MySQL server and show the error. So I develop this program to monitor the WordPress MySQL server, when the server is down, WordPress will auto send me an e-mail and write to a text log file in a recorded. We can look trough the log file to analysis the MySQL server databse, in order to cantact the host administrators to fix the error.

Here is the source code of the MySQL Server Crash Monitor.


// Change the e-mail address below .
$from = "webmaster@moon-blog.com";
$to = "webmaster@moon-blog.com";
$subject = "MySQL Crashed!";
$body = date("Y-m-d H:i:s");
$headers = 'From: '.$from . "\r\n"
.'Reply-To: '.$from . "\r\n"
.'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $body, $headers);
// Log to file
$filename = 'log.txt';
$somecontent = date("Y-m-d H:i:s");
$somecontent = $somecontent . "\r\n";
if (is_writable($filename)) {
if (!$handle = fopen($filename, 'a')) {
exit;
}
if (!fwrite($handle, $somecontent)) {
exit;
}
fclose($handle);
}


First, upload a file named log.txt to the WordPress root directory, chmod it to 666.

Second, replace the e-mail address of the code to your own e-mail.

Then,opening wp-includes/wp-db.php, find “if (! $ This-> dbh)”, 66 lines in WordPress 2.3.1, paste the code after that. Save and upload the file.

Now, When the database lost connection or get problems, WordPress will automatically mail the error message to your mailbox, at the same time the message will be recorded in log.txt document.

Categories: Life Tags:

WordPress Robots.txt For SEO

April 4th, 2008 Loser No comments

The robots.txt file is used to instruct search engine robots about what pages on your website should be crawled and consequently indexed. Most websites have files and folders that are not relevant for search engines (like images or admin files) therefore creating a robots.txt file can actually improve your website indexation.

Implementing an effective SEO robots.txt file for WordPress will help your blog to rank higher in Search Engines, receive higher paying relevant Ads, and increase your blog traffic.

Here is my robots.txt files, which can further protect WordPress from this duplicate content issue.

User-agent: *
Disallow: /wp-
Disallow: /feed/
Disallow: /trackback/
Disallow: /comments/feed/
Disallow: /page/
Disallow: /comments/

After you created the robots.txt file just upload it to your root directory and you are done!

Categories: Life Tags:

WordPress Plugin: Yearly Blog Stats

April 4th, 2008 Loser No comments

Yearly Blog Stats is the easy way to display the total year number of blog posts, comments and other stats from anywhere within your blog. One file, easy to use.

With Yearly Blog Stats, you display only the information you want, where you want. This plugin is highly flexible, simple to use, and completely free.

Display any or all of the provided site statistics — customize your own set to provide only the statistics you want.

Features:

1. Total number of posts in this year
2. Total number of comments in this year
3. Most views post each month in this year

Installation and Usage

Unzip wp-stats.zip and copy wp-stats.php to your WordPress root directory.

Download Latest:

Click here to download the latest version of WordPress Yearly Blog Stats Plugin.

Categories: Life Tags:

Custom WordPress Database Error Page

April 4th, 2008 Loser No comments

From what i have mentioned before, we can use a program to monitor the WordPress MySQL server, when the server is down, WordPress will auto send an e-mail and write to a text log file in a recorded. Now, WordPress 2.3.2, the latest version of the popular blogging platform allows you to define a custom database error page.

It is very simple. Just follow the following steps and within a few minutes your custom database error page is ready!

First, upload a file named log.txt to the WordPress root directory, chmod it to 666.

Second, Download the file db-error.php and upload it to WordPress content directory(wp-content/db-error.php).

Finally, replace the e-mail address of the code to your own e-mail.

That’s it! From now on this error file will be report the error whenever your WordPress blog has encountered some trouble connecting to the database server

Categories: Life Tags:

WordPress MU Optimization Script

April 4th, 2008 Loser No comments

WordPress MU will be automatically established more than 10 tables when a new user register, so when a large number of users register will caused a lot of problem. Then I write some performance scripts can delete the WordPress MU inactive users.

The PHP source code as follows:


  $mysql_host = "localhost";
  $mysql_user = "root";
  $mysql_pass = "";
  $mysql_db = "wordpress";
  $mysql_mylink = mysql_connect($mysql_host, $mysql_user, $mysql_pass)
  or die ("Cannot make the connection");
  mysql_select_db($mysql_db, $mysql_mylink)
  or die ("Cannot connect to the database");
  $strsql="select * from wp_blogs where blog_id>2 ";
  $rs_query = mysql_query($strsql);
  $alls=mysql_num_rows($rs_query);
  while (($RS = mysql_fetch_array($rs_query))) {
  extract($RS);
  $blogid=$RS["blog_id"];
  $query2 = "select * from wp_".$blogid."_posts ";
  $result = mysql_query($query2);
  $num= mysql_num_rows($result);
  //print $num;
  if ($num<=2) {
  print "Drop TABLE IF EXISTS wp_".$blogid."_comments;";
  print "Drop TABLE IF EXISTS wp_".$blogid."_links ;";
  print "Drop TABLE IF EXISTS wp_".$blogid."_options ;";
  print "Drop TABLE IF EXISTS wp_".$blogid."_postmeta ;";
  print "Drop TABLE IF EXISTS wp_".$blogid."_posts ;";
  print "Drop TABLE IF EXISTS wp_".$blogid."_terms ;";
  print "Drop TABLE IF EXISTS wp_".$blogid."_term_relationships ;";
  print "Drop TABLE IF EXISTS wp_".$blogid."_term_taxonomy ;";
  print "Delete from wp_blogs where blog_id=".$blogid.";";
  }
  }
  mysql_close ();


Categories: Life Tags:

Pat Sajak Bald

April 2nd, 2008 Loser No comments

Pat Sajak is not bald, remember the show was aired on April 1. While many thought Pat Sajak became bald, it was a joke.

On the April 1, 2008 airdate of Wheel Of Fortune, Pat reveals to everyone that he was wearing a hairpiece and for the first time, we see Pat Sajak with a bald head. Sajak was quick to remind the audience the show took place on April 1st.

Some bloggers like Dead Light Bulb were really confused if Pat Sajak was truly bald"

"I know it's April fools day, but Wheel Watchers got the shock of their lives Tuesday Evening. At the end of the episode, after the recap between Pat and Vanna, Vanna proceeds to pull a whig of Pat Sajak. I watched in HD and it looked like the real deal. Pat manages to give Howie Mandel a little knock by saying he could host “Deal or No Deal” Now. Does this mean Sajak hates jews? Im really confused," writes the blogger.

Categories: Life Tags:

The Biggest Loser: Like a punch from a kangaroo

April 2nd, 2008 Loser No comments



The Biggest Loser goes Down Under this week, and all the gorgeous shots of Sydney are almost enough to make me ignore the blubbering. Granted, some of the tears are earned (yes, I got a little sniffley at points), but most of the weeping and gnashing of teeth was over the top.

Throw another spoiler on the barbie.

Whoo-hoo! Australia! The Land of Oz! Home of gorgeous beaches, stunning rainforests, brilliant cities, and more things that can kill you per capita than just about anywhere else on the planet! Heck, there's a seashell that can cause death! I LOVE this place!

Our hardy contestants won't be facing anything more perilous than Bob and Jillian-who are, admittedly, pretty darn scary. Bob and Jillian are trainers for Australia's version of the show, and all of a sudden their involvement in the show makes much more sense. They get paid to go to Australia? Lucky devils.

Look, there's not much point to taking the contestants to Australia, or much new stuff they do — apparently they sold a product placement to a travel company, and they decided what the hell. What it means is we get plenty of pictures of Sydney, and cool restaurants, and great markets, and the harbor, and clubs, and hotels, and wow, do I really want to go back to Australia again. Sydney may be my favorite city on the face of the planet.

The challenge
At first, I'm disdainful of the challenge — the Sydney Harbor Bridge Climb? It's cool, but it's not that huge a challenge. You're roped in at all times, and they basically tell you anyone can do it so long as you can walk under your own power. Fantastic views, not really as intimidating or exhausting as it seems. A lot of it is just a gentle slope, not even that may stairs. It's possible they were climbing and walking a hell of a lot faster than I did, but still.

Alison clues us in that the bridge is just a spiffy backdrop — they'll actually be doing a mini triathlon, starting with a 300 meter swim in Sydney Harbor. Wait, aren't there sharks there? Huh.

Apparently the Great Whites were napping, because everyone makes it to shore. Ali's a really strong swimmer, and she comes out ahead, with Mark second. They swap places during the bike ride (through the botanical gardens, which are stunning — plus, you can see really huge fruit bats hanging from the jacaranda trees, which made me laugh), and Ali is trailing Mark through the final footrace and 44-story stair climb.

Here's where I'll admit to getting a little teary-eyed: Mark makes it to the top of the stairs first — and, because he respects Ali as a competitor so much, waits for her to catch up so they can cross the finish line together (actually Ali carries him piggyback over the line. Hee!) Jay and Roger follow, and then everyone goes out to the stairs to encourage Kelly to finish the climb. It's a big deal, and I'm thrilled that everyone is supporting everyone else. That's what I like to see.

The weigh-in
It's a wild and wooly week — the competitors have had plenty of gym time, but their schedules have been disrupted something fierce. That really takes a toll on everyone. Ali again takes the top spot, losing 3 pounds for 2.01% of her body weight. Roger is next, down 2 pounds, or .85%. Curses! Everyone was hoping they'd get a shot at ejecting Roger this week.

It comes down to Kelly and the brothers — and Kelly pulls it out. She loses 1 pound, or .52%. The biggest shocker? Mark and Jay both gain a pound — apparently their bodies don't react well to a change of schedule (or time zone, or hemisphere). That means the Brothers Blue are up against each other in the elimination.

This time, Jay tearfully insists that he must be the one to go home. Oh, alas! Alack! And woe upon woe! You guessed the rest — there's a lot of crying and strangled voices, but Jay is the one to go. Even Alison looks slightly shiny-eyed. At this point, however, I'm sick of the histrionics and I just want the crying to stop.

Jay looks great at home — he's lost 100 pounds, and he's running every day. He's even organizing a 10K to raise money and awareness for the Beckwith-Wiedemann Children's Foundation. Go, Jay! Normally I'm against the whole product-placement aspect of the show, but I'm more than happy to point people towards a children's health charity.

Highlights, thoughts and odds and ends:

    * When Ali gets all dressed up to go dancing, she looks incredible. That's why it's almost physically painful to hear her worrying that her arms still look too fat. It just shows how deep body issues can go. Ali, sweetie — you look incredible. You are incredible. Trust us — you have nothing to worry about.
    * It worries me that Bob may not know precisely what a continent is. He says the Biggest Loser is dealing with weight on every continent — which I doubt, unless there are bench-pressing penguins on what's left of the Ross Ice Shelf. Then he says Australia is the second most overweight continent, following only the United States of America. Remember, Bob — Australia is the only country that is also a continent. The USA is big, but it doesn't stand on its own.
    * Bob is disappointed when Dan isn't among the competitors — "Dan had a way of making me feel young," he says. Funny, he had a way of making me feel completely nuts.
    * I did like the footage of everyone checking out the local seafood and fruit market — especially when Bob was watching Mark go after the enormous lobster in the tank. "It's gonna get you and I'm gonna laugh."
    * I loved that a women running in the park encouraged Kelly to keep going, even running alongside her.
    * Possibly my favorite moment of the whole show: Mark calls home, and starts crying, His wife, Erica says "Oh my god, are you crying again?" Then she laughs — "You're a mess! You need to snap out of it, toughen up!"

Next week, the final four are back on campus, but their trainers are not. What? Plus, America will decide the last member of the final three. Good move, or totally bogus? And are you booking your flight to Australia yet?

Categories: Life Tags:

life without limbs

March 29th, 2008 Loser No comments

but when I saw this video over at Doris: A life-changing video, I just had to visit Nick’s site.

What I found was an upbeat, positive and professional site created by a man who has been blessed by God. Considering his affliction, this is indeed awe inspiring. Head on over to Nick Vujicic’s LifeWithoutLimbs.org and be inspired.

Categories: Life Tags:
  • Partner links