KDE 4 new effects, see the video from youtube

July 18, 2008

See the video here. You’ll be amazed on how superb kde right now.


MS has launched Vista Compatibility Tool

July 16, 2008

As you already know, the microsoft has released vista compatibility tool that can be accessed from here. As i read from here, this software is designed to test whether your hardware and software are compatible with Windows Vista or not. Although not everyone is happy with the news however.

Well, as a vista user, i only hopes that this OS will gain bigger support from the hardware vendors and also the software vendors.


How to defend your server from Distributed Denial of Service

July 15, 2008

It was an interesting article from tech-recipes.com, just check it out. A noteworthy article for system admin or anyone who is interested in computer security.


Converting FLV video files to other video file types in Linux

You may use ffmpeg, just execute the ffmpeg command. You may make a bash script to make the process automatic. This is the script that i get from http://sysblogd.wordpress.com/2008/07/15/convert-multiple-flash-flv-videos-to-for-example-mpeg-encoding/

#!/bin/bash
##convert all videos of $srctype type to $desttype type encoding
SRCCODEC=”flv”
DESTCODEC=”mpeg”
for i in *.$SRCCODEC; do
echo
echo -n “################### “
echo -n “will convert \”$i\”"
echo ” ###################”
echo
ffmpeg -i “${i}” -y “${i%%.${SRCCODEC}}.${DESTCODEC}” && rm -vf “$i”
done

To know the details, just click link above.


Is Linux can be compared to Windows or MacOS

July 13, 2008

Having read a nice article here. You’ll see an amazing article about linux and it’s relation with windows and mac osX

Tags:


The open office 2.4.1 portable is released.

July 7, 2008

Open office 2.4.1 portable is released, check it out here.

Tags: ,


Oracle released it’s free sql developer tool

July 6, 2008

A good news for oracle developer, the new version of oracle’s free sql developer tool is released.

Oracle SQL Developer Release 1.5 contains many new features, the significant one is the capacity to develop or debug sql and pl/sql code.

Some other features:

  1. Tighter integration with source code control systems using some new techniques, eg: Concurrent Versions Systems and Subversion to enable database developers to manage SQL and PL/SQL text files from within the tool.
  2. This capability will allows developers to effectively navigate through their repositories of versioned objects and edit those files.

Source article from eweek.

Tags: , ,


20 worlds richest man…

July 5, 2008

Just browsing for a while and found this list:

 

  1. Warren Buffett
  2. Carlos Slim Helu
  3. William Gates III
  4. Lakshmi Mittal
  5. Mukesh Ambani
  6. Anil Ambani
  7. Ingvar Kamprad
  8. KP Singh
  9. Oleg Deripaska
  10. Karl Albrecht
  11. Li Ka-shing
  12. Sheldon Adelson
  13. Bernard Arnault
  14. Lawrence Ellison
  15. Roman Abramovich
  16. Theo Albrecht
  17. Liliane Bettencourt
  18. Alexei Mordashov
  19. Prince Alwaleed
  20. Mikhail Fridman

You may find the Complete List too. Some of the richest mans on the list is inspiring, but some is stupid i guess.

The bottom line is, they have the strength and passionate about their dream….

Tags: , , , ,


Beware of Apple MacBook Air

I just read this, and it’s true.

The Macbook Air is back heavy.

If you sit it open on a flat surface, most of the weight is in the rear. This is terrible for a laptop. My wife finds that everytime she removes her hands the whole thing almost tumbles off her lap. It would have been better to have the thick part in the front, but I suppose this doesn’t make for as nice of a demo.

Apple apparently does not have any parts in stock.

If your Macbook Air breaks, you are looking at a long wait for a repair. In my experience, typical turnaround times for Apple on laptop repairs are less than a week, usually around 4-5 days. The wait time for the Air appears to be somewhere north of 2 weeks.

Especially if you are in a country where apple stores not exist. The second point is real thing.


python

Python is really easy to learn, and regardless of what you hear, the significant whitespace makes code enjoyable to read. How easy? I hired someone who had never used Python or Django, and they wrote the Chesspark forum in about a week.