Posts

Showing posts from February, 2011

Featured Post

Efficient Duplicate Image Removal: Using ImageDeDup Python

Efficient Duplicate Image Removal: A Python Guide In this blog post, we will walk you through the process of identifying and removing duplicate images from your directories using Python. We will leverage perceptual hashing to find similar images and delete duplicates while keeping the largest file in the group. This solution is perfect for users who want to save disk space and keep their image collections organized. Why You Should Use This Code Over time, especially when dealing with large collections of images, duplicate files can accumulate. These duplicates take up unnecessary space on your system. Manually sifting through these images can be tedious, but with the help of Python, perceptual hashing, and concurrent processing, this task becomes much easier. Benefits: Efficient Duplicate Detection : By using perceptual hashing (PHash), the code compares images based on their v...

THe best of Cold PLay Tokyo 2009...

Image
Spend your 15 Minutes and feel the magic of life...>>

MOzilla targets to release Four new versions for Firefox in 2011

Image
Firefox 4,5,6,7 are the four new versions of firefox browser which the company looks forward to launch them by end of 2011. The four new versions is just one of the company's goals for this year. Here are seven points that the company currently has listed as its Product Priorities for 2011 on its Firefox/Roadmap wiki page: Ship our new technology to users in smaller bundles, more frequently: four technology shipment vehicles in 2011 (including Firefox 4) and achieve a regular cadence for shipping Develop a product that is responsive from "click to render": no more than 50ms delay between user action and application reaction, provide optimizations to hide network latency, and obtain metrics from users in addition to our test infrastructure Expand the Open Web Platform to include Apps, Social and Identity: Design and implement open systems for Identity and social interactions, design and implement Web Application Framework, and implement missing pieces of CSS...

Debian 6.0 Released...

Image
The new Debian 6.0 codenamed Squeeze   is here. It took 24 months to release a stable release of Debian 6.0. The Debian is a free operating system under GNU General public license and other free software licenses. The New Debian comes in two flavors they are Debian GNU/Linux, Debian GNU/kFreeBSD. The new realease sonsists of various updated packages. The installation process for Debian GNU/Linux 6.0 has been improved in various ways, including easier selection of language and keyboard settings, and partitioning of logical volumes, RAID and encrypted systems. Support has also been added for the ext4 and Btrfs filesystems and — on the kFreeBSD architecture — the Zettabyte filesystem (ZFS). The installation system for Debian GNU/Linux is now available in 70 languages.Debian may be installed from various installation media such as Blu-ray Discs, DVDs, CDs and USB sticks or from the network. GNOME is the default desktop environment and is contained on the first CD. With this broad sele...

Internet Information Server (IIS) or Internet Information Services

Image
What Is IIS? IIS is a web server application which is provided by Microsoft to run with its Windows Operating System. It is the most used server after the Apache HTTP Server. It is available for all the editions of Microsoft Windows Operating Systems but, doesn't comes installed beforehand. The latest stable release of IIS 7.5 supports HTTP , HTTPS , FTP , FTPS , SMTP and NNTP protocols. It is a type of Web server , mail server and FTP server . Features of IIS: IIS is build of up of various modules integrated with each other to form the IIS. Every module performs the specific task to accomplish a user function. The modules and the task performed by them are as follows: HTTP modules – Used to perform tasks specific to HTTP in the request-processing pipeline, such as responding to information and inquiries sent in client headers, returning HTTP errors, and redirecting requests. Security modules – Used to perform tasks related to security in the request-processing pipeline, ...