Friday, August 29, 2008

On Ruby: RubyInline, Making Making Things Faster Easier

On Ruby: RubyInline, Making Making Things Faster Easier
Optimize what you need to (and only what you need to), profile find out what that is (it may be slow, but profiling is your friend), and use the right tools (rewriting a bit of code with RubyInline is way better than rewriting the whole app in C).

Another Ruby on Rails PSR article

Ruby on Rails Development: Justify Your Choice of Ruby on Rails: Articles and Links
The top two concerns are usually performance and scalability: "Ruby is slow" or "Interpreted languages are slow" seem to be the most common. Here are some excellent articles on the subject (the overall summary being: Rails provides a great advantage in getting your product to market, there are reasonable and inexpensive ways of addressing any performance bottlenecks, and scalability is not a problem):

Ruby on Rails Scalability - Is it a Problem?

Ruby on Rails Scalability - Is it a Problem?
the cost per request is plummeting, but the cost of programming is not. Thus, we have to find ways to trade efficiency in the runtime for efficiency in the “thought time” in order to make the development of applications cheaper. I believed we’ve long since entered an age where simplicity of development and maintenance is where the real value lies.

DNS in Windows XP Tip!

DNS in Windows XP Tip!
Prevent DNS problems with this tip for Windows XP...

Thursday, August 28, 2008

how to identify H.264 profile

[Sip-implementors] H.264 in SIP - question about profile-level-id

1. hexdump -C test.mp4 | less
2. search for profile-level-id=4dE01E

You should refer to ITU-T H.264 standard

From the document
Baseline profile: profile_id 66 = 0x42
Main profile: profile_id 77 = 0x4D
Extended profile: profile_id 88 = 0x58

Tuesday, August 26, 2008

Making djbdns and dnscache play with Ubuntu

Aaron Brady - insom.me.uk - Making djbdns and dnscache play with Ubuntu
Now that djbdns is public domain it can be included in Debian-based distributions. Gerrit Pape has done the hard work of packaging everything up and submitting to the ftpmasters at Debian, and it looks to have been accepted into sid.

I, however, run Ubuntu, which hasn't imported this package yet. Ideally, I'd also like to avoid running daemontools, as upstart does a similar job and already comes with Ubuntu.

Friday, August 22, 2008

Geographic IP Address Locater

IP Address Locator - Enter an IP address to find its location - Lookup Country Region City etc

IP Address Locator Tool

This IP Address Map lookup service is provided for FREE by Geobytes, inc to assist you in locating the geographical location of an IP Address. Click here to checkout our other FREE localization services.

Thursday, August 21, 2008

How To Use SSH in Unix or Linux shell script

How To Use SSH in Unix or Linux shell script
SSH general syntax

ssh user@hostname command

Keyless ssh / ssh-keygen: setup and gotchas

Keyless ssh / ssh-keygen: setup and gotchas
If you ssh into a server a lot, you'll get tired of typing in your
password over and over again pretty quickly. Fortunately, you can
generate a set of public and private keys on your local client machine,
place the public key on the server, and ssh without having to enter a
password. Here's how.

Tuesday, July 29, 2008

Device Manager does not display devices that are not connected to the Windows XP-based computer

Device Manager does not display devices that are not connected to the Windows XP-based computer
Device Manager does not display devices that are not connected to the Windows XP-based computer
View products that this article applies to.
Article ID : 315539
Last Review : November 18, 2005
Revision : 1.2
This article was previously published under Q315539
SYMPTOMS
Device Manager displays only non-Plug and Play devices, drivers, and printers when you click Show hidden devices on the View menu. Devices that you install that are not connected to the computer (such as a Universal Serial Bus [USB] device or "ghosted" devices) are not displayed in Device Manager, even when you click Show hidden devices.

Back to the top
WORKAROUND
To work around this behavior and display devices when you click Show hidden devices:
1. Click Start, point to All Programs, point to Accessories, and then click Command Prompt.
2. At a command prompt, type the following command , and then press ENTER:
set devmgr_show_nonpresent_devices=1
3. Type the following command a command prompt, and then press ENTER:
start devmgmt.msc
4. Troubleshoot the devices and drivers in Device Manager.

NOTE: Click Show hidden devices on the View menu in Device Managers before you can see devices that are not connected to the computer.
5. When you finish troubleshooting, close Device Manager.
6. Type exit at the command prompt.

Note that when you close the command prompt window, Window clears the devmgr_show_nonpresent_devices=1 variable that you set in step 2 and prevents ghosted devices from being displayed when you click Show hidden devices.
If you are a developer or power user and you want to be able to view devices that are not connected to your computer, set this environment variable globally:
1. Right-click My Computer.
2. Click Properties.
3. Click the Advanced tab.
4. Click the Environment Variables tab.
5. Set the variables in the System Variables box.
NOTE: Use this method only for troubleshooting or development purposes, or to prevent users from accidentally uninstalling a required device that is not connected to the computer (such as a USB device or docking station that is not connected to a laptop computer).

Wednesday, July 09, 2008

Slow Windows XP Shutdown - enrii.blog

Slow Windows XP Shutdown - enrii.blog
If your Windows XP takes a very long time to shut down, you can try User Profile Hive Cleanup Service provided by Microsoft (yes, Microsoft). The users at digg claimed that it really helps to shorten shut down time. I remember it took a very long time to shut down before I formatted and reinstall my PC not too long ago.



I tried this, and it really worked. My XP used to take forever to shutdown, usually making me to force it to shutdown by holding down the power button. Now, after installing this service, it takes less than 5 seconds to shut down. Wow.

Sunday, July 06, 2008

Shark Attack!!!



Kids play with shark and tow truck toys!

Tuesday, June 24, 2008

mp4 file format parsers

you can find MP4

tools at :



http://mp4ui.sourceforge.net

A tool for indexing (hinting) a MP4 files and that gives

a few info about the content (tracks, ...)



http://www.mpeg4ip.net

A open source project including :

mp4info : an utility to dump info from mp4 file

mp4f : a library for parsing mp4 files

Tuesday, June 17, 2008

[tcpdump] how to fix the bad checksum problem

If you capture packets using tcpdump directly from the server, your capture file may contain bad checksums. This is because your OS is currently configured to use the hardware checksum offloading feature of the NIC. When this feature is enabled, expecting the NIC to rewrite the checksums, OS doesn't bother to fill (nor to reset) in the checksum fields. The problem is that tcpdump is capturing the packets before the checksums are rewritten by the NIC.

Use the following command to turn off the checksum offloading before using tcpdump (on ubuntu).

sudo ethtool -K eth0 rx off tx off

If you already have a capture file not usable due to the wrong checksums, use the following command to repair the file.

sudo tcpreplay -i eth0 -F -w output.cap input.cap

or

sudo tcprewrite -i input.cap -o output.cap -C

Blogged with the Flock Browser

Monday, June 16, 2008

Top 10 Useful Bookmarklets

Having a good set of bookmarklets on your browser's toolbar is like having a web-savvy Leatherman handy—you can take them anywhere, use them in many situations, and they just simply work. A bookmarklet is a little different than a plain old bookmark—it's a snippet of JavaScript that can perform all sorts of magic on the web page you're currently viewing. You add bookmarklets to your bookmarks collection to get all sorts of things done as you surf the web. Let's take a look at some of the best bookmarklets available, which can help you search and email, download videos, and work out some of the web's kinks.

To start using a bookmarklet, make sure your browser's bookmarks toolbar is visible. Then, drag and drop the bookmarklet link (enclosed in square brackets below each item on this post) to your bookmarks toolbar. When you're on a page where you want to use the bookmarklet? Just click its name on your toolbar.

Top 10 Useful Bookmarklets

Blogged with the Flock Browser

Monday, June 02, 2008

Flock - the browser for people who like to be connected

http://www.flock.com/

Get ready to meet your new favorite browser!
Blogged with the Flock Browser

Main Page - FreeMind - free mind mapping software

Main Page - FreeMind - free mind mapping software
So you want to write a completely new metaphysics? Why don't you use FreeMind? You have a tool at hand that remarkably resembles the tray slips of Robert Pirsig, described in his sequel to Zen and the Art of Motorcycle Maintenance called Lila. Do you want to refactor your essays in a similar way you would refactor software? Or do you want to keep personal knowledge base, which is easy to manage? Why don't you try FreeMind? Do you want to prioritize, know where you are, where you've been and where you are heading, as Stephen Covey would advise you? Have you tried FreeMind to keep track of all the things that are needed for that?

Friday, May 30, 2008

Repair Master Boot Record with MBRFix from Windows 2000, XP etc.

Fixmbr
- Repair Master Boot Record with MBRFix from Windows 2000, XP etc.
instead of using fdisk /mbr. FixMbr could help you recreating original
master boot record (MBR) that works with any Windows (Win2k), XP, 95,
98 when Linux LILO damaged it.

http://www.ambience.sk/fdisk-master-boot-record-windows-linux-lilo-fixmbr.php

Wednesday, May 14, 2008

Free ISO Recorder


ISO Recorder v 2

ISO Recorder is a tool (power toy) for Windows XP, 2003 and now Windows
Vista, that allows (depending on the Windows version) to burn CD and
DVD images (DVD support is only available on Windows Vista), copy
disks, make images of the existing data CDs and DVDs and create ISO
images from a content of a disk folder.

Friday, May 09, 2008

Post to your blog without ever leaving Firefox

ScribeFire is an extension for the Mozilla Firefox Web Browser
that integrates with your browser to let you easily post to your blog: you can drag and drop formatted
text from pages you are browsing, take notes, and post to your blog.

--
Very nice!!!

Thursday, August 02, 2007

Wait cursor for Windows Mobile

Wait cursor � Mobiledeveloper: "Wait cursor

Getting the nice colorful system-is-busy hourglass (or whatever it is) to appear is extremely simple:

Cursor.Current = Cursors.WaitCursor;"

YouTube Architecture | High Scalability

YouTube Architecture | High Scalability: "YouTube grew incredibly fast, to over 100 million video views per day, with only a handful of people responsible for scaling the site. How did they manage to deliver all that video to all those users? And how have they evolved since being acquired by Google?"

iPhone skin for Windows Mobile Phones

Intellectual Property Law and legal issues of computers and telecommunications � Blog Archive: "there is a software which emulates some menu features of the future Apple’s iPhone."

Wednesday, July 25, 2007

Optimizing your MySQL Application

Optimizing your MySQL Application: "Optimizing your MySQL Application
By Mike Sullivan

So you’ve finished reading Kevin Yank’s article Building a Database-Driven Web Site Using PHP and MySQL [1], and you’re happily databasing your site, when it starts to slow down. You need to get your site zipping along again before your host threatens to kick you off for almost killing their server. How do you do this? Enter: MySQL’s internal turbo-charger, indexes."

Wednesday, July 18, 2007

Stealther :: Firefox Add-ons

Stealther :: Firefox Add-ons: "If there are times you want to surf the web without leaving a trace in your local computer, then this is the right extension for you. What it does is temporarily disable the following:
- Browsing History (also in Address bar)
- Cookies
- Downloaded Files History
- Disk Cache
- Saved Form Information
- Sending of ReferrerHeader
- Recently Closed Tabs list"

Tuesday, July 17, 2007

SeeqPod Music beta - Playable Search - Find. Discover. Watch. Listen. Share.

SeeqPod Music beta - Playable Search - Find. Discover. Watch. Listen. Share.

Playable music/video search

Remlap Software - Clickster (mp3 search and download)

Remlap Software - Clickster (mp3 search and download): "Clickster 1.50 (FREEWARE)

music for nothin' and your tracks for free

Clickster is the essential application for every lover of music. Clickster enables you to easily search for and download mp3 files from the Internet in a totally legal and safe environment. Because Clickster sources mp3's which are hosted on web servers, you can expect download speeds which put P2P networks to shame. With currently over 30 million tracks available to download (and growing), we're certain Clickster will be able to locate the music you really want to listen to and there are no dead/broken links."

G2P Beta v0.2: Google helps me find the goods

G2P Beta v0.2: Google helps me find the goods: "What does G2P do?
-G2P (Google to Person) uses some crafty Google searches to help locate open directories or otherwise shared files. These searches are nothing secret (In fact, take a look at the results, so you can see how it is done. However, it is much easier to remember g2p.org than these complex searches. Really I put this site together to make it easier on me, and then shared it with you."

Friday, July 13, 2007

Introduction To Bash Shell Scripting (2004.11.06)

Introduction To Bash Shell Scripting (2004.11.06): "Introduction To Bash Shell Scripting
References

* Learning the Bash Shell, Cameron Newham & Bill Rosenblatt (O'Reilly & Associates, Inc)
* Linux in a Nutshell, Jessica Perry Hekman (O'Reilly & Associates, Inc)
* The UNIX Programming Environment, Brian W Kernigham & Rob Pike (Prenice Hall)
* Unix Power Tools, Jerry Peek, Tim O'Relly, & Mike Lookides (O'Reilly & Associates,Inc)
* Advance Bash Scripting Guide : http://www.tldp.org/LDP/abs/html
Appendix B has some good Reference Cards"

Wednesday, June 27, 2007

Windows Mobile mp3tunes.com player

Oboe Player allows you to access your mp3tunes.com locker account from your mobile device. In other words, you need a valid locker account in mp3tunes.com. Additionally, you also need to have some music files already uploaded to your locker to use this program. You can get a locker account with unlimited space for free.

Get Oboe Player for Windows Mobile now!

Open In New Window Bookmarklet

Firefox is theee best web browser, which made the tabbed browsing a de-facto standard. However, sometimes you really want to pop out the current tab to a new window.

This bookmarklet does just that: open the current tab in a new browser window. Even the navigation history is copied so that you can keep navigating back and forth as if you were in the original tab.

Drag the following link to the Bookmark toolbar of your firefox!!!

Open In New Window

Friday, May 04, 2007

Cinco de Mayo

Cinco de Mayo is a date of great importance for the Mexican and Chicano communities. It marks the victory of the Mexican Army over the French at the Battle of Puebla. Although the Mexican army was eventually defeated, the "Batalla de Puebla" came to represent a symbol of Mexican unity and patriotism. With this victory, Mexico demonstrated to the world that Mexico and all of Latin America were willing to defend themselves of any foreign intervention. Especially those from imperialist states bent on world conquest.

Cinco de Mayo's history has its roots in the French Occupation of Mexico. The French occupation took shape in the aftermath of the Mexican-American War of 1846-48. With this war, Mexico entered a period of national crisis during the 1850's. Years of not only fighting the Americans but also a Civil War, had left Mexico devastated and bankrupt. On July 17, 1861, President Benito Juarez issued a moratorium in which all foreign debt payments would be suspended for a brief period of two years, with the promise that after this period, payments would resume.

The English, Spanish and French refused to allow president Juarez to do this, and instead decided to invade Mexico and get payments by whatever means necessary. The Spanish and English eventually withdrew, but the French refused to leave. Their intention was to create an Empire in Mexico under Napoleon III. Some have argued that the true French occupation was a response to growing American power and to the Monroe Doctrine (America for the Americans). Napoleon III believed that if the United States was allowed to prosper indiscriminately, it would eventually become a power in and of itself.

In 1862, the French army began its advance. Under General Ignacio Zaragoza, 5,000 ill-equipped Mestizo and Zapotec Indians defeated the French army in what came to be known as the "Batalla de Puebla" on the fifth of May.

In the United States, the "Batalla de Puebla" came to be known as simply "5 de Mayo" and unfortunately, many people wrongly equate it with Mexican Independence which was on September 16, 1810, nearly a fifty year difference!

Friday, August 04, 2006

Mel Drive Through Malibu

Check out this FREE ringtone of Mel's big night out driving in Malibu. Hear him curse out the cops and be his general charming self.

read more | digg story

Monday, May 01, 2006

Google Operating System: Download Google Videos As AVI Files

Google Operating System: Download Google Videos As AVI Files: "If you want to save videos from Google Video and you use Windows, you have the option to download them as GVI files and play with Google Video Player.

If you want to save the videos as AVI and view with any video player on any platform, use this bookmarklet: Google Videos As AVI. You can save it as a bookmark in your browser or drag and drop it to the link toolbar. Next time when you see a video you like on Google Video, click on the bookmarklet and you can save the video."

USB MyPet Puppy and Monkey Webcam - Gizmodo

USB MyPet Puppy and Monkey Webcam - Gizmodo

Lovers of cute things (and the Japanese) will snatch up this USB MyPet Webcam that comes in both monkey and puppy models. Supporting up to 640x480 at 15 frames per second, this webcam is perfect for the girlfriend that hates tech.

Readers could also use it to spy on a victim who doesn’t know this is a webcam. A very dumb victim.

MyNewPlace apartment search - Lifehacker

MyNewPlace apartment search - Lifehacker: "Just-hatched apartment search engine MyNewPlace offers a database of over 6 million apartment rentals for those of you on the hunt for new digs."

Friday, April 28, 2006

Virtual Dimension

Virtual Dimension: "A free, fast, and feature-full virtual desktop manager for Windows platform"

CNN.com - Judge's�Da Vinci code solved - Apr 28, 2006

CNN.com - Judge's�Da Vinci code solved - Apr 28, 2006: "LONDON, England (AP) -- A secret code embedded in the text of the judge's ruling in the case of Dan Brown's bestseller 'The Da Vinci Code' has been cracked."

Thursday, April 27, 2006

Google Reader

Google Reader: "Two amazing technologies with regard to cameras. And there is no reason to believe why either won't apply to cameraphones."

Thursday, April 13, 2006

► Alltel Selects Jamster To Provide Mobile Content For Millions of Subscribers - Broadband and Wireless • .: Internet Ad Sales :.

► Alltel Selects Jamster To Provide Mobile Content For Millions of Subscribers - Broadband and Wireless • .: Internet Ad Sales :.: "CTIA Wireless 2006, Las Vegas, NV, April 6, 2006 – Jamster, a worldwide leader in mobile content and entertainment services and a wholly owned subsidiary of VeriSign, Inc. (Nasdaq: VRSN), today announced that it is providing Alltel (NYSE: AT) with mobile content services for its BREW-enabled phones. "

picturephoning.com: Phone to Carry Video Projector

picturephoning.com: Phone to Carry Video Projector: "A South Korean company developed a coin-size laser video projector module that can fit into portable gadgets such as mobile phones and digital cameras"

HELIO and Yahoo! Announce Mobile Services Partnership - Gizmodo

HELIO and Yahoo! Announce Mobile Services Partnership - Gizmodo: "Today they’re announcing the deal they’ve made with Yahoo!, which will be providing HELIO’s users with easy access to Yahoo!’s mobile web offerings over 3G with just one click from the main menu of a HELIO device."

AbsurdlyCool Freebie Finder

AbsurdlyCool Freebie Finder: "Hello. Freebie Finder is an automated free stuff aggregator. I've designed it to collect free stuff offers from top freebie sites, while filtering out scams and referral pyramids. This site is in beta, and so your suggestions are always welcome. Listed below are the most recent offers found, with their sources to the right. Remember to bookmark the site, it updates every few hours! (A lot of people have been asking: yes, I have plans to add an RSS feed shortly! Check back soon.)"

The Linux Box

The Linux Box: "Have you ever tried to create a slideshow presentation only to find that the templates that come with your favorite open source office suite overly bland?

I’ve been there as well, but instead of trying to import various MS Office templates that aren’t really that nice either, I’ve decided to create some of my own with the Open Document Format in mind. I’m releasing all the following templates under a LGPL v. 2.1 or later license."

Tuesday, April 11, 2006

Damn Interesting � The Gravity-Powered Aircraft

Damn Interesting � The Gravity-Powered Aircraft: "'gravity powered hybrid aircraft' concept which operates on the principles of buoyancy, aerodynamic lift, and gravity. It uses a cycle of climbing and descending to maintain its lift and forward speed, mimicking the behavior of the bodies of warm and cold air which make up the weather."

Monday, April 10, 2006

Richard Colbert's Rants, Raves, Ideas and Complaints: Making the Switch from Microsoft to FREE!

Richard Colbert's Rants, Raves, Ideas and Complaints: Making the Switch from Microsoft to FREE!: "Below you will find a list of Very good Operating Systems and a nice sized list of FREE (except when noted) software. I have tried to include everything that would be needed on most Desktops and Workstations and even included accounting and tax software as those seem to be two of the biggest problems."

Friday, April 07, 2006

The Ultimate Linux Newbie Guide :: Linux without the technobabble!

The Ultimate Linux Newbie Guide :: Linux without the technobabble!: "Whether you have been using a computer for years, or if you are totally new to it all, this guide can help you get to grips with all the important parts of using Linux, as opposed to Windows (or Mac OS) in order to operate your computer."

How to Wow 'Em Like Steve Jobs

How to Wow 'Em Like Steve Jobs: "The Apple CEO is well known for his electrifying presentations. Here are five tips to make your next talk just as mesmerizing -- or close
"

Wednesday, April 05, 2006

Top 100 Freeware downloads at SnapFiles

Top 100 Freeware downloads at SnapFiles

Origami Science?!!!

Science: "The intersections between origami, mathematics, and science occur at many levels and include many fields of the latter. We can group these intersections into roughly three categories:

* Origami mathematics, which includes the mathematics that describes the underlying laws of origami;
* Computational origami, which comprises algorithms and theory devoted to the solution of origami problems by mathematical means;
* Origami technology, which is the application of origami (and folding in general) to the solution of problems arising in engineering, industrial design, and technology in general."

Wired News: Micropayments Drive Asian Games

Wired News: Micropayments Drive Asian Games: "Some of the most popular games in Asia are given away for free and charge no subscription dues, but collect micropayments for custom avatars and other items. Social networking is a key feature of the games, and it turns out players are quick to fork over yen and yuan to tweak their appearance to their liking."

EETimes.com - ARM offers first clockless processor core

EETimes.com - ARM offers first clockless processor core: "Because clockless processors consume zero dynamic power when there is no activity, they can significantly extend battery life compared with clocked equivalents."

A Windows users journey to Mac

A Windows users journey to Mac: "This blog is written by a Windows veteran, a Mac newbie, describing his switch to Mac from Windows. It's both slightly technical and very technical, ranging from IM clients to setting up PHP/MySQL. Worth a read, especially for people considering a switch."

Tuesday, April 04, 2006

Watch HDTV for free with an indoor antenna - AVING - Global News Network

AVING - Global News Network: "Watch HDTV for free with an indoor antenna"

Homebot - Gizmodo

Homebot - Gizmodo: "The Internet Renaissance robot, or ITR, is the world’s first humanoid
robot to be “integrated” into the family thanks to its unique communications systems."

Organs grown from cells signal new transplant era - 05 Apr 2006 - World News

Organs grown from cells signal new transplant era - 05 Apr 2006 - World News: "The world's first organs grown in a laboratory have been successfully implanted in humans, heralding a new era in transplant surgery.

Seven patients given new bladders grown from their own cells have functioning organs that have performed as well as those conventionally repaired but with none of the ill effects, scientists have revealed. "

Turn your Greasemonkey scripts into Firefox extensions - Lifehacker

Turn your Greasemonkey scripts into Firefox extensions - Lifehacker: "The User Script Compiler converts your Greasemonky scripts into full-fledged Firefox extensions."

PythonSpeed/PerformanceTips

PythonSpeed/PerformanceTips: "This page is devoted to various tips and tricks that help improve the performance of your Python programs."

The Freenet Project - index - beginner

The Freenet Project - index - beginner: "Freenet is a decentralised 'peer-to-peer' system designed to allow the anonymous sharing of information on the Internet. After many months of work, the first alpha version of Freenet 0.7 is ready for testing."

Friday, March 31, 2006

Wired News: Steve Jobs' Best Quotes Ever

Wired News: Steve Jobs' Best Quotes Ever: "One of the great things about Steve Jobs is what comes out of his mouth.

The CEO of Apple Computer is a master of hype, hyperbole and the catchy phrase. Even when he's trying to talk normally, brilliant verbiage comes tumbling out."

The Top 10 weirdest keyboards ever - Fosfor Gadgets

The Top 10 weirdest keyboards ever - Fosfor Gadgets: " The Top 10 weirdest keyboards ever"

Saab BioPower Hybrid Concept: World's First Fossil-free Hybrid Vehicle World Premiere at Stockholm Auto Show

Saab BioPower Hybrid Concept: World's First Fossil-free Hybrid Vehicle World Premiere at Stockholm Auto Show: "Saab BioPower Hybrid Concept: World's First Fossil-free Hybrid Vehicle World Premiere at Stockholm Auto Show"

Here be dragons - Economist.com

Economist.com: "With luck, you may soon be able to buy a mythological pet"

Apple tunes in to world domination - Business - Business - theage.com.au

Apple tunes in to world domination - Business - Business - theage.com.au: "APPLE Inc's iTunes music store seems to be rapidly becoming one of the most powerful retailers in the history of the world.

Never before have we seen global domination by one retailer in a product category. Apple is also possibly the most secretive retailer on Earth."

Thursday, March 30, 2006

Install PHP5 Apache2 MySQL5 on Windows : WAMP5

Install PHP5 Apache2 MySQL5 on Windows : WAMP5
Everything you need to run a Windows server in one package. Awesome!!!!

Lazybase

Lazybase: "Lazybase.com. Lazybase allows anyone to design, create and share a database of whatever they like."

Charlotte Observer | 03/30/2006 | N.C. lottery sales get under way

Charlotte Observer | 03/30/2006 | N.C. lottery sales get under way: "North Carolina's first lottery tickets went to sale this morning, ending a 20-year battle to offer residents chances to win money in state-sanctioned games."

Wednesday, March 29, 2006

picturephoning.com: Cameraphone insight

picturephoning.com: Cameraphone insight: "Studies have found that '90 percent of camera phone users never print pictures they take with their camera phones,'"

NewsForge | Mastering podcasts with Audacity

NewsForge | Mastering podcasts with Audacity: "an open source tool offers everything you need for mastering podcasts and other spoken-word recordings. Audacity is well-known among podcasters on all platforms for its ability as an editor; here are some tips and tools for mastering and adjusting volume, aimed at podcasters, but they could apply to anyone who needs to produce a spoken-word recording under less-than-perfect conditions."

20 quick household repairs

: "Quick Fixes 20 of the all-time best hints for making household repairs. By Al Carrell Mother Earth News, Dec/Jan 1994 "

Monday, March 27, 2006

Learn to play the guitar - Lifehacker

Learn to play the guitar - Lifehacker: "Web site Guitar Noise offers a huge knowledge base of free lessons and advice that can take you from guitar novice to guitar god."

Want free satellite TV?

Want free satellite TV?: "Check out this list of free to air satellite TV channels. Now all you need is a satellite dish and a receiver. Check comments for some more info!"

MythTV Invades Realm of Cable and TiVo

MythTV Invades Realm of Cable and TiVo: "Now known as the MythTV project ( http://www.mythtv.com/ ), Richards's effort to create DVR systems from commonly available computer components and the Linux open-source operating system, is gaining traction on the Internet."

Macworld UK - Apache chairman: Days numbered for commercial software

Macworld UK - Apache chairman: Days numbered for commercial software: "'All of your software will be free. It means that, over time, you aren't going to be paying for software anymore but will instead pay for assistance with it', Stein said."

Nice Zhang Ziyi site

Zhang Ziyi at HelloZiyi.us | Ziyi Zhang Pictures, Videos, and more

Monday, March 13, 2006

Mar 2003-02s


Mar 2003-02s
Originally uploaded by chungdh2.
First picture uploaded to flickr.

Thursday, March 09, 2006

New beauty found!


Keira Knightley was beautiful in this year's Academy Awards ceremony (78th).