To share know-how, news, experience, and information regarding technology, software, hardware, programming, Python, ABAP/4, product, high-performance computing, grid, cluster, ERP, SAP R/3, SAP NetWeaver, and many more.

The CentOS 4.3 has released!!!

The CentOS 4 has released new major version to 4.3. Now availability for i386, x86_64 and ia64 and s390, s390x, alpha, ppc and sparc inprogress build pkgs for announced later.

This's version is upgrade and update some features.

  • Including yum-plugin-fastestmirror into released (CentOS-Base.repo)
  • Add and support Frysk, InfiniBand Architecture (IBA), and z/VM hypervisor.
  • Update security some packages.

The Frysk is analysis tools (RH call execution-analysis technology) some as DTrace project of Sun MicroSystem. But the Dtrace support (solaris,opensolaris) only. If you want to know Frysk or Dtrace please follow link in below.

phpMyAdmin released new version!!.

I found the phpMyAdmin project is released new major released version 2.8.0.2. It change to improvement features.

The new featu

Google has just  , a new financial search engine, to the wild and it is also posted in slashdot. The official announcement has been posted at the . It is not absolutely the new idea for specific search topic like this. There are so many financial search engine right now, e.g., , FinanceWise, TraderBot, and . Wait a minute! Google Finance is not as simple as all existing services. Below are noticeable differences at a glance.

How to fix corrupt partition table

Have you ever seen 80 GB free space in 15 GB hard disk drive? I have just seen in my very old hard drive. I would like to install Ubuntu 5.10 into this drive. Unfortunately, the process always hangs during formatting. I also tried to use only first 15 GB with no luck. My thought is there might be something wrong in the partition table and I have to clear them all. Fortunately, Ubuntu comes with lots of hard disk utilities such as fdisk, cfdisk, sfdisk, parted, and hdparm.

First of all, I tried to see its cylinder, head, and sector recognized by BIOS and kernel. hdparm -i and hdparm -I shown that raw information and current information are different. Something wrong here. So I should make partition table with the correct information. parted and fdisk are not useful for this situation. Instead, I have to use cfdisk or sfdisk which allows me to override cylinder, head, and sector by the correct ones.

Ruby and BitTorrent

As of today, we know what BitTorrent is and how to use it. The original implementation of BitTorrent has been written in Python by Bram Cohen. From the BitTorrent, Python is now one of well-known language wider. Thanks! The original implementation then has been modified and extended to support more sophisticate features and some of them are so popular right now, e.g., ABC and BitTornado. Then Java, C, C++, and C# have been used to implement in different ways, e.g., Azureus, libbt, BitComet, uTorrent, and etc. Where is Ruby?

Comparison of ruby and python line by line (3/3)

This post is the last part of this comparison. I am going to demonstrate how to develop XML-RPC server and client in Ruby and Python. As I said earlier, I don’t know much about Ruby. Below ruby codes are based on an article in Linux Journal #144. I just tried to develop similar program in Python. There are 2 parts; server and client. Let me start from the server.