Archive for the ‘ IT ’ Category

Google Alerts Webmasters About WordPress Security

Google launched a program to alert thousands of webmasters using Google Webmaster Tools, they are using an outdated version of WordPress, a popular blog published statement. This move serves as a reminder of the importance of using current versions of software and applications to ensure security.

Read the rest of this entry »

Google’s Web 2.0 Invite Spam

According to a report released by Websense Security Labs, recently, spammers have used a combination of different Google Web 2.0 services to carry out a range of attacks.

Spammers are creating bogus accounts on YouTube and Blogspot to promote their services, abusing both services. The bogus accounts on YouTube advertise multiple videos of same theme with ‘inappropriate’ content, clearly abusing the terms and conditions of YouTube services.

Read the rest of this entry »

New Update from Google Translate

For many bloggers like me, blogwalking is one way to increasing the traffic to our blog. But, sometimes when we do it, there is some problem found. It means when we find good blog but in different language that we don’t understand.

Usually I used google translate to change the language, so I know what the writing means. When I checked google translate I find some new facilities to converting in new language. Here they are:

So, what do you think about this new facilities from Google Translate ? Is there any advantages you can take it ?

PHP Tips - Backup and Restore Data Using PHP

Without using database tool like phpMyAdmin, we can still back up data from MySql with PHP script that we made. Following some example of script to back up the data.

backup.php

<?php
mysql_connect('hostname','db_user','db_pass');
mysql_select_db('database_name');
$TableName='lecturer';
$BackupFile='E:\lecturer.sql';
$query="SELECT * INTO OUTFILE '$BackupFile' FROM $TableName";
$result=mysql_query($query);
if($result) echo "Success";
else echo "Failed";
?>

Read the rest of this entry »

Matt Cutts Video

Matt Cutts, the head of Google’s Webspam team. This is some videos in Youtube about Matt Cutts speaking, maybe will help you…

Matt Cutts gives tips to small business owners

Read the rest of this entry »

Introducing Picasa 3.0 (beta)

I found Google’s Picasa 3.0 video in youtube, enjoy it:


SEO Study

Everyone like bloggers or webmasters usually played SEO to optimized the website or blogger that they’re handle it. I searching in youtube and I found some related video with SEO, here they are:

SEO Title Tags - Seo Video

Read the rest of this entry »

Let’s Play Google Chrome

I visit Matt Cutts blog that recently in 3 days his post tell about Google Chrome. From first announcement before release, live event of Google Chrome lauch, and issue about people’s privacy and copyright.

Maybe in the future the Google Chrome user will increasing in large number. The fact is, in firstly 9 hours after launch the Google Chrome reach 1% of browser market in the world. If we look this 1% market is very large number, as we know assumption of internet user around 1,46 billion. It’s mean 1% equal with 14 million user that download Google Chrome.

Read the rest of this entry »

ABU Robocon 2008 Result

Here is ABU Robocon 2008 Result,

1st winner        :   Jiao Tong Robot Team from Xi’an Jiao Tong University

1st runner up   :   Robot Team from Egypt.

2nd runner up  :   Robot Team from Toyohashi Jepang and Jump Be Team Robot from eepis-its, Surabaya-Indonesia

Read the rest of this entry »

Quagga Tutorial

This Quagga Tutorial just I write to complete Quagga Tutorial post before. Quagga is an open source routing software based on Zebra router. It’s supports the main routing protocols such as RIP, OSPF or BGP

Also in this Quagga Tutorial I will tell you that Quagga can be installed on any Linux system with a 2.4 or higher kernel. Quagga is composed of several daemons, one per routing protocol and another one called Zebra acting as the kernel routing manager. Each daemon has its own configuration file and terminal interface which can be accessed by telnet. The vtysh tool is provided to configure the Quagga router from the localhost, in a unique interface. See the Quagga tutorial for instructions on configuring the router.

Quagga works independently from the operational system (OS) over which it is installed. It must be emphasised in this Quagga Tutorial, that Quagga owns only routing capabililies and functionalities associated with it, such as access lists or route maps. It does not provide “non-routing” functionalities such as DHCP server, NTP server/client or ssh access but it is often possible to enable them on the operating system supporting your Quagga router. Read the rest of this entry »