KDE 4 new effects, see the video from youtube
July 18, 2008See the video here. You’ll be amazed on how superb kde right now.
See the video here. You’ll be amazed on how superb kde right now.
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.
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.
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.
Having read a nice article here. You’ll see an amazing article about linux and it’s relation with windows and mac osX
Tags:
Open office 2.4.1 portable is released, check it out here.
Tags: open office, portable
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:
Source article from eweek.
Tags: oracle dev tool, oracle, news
Just browsing for a while and found this list:
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: entrepreneurship, enterpreneur, richest man on the universe, rich, money
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 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.