Back to Geek's Corner 1:53 am - Mon 21 Jul 2008


Archive for the 'News Flash' Category



Told ya Election is here!

Wednesday 13 February 2008 @ 11:07 am

I was not that far off when I announced a few days ago that the MALAYSIA ELECTION IS HERE!

So, I was off by a few days… like a week or so, but the election date is said to be done during the March School Holidays..so cancel that plan to go for an overseas trip with the family and do your duty…as the roads will be busy anyway.

What are the odds??

CHAK GO MEH is the Nomination day +/- 2 days

First week of March is the Holidays…. and Voting Day

1st April will be the date the price of Petrol will increase by 60sen!
Either that is an April Fools joke by those jokers or…a nightmare!!

Who will you pun will be the majority?
Will Barisan lose more than a point (percent) than the last Election?
Will Anuar make a comeback?
Will…. Dr Mahathir contest to his seat?

Speculations make things bad for the Stock market and Forex.


Comments (2)  | Posted in News Flash    


Domain Naming Accredition

Monday 28 January 2008 @ 12:49 am

So yes, I got my accreditions back. Yes, means I have to fork out another $8000 in licensing fees plus another deposit bond of about $25,000 to ICANN and various registries.

Which means… I can register your entity for
Dot TV Dot Travel for Travel Industry

Dot SG .SG for Singapore

and many more…

Heck, I don’t even knew these countries and registries exist and the local laws….
Anyway, if you need a domain with cheap host (basic stuff)…no frills, come by the Domain Registry….

Dot Everything

*Accredited Registrar for .IM, .SG, .UK, .BE.
*Using 3rd Party Application System for Management
*Prices Includes VAT and ICANN Handling Fees.

IM NU IN asia

I’m NOW in Asia with iExploreAsia, Where do you want to be….. (NU is Now in SWEDISH)

All I need now is to create some extra jobs for you to do with Ann Julie and Ida Nerina….


Comments (1)  | Posted in News Flash    


Wordpress Update…. Don’t forget to do this!

Thursday 10 January 2008 @ 6:03 pm

If you upgraded from 2.1 to 2.3.2, please don’t forget this database update:

You will need to add a new table called POST2CAT into your database.

Depending on your setup, it maybe defaulted to WP_ prefix
so make sure you add this to your SQL

-- phpMyAdmin SQL Dump
-- version 2.8.0.1
-- http://www.phpmyadmin.net
--
-- Host: custsql-pow07
-- Generation Time: Jan 10, 2008 at 03:57 PM
-- Server version: 5.0.45
-- PHP Version: 4.4.4
--
-- Database: `azrin_net1`
--

-- --------------------------------------------------------

--
-- Table structure for table `wp_IMM-Glossary`
--

CREATE TABLE IF NOT EXISTS `wp_IMM-Glossary` (
`ID` int(10) unsigned NOT NULL auto_increment,
`Title` varchar(255) NOT NULL default '',
`Definition` text NOT NULL,
PRIMARY KEY (`ID`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;

-- --------------------------------------------------------

--
-- Table structure for table `wp_categories`
--

CREATE TABLE IF NOT EXISTS `wp_categories` (
`cat_ID` bigint(20) NOT NULL auto_increment,
`cat_name` varchar(55) NOT NULL default '',
`category_nicename` varchar(200) NOT NULL default '',
`category_description` longtext NOT NULL,
`category_parent` bigint(20) NOT NULL default '0',
`category_count` bigint(20) NOT NULL default '0',
`link_count` bigint(20) NOT NULL default '0',
`posts_private` tinyint(1) NOT NULL default '0',
`links_private` tinyint(1) NOT NULL default '0',
PRIMARY KEY (`cat_ID`),
KEY `category_nicename` (`category_nicename`)
) ENGINE=MyISAM AUTO_INCREMENT=28 DEFAULT CHARSET=latin1 AUTO_INCREMENT=28 ;

-- --------------------------------------------------------

--
-- Table structure for table `wp_comments`
--

CREATE TABLE IF NOT EXISTS `wp_comments` (
`comment_ID` bigint(20) unsigned NOT NULL auto_increment,
`comment_post_ID` int(11) NOT NULL default '0',
`comment_author` tinytext NOT NULL,
`comment_author_email` varchar(100) NOT NULL default '',
`comment_author_url` varchar(200) NOT NULL default '',
`comment_author_IP` varchar(100) NOT NULL default '',
`comment_date` datetime NOT NULL default '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL default '0000-00-00 00:00:00',
`comment_content` text NOT NULL,
`comment_karma` int(11) NOT NULL default '0',
`comment_approved` enum('0','1','spam') NOT NULL default '1',
`comment_agent` varchar(255) NOT NULL default '',
`comment_type` varchar(20) NOT NULL default '',
`comment_parent` bigint(20) NOT NULL default '0',
`user_id` bigint(20) NOT NULL default '0',
PRIMARY KEY (`comment_ID`),
KEY `comment_approved` (`comment_approved`),
KEY `comment_post_ID` (`comment_post_ID`)
) ENGINE=MyISAM AUTO_INCREMENT=4187 DEFAULT CHARSET=latin1 AUTO_INCREMENT=4187 ;

-- --------------------------------------------------------

--
-- Table structure for table `wp_link2cat`
--

CREATE TABLE IF NOT EXISTS `wp_link2cat` (
`rel_id` bigint(20) NOT NULL auto_increment,
`link_id` bigint(20) NOT NULL default '0',
`category_id` bigint(20) NOT NULL default '0',
PRIMARY KEY (`rel_id`),
KEY `link_id` (`link_id`,`category_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;

-- --------------------------------------------------------

--
-- Table structure for table `wp_links`
--

CREATE TABLE IF NOT EXISTS `wp_links` (
`link_id` bigint(20) NOT NULL auto_increment,
`link_url` varchar(255) NOT NULL default '',
`link_name` varchar(255) NOT NULL default '',
`link_image` varchar(255) NOT NULL default '',
`link_target` varchar(25) NOT NULL default '',
`link_category` bigint(20) NOT NULL default '0',
`link_description` varchar(255) NOT NULL default '',
`link_visible` enum('Y','N') NOT NULL default 'Y',
`link_owner` int(11) NOT NULL default '1',
`link_rating` int(11) NOT NULL default '0',
`link_updated` datetime NOT NULL default '0000-00-00 00:00:00',
`link_rel` varchar(255) NOT NULL default '',
`link_notes` mediumtext NOT NULL,
`link_rss` varchar(255) NOT NULL default '',
PRIMARY KEY (`link_id`),
KEY `link_category` (`link_category`),
KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=latin1 AUTO_INCREMENT=10 ;

-- --------------------------------------------------------

--
-- Table structure for table `wp_options`
--

CREATE TABLE IF NOT EXISTS `wp_options` (
`option_id` bigint(20) NOT NULL auto_increment,
`blog_id` int(11) NOT NULL default '0',
`option_name` varchar(64) NOT NULL default '',
`option_value` longtext NOT NULL,
`autoload` enum('yes','no') NOT NULL default 'yes',
PRIMARY KEY (`option_id`,`blog_id`,`option_name`),
KEY `option_name` (`option_name`)
) ENGINE=MyISAM AUTO_INCREMENT=936 DEFAULT CHARSET=latin1 AUTO_INCREMENT=936 ;

-- --------------------------------------------------------

--
-- Table structure for table `wp_post2cat`
--

CREATE TABLE IF NOT EXISTS `wp_post2cat` (
`rel_id` bigint(20) NOT NULL auto_increment,
`post_id` bigint(20) NOT NULL default '0',
`category_id` bigint(20) NOT NULL default '0',
PRIMARY KEY (`rel_id`),
KEY `post_id` (`post_id`,`category_id`)
) ENGINE=MyISAM AUTO_INCREMENT=829 DEFAULT CHARSET=latin1 AUTO_INCREMENT=829 ;

-- --------------------------------------------------------

--
-- Table structure for table `wp_postmeta`
--

CREATE TABLE IF NOT EXISTS `wp_postmeta` (
`meta_id` bigint(20) NOT NULL auto_increment,
`post_id` bigint(20) NOT NULL default '0',
`meta_key` varchar(255) default NULL,
`meta_value` longtext,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM AUTO_INCREMENT=5556 DEFAULT CHARSET=latin1 AUTO_INCREMENT=5556 ;

-- --------------------------------------------------------

--
-- Table structure for table `wp_posts`
--

CREATE TABLE IF NOT EXISTS `wp_posts` (
`ID` bigint(20) unsigned NOT NULL auto_increment,
`post_author` bigint(20) NOT NULL default '0',
`post_date` datetime NOT NULL default '0000-00-00 00:00:00',
`post_date_gmt` datetime NOT NULL default '0000-00-00 00:00:00',
`post_content` longtext NOT NULL,
`post_title` text NOT NULL,
`post_category` int(4) NOT NULL default '0',
`post_excerpt` text NOT NULL,
`post_status` enum('publish','draft','private','static','object','attachment','inherit','future','pending') NOT NULL default 'publish',
`comment_status` enum('open','closed','registered_only') NOT NULL default 'open',
`ping_status` enum('open','closed') NOT NULL default 'open',
`post_password` varchar(20) NOT NULL default '',
`post_name` varchar(200) NOT NULL default '',
`to_ping` text NOT NULL,
`pinged` text NOT NULL,
`post_modified` datetime NOT NULL default '0000-00-00 00:00:00',
`post_modified_gmt` datetime NOT NULL default '0000-00-00 00:00:00',
`post_content_filtered` text NOT NULL,
`post_parent` bigint(20) NOT NULL default '0',
`guid` varchar(255) NOT NULL default '',
`menu_order` int(11) NOT NULL default '0',
`post_type` varchar(20) NOT NULL default 'post',
`post_mime_type` varchar(100) NOT NULL default '',
`comment_count` bigint(20) NOT NULL default '0',
PRIMARY KEY (`ID`),
KEY `post_name` (`post_name`),
KEY `post_status` (`post_status`),
KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
FULLTEXT KEY `autometa` (`post_content`,`post_title`)
) ENGINE=MyISAM AUTO_INCREMENT=670 DEFAULT CHARSET=latin1 AUTO_INCREMENT=670 ;

-- --------------------------------------------------------

--
-- Table structure for table `wp_term_relationships`
--

CREATE TABLE IF NOT EXISTS `wp_term_relationships` (
`object_id` bigint(20) NOT NULL default '0',
`term_taxonomy_id` bigint(20) NOT NULL default '0',
PRIMARY KEY (`object_id`,`term_taxonomy_id`),
KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

--
-- Table structure for table `wp_term_taxonomy`
--

CREATE TABLE IF NOT EXISTS `wp_term_taxonomy` (
`term_taxonomy_id` bigint(20) NOT NULL auto_increment,
`term_id` bigint(20) NOT NULL default '0',
`taxonomy` varchar(32) NOT NULL default '',
`description` longtext NOT NULL,
`parent` bigint(20) NOT NULL default '0',
`count` bigint(20) NOT NULL default '0',
PRIMARY KEY (`term_taxonomy_id`),
UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`)
) ENGINE=MyISAM AUTO_INCREMENT=63 DEFAULT CHARSET=utf8 AUTO_INCREMENT=63 ;

-- --------------------------------------------------------

--
-- Table structure for table `wp_terms`
--

CREATE TABLE IF NOT EXISTS `wp_terms` (
`term_id` bigint(20) NOT NULL auto_increment,
`name` varchar(55) NOT NULL default '',
`slug` varchar(200) NOT NULL default '',
`term_group` bigint(10) NOT NULL default '0',
PRIMARY KEY (`term_id`),
UNIQUE KEY `slug` (`slug`)
) ENGINE=MyISAM AUTO_INCREMENT=63 DEFAULT CHARSET=utf8 AUTO_INCREMENT=63 ;

-- --------------------------------------------------------

--
-- Table structure for table `wp_tla_data`
--

CREATE TABLE IF NOT EXISTS `wp_tla_data` (
`id` int(10) unsigned NOT NULL auto_increment,
`post_id` bigint(20) unsigned NOT NULL default '0',
`url` text NOT NULL,
`text` text NOT NULL,
`before_text` text NOT NULL,
`after_text` text NOT NULL,
`rss_text` text NOT NULL,
`rss_before_text` text NOT NULL,
`rss_after_text` text NOT NULL,
`rss_prefix` varchar(255) NOT NULL default '',
PRIMARY KEY (`id`),
KEY `post_id` (`post_id`),
KEY `post_id_2` (`post_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `wp_tla_rss_map`
--

CREATE TABLE IF NOT EXISTS `wp_tla_rss_map` (
`post_id` int(10) unsigned NOT NULL default '0',
`advertisement` text NOT NULL,
PRIMARY KEY (`post_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

--
-- Table structure for table `wp_usermeta`
--

CREATE TABLE IF NOT EXISTS `wp_usermeta` (
`umeta_id` bigint(20) NOT NULL auto_increment,
`user_id` bigint(20) NOT NULL default '0',
`meta_key` varchar(255) default NULL,
`meta_value` longtext,
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=latin1 AUTO_INCREMENT=14 ;

-- --------------------------------------------------------

--
-- Table structure for table `wp_users`
--

CREATE TABLE IF NOT EXISTS `wp_users` (
`ID` bigint(20) unsigned NOT NULL auto_increment,
`user_login` varchar(60) NOT NULL default '',
`user_pass` varchar(64) NOT NULL default '',
`user_nicename` varchar(50) NOT NULL default '',
`user_email` varchar(100) NOT NULL default '',
`user_url` varchar(100) NOT NULL default '',
`user_registered` datetime NOT NULL default '0000-00-00 00:00:00',
`user_activation_key` varchar(60) NOT NULL default '',
`user_status` int(11) NOT NULL default '0',
`display_name` varchar(250) NOT NULL default '',
PRIMARY KEY (`ID`),
KEY `user_login_key` (`user_login`),
KEY `user_nicename` (`user_nicename`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;

-- --------------------------------------------------------

--
-- Table structure for table `wpau_active_plugins_info`
--

CREATE TABLE IF NOT EXISTS `wpau_active_plugins_info` (
`id` int(4) NOT NULL auto_increment,
`plugin_name` varchar(255) NOT NULL default '',
`plugin_status` varchar(255) NOT NULL default '',
`plugin_deactive_response` smallint(2) default '0',
`plugin_reactive_response` smallint(2) default '0',
`fatal_plugin` smallint(2) default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `wpau_upgrade_log`
--

CREATE TABLE IF NOT EXISTS `wpau_upgrade_log` (
`id` int(4) NOT NULL auto_increment,
`task_name` varchar(150) NOT NULL default '',
`task_status` varchar(150) NOT NULL default '',
`task_description` varchar(150) NOT NULL default '',
`task_log` text,
`start_date` datetime NOT NULL default '0000-00-00 00:00:00',
`end_date` datetime default NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

You may need to access your MYSQL DB controls thru your control panel (CPANEL / WHM / PLESK / HELM ) and go thru phpmyadmin to access them.
Check your CONFIG.PHP for your database settings.

Then …easily update yr blog using the WP-AUTO-UPGRADE script. Yeah..the post ID is satanic abit.


Comments (1)  | Posted in Announcements, Network Storage, Networks, News Flash, PHP, Scripts, Server Side, System Announcement, linux    


PayPerPost infected with deadly bird flu. Huge Cull Imminent.

Monday 11 June 2007 @ 6:51 pm

Newsflash: Bird flu detected in Florida. Millions Infected. Big Bird ‘Ted Murphman’ Culled.

I just can’t help laughing at myself and be a jack of an ass today after I saw a huge sickly chicken on top of PayPerPost’s CEO and everything man, Ted Murphy who don’t look that well after spending the whole night couped up in the office working with the chain gang of development crew, and caught a great bug thanks to an infection from Bill Gates @ Microsoft and Internet Explorer.

Yeah, with a QUARANTINE ORDER aka CURFEW in place at some places of Malaysia due to the outbreak of H5N1 Bird Flu Virus (Avian Influenza), it’s not a laughing matter for some, but with regards to the picture of the bird on top of his head… looked really really sickly..and the look of Ted with a runny nose due to the stressload of jetsetting budget airline jumping and boarding from North to South, and having to deal with monkeys like me …bad pressing their Public Relations, I can imagine what will be the next headline be:

Worst Blogger of the Century CULLED.

Sick infected chicken lands on PayPerPost

Yeah…me, being a carrier for almost all the infestations…which off topic, the CDC found out that I had SARS a year before the outbreak happened!…and I am a walking germ bomb. So.. now, Ted… this is just a pick of the week, and for you to mention me in the TownHall without me present.

BTW, Are you going to Gatecrash NUFFNANG’s FOOD LOFT party on the 23rd June in Penang?? Just wonder..so I can get my NTV7 news crew ready..or at least BizNews from the National TV, RTM and Channel News Asia… I just love the exclusive scoop!Imagine the revenue I’ll get that week…..from Google.

Like I said… you should have a sign saying : H5N1 virus free! Better get some sleep.

And Just for Laughs…..like a friend who operated New and Trendy BBS, Vicknesh Ramachandran ever said to me…it takes a huge fool to know a smaller one..and me a monsterous clown!

PS: Did I see my ugly ogre face up on front page..with the top rates about?


Comments (0)  | Posted in News Flash    


Accident

Saturday 10 March 2007 @ 11:25 am

Darn, another hit and run. Was going to the local shop down at Taman Kemuning to replace my broken muffler *(again for the third time this month) and a silly navy blue Kelisa popped out of the junction, standing and obstructing my lane.

So what else, look behind, OK, Tap Brakes, slow down…..and whoooaa!
It’s bad enough that Majlis Pembandaran Kulim Kedah don’t maintain the estate roads, but cleaning it up proper? They don’t even collect trash properly.

Images follows are deemed PARENTAL ADVISORY.
Continue Reading »
Accident


Comments (4)  | Posted in Announcements, Life Diary, News Flash    


Kulim under siege.

Wednesday 21 February 2007 @ 6:10 pm

Newsflash : Kulim, Kedah, Malaysia 1700hours
The town of Bandar Selasih Kulim (also known as Taman Selasih ) was placed under siege today by mother nature, huffing away with a minature tornado and gusty torrential rains across the town center. Residents were taken by surprise by the sheer power of the rains and damage caused by the 50mph winds which brought the town to a standstill.

The rooftop of the Sekolah Menengah Taman Selasih was sheered across from its foundations landing its huge chunk on the pavements, missing the children having lessons in the classes. A teacher was quoted to be shivering with fear when the roof was torn apart from the library building.

Apart from uprooted trees, power lines and telecommunication cables were severed during the thunderstorm causing a total estimated damage of more than RM1.2Million with many households displaced due to uprooted rooftops.Some of the power transmission poles were broken down by the sheer power of the winds. Power supply has been slowly returned to the households amid the difficulties.

At the press time, some of the residents were collecting dinner handed out by the community from the school hall. The swift action by the Parks and Recreation Unit from the Kulim City Council cutting down the fallen trees and clearing away the debris reduced the cause of traffic woes and allowed essential maintanence crews to get the services back to norm.

More pictures on the way


Comments (2)  | Posted in News Flash    


No more American Troops in Iraq

Sunday 18 February 2007 @ 7:12 am

Well, I must admit, that the senate and congress made at least one sensible choice in their daily routines.

It’s well overdue and their boys are getting clobbered there.Daily death tolls are just as how bad it was in Vietnam. And only those American boys and British lads getting it, not others.

Pity should U think?

Press Release:

THE Democrats have fired the first salvo in the battle with President George W. Bush over the war in Iraq.

The House of Representatives - with Democrats in the majority - voted on Friday to pass a non-binding resolution opposing Mr Bush’s plan to send more combat troops to Baghdad.

The move, a rare rebuke of a US president’s wartime authority, could set the stage for a constitutional fight over funding for the military effort in Iraq.

The vote, although highly symbolic, could mark a turning point in the war, according to House Speaker Nancy Pelosi.

‘The passage of legislation will signal a change in direction in Iraq that will end the fighting and bring our troops back home,’ she said.

‘The stakes in Iraq are too high to recycle proposals that have little prospect for success.’

Other Democrats warned the President to take heed.

‘If need be, Congress will end this war - with binding legislation,’ said Democratic congressman Allan Mollohan, a senior member of the House Appropriations Committee.

Democrats gained control of the two houses of Congress in an election late last year, mostly because of voter disaffection with the war.

The Senate was due to meet in a rare session yesterday for a vote on whether their chamber would take up the House resolution, which passed easily 246 -182 with the support of 17 Republicans.

Republican Whip Roy Blunt of Missouri noted that defections were fewer than the 40 to 60 some had expected, and said the Democrats now faced divisions in the debate over whether to restrict war funds.

‘The future of this debate is much more unifying for us and much more dividing for them,’ he maintained.

The Democrats, however, saw the vote as the first round of several more against a beleaguered administration.

Clearly, troop funding will be central to the whole debate on Iraq in the coming months. But Democrats have so far been far from united on how to restrict Mr Bush’s use of US$93.4 billion (S$143 billion) in new war funds.

Some fear restricting funds could be seen as failing to support US troops.

One suggestion has been not to cut money for troops abroad, but attach conditions on war funds that would force Mr Bush to halt the troop build-up in Iraq.

The Bush administration, which saw this political defeat coming, sought to focus on the impending battle over the war’s funding.

White House spokesman Tony Snow said: ‘Soon, Congress will have the opportunity to show its support for the troops in Iraq by funding the request the President has submitted, and which our men and women in combat are counting on.’


Comments (0)  | Posted in News Flash    


«« Previous Posts


Buddy Link:
SEO Engineering 101 Hacks and Cracks
In the Kitchen With Kak Mar
Walk with me in Europe
Singaporean in Europe
Ramble with the V@mp
With Her Royalness A Tun King Tia





Your Market Research Here


Info Pages
+
  • Alexa & Google PageRanks
  • COPYRIGHT
  • Free Gold Offer!
  • Free Hosting Offer!
  • Who Cares I am a Geek!
  • Advertiser Read Me
    • Advertiser Update Rev. 01/2007
    • No Follow on Links

Admin
+
  • Admin
  • Log in

Blog Categories

Monthly Archives
By Month
  • July 2008 (2)
  • June 2008 (1)
  • May 2008 (5)
  • April 2008 (6)
  • March 2008 (20)
  • February 2008 (17)
  • January 2008 (33)
  • December 2007 (27)
  • November 2007 (24)
  • October 2007 (11)
  • September 2007 (7)
  • August 2007 (10)
  • July 2007 (2)
  • June 2007 (35)
  • May 2007 (54)
  • April 2007 (47)
  • March 2007 (69)
  • February 2007 (97)
  • January 2007 (98)
  • December 2006 (62)
  • November 2006 (7)
  • October 2006 (8)
  • September 2006 (4)
  • August 2006 (7)
  • July 2006 (1)
  • June 2006 (1)
  • May 2006 (7)
  • April 2006 (16)
  • March 2006 (22)
  • February 2006 (1)
  • July 2005 (1)
  • June 2005 (1)
  • May 2005 (3)
  • April 2005 (3)

Recent Comments:
  • zackire: whats new.. the 3G life in M’sia is still as slow as a snail.
  • Mike: Bro, this thread is kinda old dated May 2007. If on today, 14th June 2008, I want to apply Etrade account, how can I do it? Do I need to go through...
  • CypherHackz: In my opinion, Nuffnang tries to keep away all their competitors. That is why they run Glitterati. But one of my site got high traffics everyday...
  • th3beast: hi why is e-trade history? i have being withdrawing my paypal into it for 1.5 years now and using affin bank atm to take the money. lately i wasnt...
  • Boss Stewie: Sorry dude… your Glitterati went off because you have Aductions.
  • zz: salam..buka minda juara
  • grace: i would like to know the standard of mayherbs pharma.Any pictures to view the process of doing it.Thanx!
  • Michael Woo: azrin! dunno i drop a comment here already o not but just wondering whether you experience and problem with your etrade debit carD? mine stop...
  • Azhar Ahmad: Yeahhh, i will apply for adsAuction
  • azrin: tuh untuk satu rack bro.. 50 odd servers. btw, look for my other blogs. www.temasek.nu

Recent Trackbacks:
  • Rare United States Coins: I found your site on technorati and read a few of your other posts. Keep up the good work....
  • Told ya Election is here!: Azrin's Little Devil Networks :
  • Memoirs of this Melayu rambling in Europe: content in multiple formats which the advertisers can pick and choose on...
  • Memoirs of this Melayu rambling in Europe: you want to stalk me? See what the other bloggers are up to? Watch me...
  • maRLinda - A day in life of a cook, photographer and traveller wannabe…: ...



Google