High Speed Wireless N Internet Security Camera TV-IP512WN


Trendnet has recently unveiled its new wireless security camera which supports the high speed Wireless-N standard for users who want to do security monitoring and controlling via internet connection. Besides viewing video images from the internet, the new Wireless-N Internet security camera, TV-IP512WN, also features a 2-way audio system which allows users to communicate with the person who is standing in front of the camera from the remote location via internet. The video and sound quality is superb. "300Mbps wireless n technology provides up to four times the coverage of comparable wireless g solutions and vastly improved bandwidth to wirelessly stream security video," Trendnet in its statement highlighted.

The internet camera TV-IP512WN offers a removable CS lens (able to achieve 16x digital zooming) and a built-in SD card slot to store images on an SD card. Trendnet also offers users with a free Camera Management software suite which can help to manage up to 32 Trendnet security cameras. This management app comes with some advanced and interesting features to enhance the monitoring process, e.g. multiple various-shaped, motion-detection-recording windows; event-driven e-mail alerts; scheduled recording sessions; MPEG-4- and MJPEG-image compression; and advanced hard drive storage-allocation tools. The TV-IP512WN camera is installation friendly. With the built in Wi-Fi Protected Setup (WPS) support, the camera can be easily added to a wireless network by just pressing a single button.

Users who need an internet security camera can consider this new Wireless N Internet Camera TV-IP512WN. The price is estimated at $250.

Latest SanDisk Extreme III 32GB CF Card Featuring 30MB/s Read/Write Speeds


The world’s largest supplier of flash storage cards, SanDisk Corporation has announced the latest addition to its award-winning SanDisk Extreme III family - 32GB SanDisk Extreme III CF (CompactFlash) Card, which provides increased capacity for longer-duration filming and even RAW images that need up to 10 times as much space as regular JPG images, aiming to meet the demands of professional digital videographers and photographers.

“High-definition camcorders require high-capacity memory cards, and our 32GB SanDisk Extreme III CompactFlash cards offer video professionals longer record times and improved data transfer rates,” said Susan Park, director of consumer product marketing for SanDisk’s performance cards. “Our award-winning SanDisk Extreme III CompactFlash cards carry a tradition of excellence, and the recent series-wide speed increase to 30MB/s advances their legacy as professional-grade storage devices.”

“The 32GB SanDisk Extreme III CompactFlash cards are a great fit for our Infinity DMC 1000/10 and DMC 1000/20 camcorders,” said Scott Sheehan, director of marketing for new and emerging markets at Thomson. “Our customers want a choice in media that meets the needs of their file-based workflows. Solid state memory provides the fastest access to such content, and with SanDisk CompactFlash it’s also affordable. Using SanDisk’s 32GB Extreme III CompactFlash card, our customers can record more than 80 minutes of 100 MB/s, 10-bit, 4:2:2 HD video at the high performance needed for today’s professional video applications.”

The latest 32GB SanDisk Extreme III CF card which features 30MB/s (200x) sequential read/write speeds will be available worldwide in coming October for about $300.

New Pentax X70 Megazoom Digital Camera With 24X Optical Zoom And 720p HD Movie Recording Capability


The manufacturer of digital SLRs, compact cameras, point-and-shoots, lenses and accessories, PENTAX has announced the release of its new PENTAX X70 superzoom digital compact camera, which incorporates 24x optical zoom lens and 720p HD movie recording capability.

Main Features Of PENTAX X70:
Versatile 24X wide angle optical zoom lens(equivalent to 26–624mm)
Impressive 12 megapixel CCD and electronic viewfinder
Large, bright and easy-to-view 2.7 inch LCD screen (230,000 dots) with anti-reflection coating
Triple Shake Reduction technology reduces camera shake and blurring of the subject
High-speed continuous shooting at 11fps
PENTAX’s Fast Face Detection technology enables X70 quickly and automatically detects up to 32 faces in 0.03 seconds
Flexible HD movie capture vividly records videos in widescreen 720p (15fps)
Super Macro mode (as close as 1 cm from the lens)
Auto Sensitivity Control function (up to high ISO of 6400)
Advanced PENTAX Auto Picture mode for automatic selection of 7 different shooting modes including Landscape, Portrait, Night Scene, Night Scene Portrait, Flower, Sport and Standard modes

The new compact and lightweight PENTAX X70 megazoom digital camera will be available in coming April for about $400.

In addition to PENTAX X70, the company also introduced the smc PENTAX DA 15mm F4 ED AL Limited ultra wide-angle lens for Pentax D-SLR cameras, which slated to hit the market in April 2009 for about $650.

Optimize SQL Server 2000, 2005 or 2008 in Large RAM System by Locking Pages in Memory and AWE

Microsoft SQL Server is a data-intensive and disk I/O (read and write) intensive database management systems. For SQL Server which is running on a system with large amount or big size of physical RAM memory, such as system with 4GB, 8GB or even more gigabytes of physical memory, it can be configured to use the Address Windowing Extensions (AWE) API to provide access to physical memory in excess of the limits set on configured virtual memory, and force all paging to take place in memory for faster access.

With Address Windowing Extensions (AWE) API, Microsoft SQL Server can support and access very large amounts of physical memory, upwards of 64 gigabytes or more on Windows 2000 Server, Windows Server 2003 and Windows Server 2008. The specific amount of memory SQL Server can use depends on hardware configuration and operating system support.

Before enabling AWE, Lock Pages in Memory permission must be granted to the user account that run SQL Server, as AWE memory cannot be swapped out to the page files. Note that AWE is not required for 64-bit system, but Lock Pages in Memory privilege is recommended for 64-bit system though.

Step 1: Enable PAE support on Windows Server to allow large segment of physical memory to be used.
Step 2: Assign to enable Lock Pages in Memory permission to SQL Server account.
Step 3: Enable AWE Option

Note that in Windows 2000 (Windows Server 2003 and 2008 are dynamic allocation on demand), if a value for max server memory is not specified, SQL Server reserves almost all available memory during startup, leaving 128 megabytes (MB) or less physical memory for other applications. And, the awe enabled option is an advanced option. If you are using the sp_configure system stored procedure to change the setting, you can change awe enabled only when show advanced options is set to 1.

To enable AWE and configure the min server memory to 1 GB (so that AWE mapped memory can be released up until 1 GB) and the max server memory to 6 GB, use the following commands:

sp_configure 'show advanced options', 1
RECONFIGURE
GO
sp_configure 'awe enabled', 1
RECONFIGURE
GO

Restart SQL Server with the following commands:

net stop mssqlserver
net start mssqlserver

Then, configure memory:

sp_configure 'min server memory', 1024
RECONFIGURE
GO
sp_configure 'max server memory', 6144
RECONFIGURE
GO

Restart the SQL Server after all configuration to make the changes effective. To disable AWE, simply set the awe enabled to 0 and execute the RECONFIGURE statement again.

How to Check Memory Usage in Linux based Server

Memory is one of the most critical resource components on a server to ensure that the smooth and fast operation. Thus, the availability of adequate and abundant physical memory size is vital especially for any server, especially high load web host that are also running database server such as Oracle or MySQL, which is famous for memory intensive. Linux, including CentOS which is popular on cPanel and Plesk web hosting server, comes with several commands and tools to check memory usage on server.

free

free command displays amount of total, free and used physical memory (RAM) in the system, as well as shoing information on shared memory, buffers, cached memory and swap space used by the Linux kernel.

Syntax of free

free -[options]

Example usage of free

free -m

The command will display information about physical memory in MB.

free -m -s 5

The command will activate continuous polling delay at 5 seconds apart, and then display memory status in megabytes on terminal. Any floating point number for delay can be specified.

free -t -m

Same with “free -m”, but -t switch will display a line containing the totals of physical memory and swap space.

vmstat

vmstat reports report virtual memory statistics, which has information about processes, swap, free, buffer and cache memory, paging space, disk IO activity, traps, interrupts, context switches and CPU activity. With vmstat command, administrators can has instantaneous reports on memory usage.

Syntax of vmstat

vmstat -[options] [delay count]

Example usage of vmstat

vmstat

The command will display report based on averages since last reboot.

vmstat 5

The command will pool average system resources usage level for a sampling period of 5 seconds at interval of 5 seconds, except the first result that is averages since the last reboot.

top

top command displays dynamic real-time view of the running tasks managed by kernel and system information in Linux system. The memory usage stats by top command include real-time live total, used and free physical memory and swap memory with their buffers and cached memory size respectively.

Syntax and example usage of top

top

Using top is simple, simply type top at command shell, and constantly update stats page will be shown.

ps aux

ps command reports a snapshot on information of the current active processes. Advantage of ps command is that system admins will be able to see where the memory is used. ps will show the percentage of memory resource that is used by each process or task running in the system. With this command, top memory hogging processes can be identified.

Syntax and example of ps aux

aux is actually already the options for ps command to see every process on the system. So the typical command to type the following in the command shell:

ps aux

To see only the memory resources occupied by each category of processes, such as Apache httpd, MySQL mysqld or Java, use the following command:

ps aux | awk '{print $4"\t"$11}' | sort | uniq -c | awk '{print $2" "$1" "$3}' | sort -nr

The all mentioned ways of check memory usage should works on most Unix and Linux variant of operating systems. However, if you’re running a VPS (Virtual Private Server) or VDS (Virtual Dedicated Server) or Hybrid Server, especially those powered by Virtuozzo or OpenVZ, the above commands will retrieve data from the host machine, i.e. the entire server the virtual environment is running on. In these virtualization system, the memory usage info has to be calculated from control panel or /proc/user_beancounters file.

New Skype 4.0 For Windows Users Available For Downloading


Skype has finally rolled out its Skype 4.0 for Windows users after a fairly long beta version which was introduced in June last year. This new release popular VOIP application has completely revamped the old beta version and added a couple of new features after reviewing the feedback and comments from the users. Skype 4.0 brings to users full-screen video calling, better call quality and more user friendly. This latest version also features a bandwidth for optimizing voice and image quality, and also to improve the instant messaging applications.

Read the release note from Skype:

LUXEMBOURG, February 3, 2009 — Skype today announced the launch of Skype 4.0 for Windows, the most distinctive new release in the company’s five-year history. Thanks to the feedback of tens of thousands of people, the new version offers full-screen video calling, crystal clear call quality and is easier to use than ever before. In addition, Skype users will find all of the features they have come to expect - free voice and video calls to other Skype users, instant messaging, SMS, as well as calls to landlines and mobile devices around the world at very low rates.

Face-to-Face Video Calling
“Video calling has emerged as a very popular way for people to communicate online,” said Mike Bartlett, director of product strategy for Skype. “Whether it’s saying hello to your daughter at college or reading a book to your child while you’re away on business–video calling lets you have the conversations that make a difference and it really feels almost as good as being there.”

With the all-new Skype, people can experience the benefits of free face-to-face video calling. It’s now easier to start a video call and experience full-screen video, which makes conversations more intimate and engaging.

Additionally, a new built-in bandwidth manager ensures that consumers have the very best Skype video calling experience possible even on a low-bandwidth connection. If you have a fast enough connection (recommended 400 Kb/s or higher), a dual-core processor PC and a Skype Certified High Quality Video webcam, Skype delivers up to 30-frames-per-second High Quality Video.

Improved Call Quality
Call quality is substantially improved in the new version of Skype. The new audio codec achieves wideband audio quality using 50% less bandwidth than previously required. Moreover, it introduces super wideband audio that delivers crystal clear, richer and warmer sound to those using a compatible headset and a high quality broadband connection. The bandwidth manager interacts with the codec to adjust quickly to fluctuating bandwidth conditions to produce the most reliable sound.

Easier Than Ever
Skype now makes it easier to set up your headset, microphone and webcam, so getting started is fast and simple to do in a few steps. The new Conversations Tab makes it easy to keep track of multiple conversations in one place, and you can switch seamlessly to your preferred communication method - free voice and video calls to other Skype users, instant messaging, SMS, as well as calls to landlines and mobile devices at Skype’s low rates. In addition, you can choose to use Skype in two different views. Default View has everything neatly contained in a single window or Compact View allows you to resize or put each conversation into separate windows.

“This is just the latest example of how Skype is continuing to innovate and improve its software to deliver an even better voice and video calling experience,” said Bartlett. “The combination of feedback from tens of thousands of users over the last two years of development has allowed us to create a truly amazing experience that puts the focus on bringing people closer together even when they are continents apart.”

Download Skype 4.0 for Windows via the link here.
http://www.skype.com/intl/en/download/skype/windows/

Xcaster ST5000 Linux Based Rugged HD Video Conferencing Camera for Mission Critical Tasks


How much are you willing to pay for a High Definition video conferencing camera? Just recently Pixavi, a Norway based company has just unveiled a next generation IP web camera that will be retailed around $8000 and is claimed to be the first rugged 720p HD capable that run with embedded Linux OS. You may be surprised with its sky high pricing but it does offer great value and impressive feature sets targeted for mission critical tasks.

Named as Xcaster, it comprises of two series, differentiated by conventional 802.11g WiFi and more powerful 802.11n. The first model ST5000g is claimed to be able to support with up to 10 HD media streams while the latter model ST5000n is able to scale up to 50 HD streams simultaneously. Despite the wireless technology delta, both are having similar feature sets such as 1280 X 720 video resolution at 25fps (frame per second), 5.1 Megapixel still camera and multiple codecs support like H.263, H.264, H.323 that have been widely used in industry market. To distinguish itself from competitors, Xcaster is specifically designed to be used in harsh environment with compliance to high grade IP-68 standard waterproofing and able to withstand two-meter concrete drop test that make it suitable to be used in military, chemical industry, firefighting and other mission critical tasks. Besides these great feature sets, the camera is equipped with 16GB flash storage that can store up to 48 hours of 4CIF format video. In terms of expansion and connectivity ports, it has RJ45 ethernet port, USB 2.0 host port, HD/SD Audio/Video ports and more. All these advanced functionalities are well packed into its light weight and compact size of only 550 gram at dimension of 130 x 110 x 30mm.

The rugged Xcaster ST5000 series will be reaching market place by May 2009.

Comodo System-Cleaner Perform Enhancements of Windows Vista and XP


System maintenance and cleaning up temporary files, history, cache, etc is one of the ways to speed up your computer and enhance its efficiency and security. If users do not like to use the cleanup tools which are available from Windows OS, Comodo offers a powerful computer cleanup suite, Comodo System Cleaner, for home and business users to do some system cleanup and maintenance tasks. Comodo System-Cleaner is free and it is available in 32 bit and 64 bit versions for XP, Vista and Windows 2003.

Technically, the Comodo System-Cleaner is a combination of Registry cleaner, Disk cleaner, Diagnostics tool and Privacy cleaner. This app has the Registry Cleaner’s ability to scan the registry in the system for invalid entries, duplicate files, corrupted files etc. The scanning result will thence be shown to users and this will allow users to clean up the files manually. Besides, users can also perform tasks such as scheduling regular Registry cleanup programs and backing up/restoring Registry files.

The disk cleaner feature in the Comodo System-Cleaner app will perform a thorough scanning of the hard disk of the computer. It will scan for temporary files or duplicate entries and allow users to delete and cleanup these files from the hard disk. Similarly, users can schedule the cleansing activity on a regular basis. Users who want to clean up their online and offline privacy data can also use the privacy cleaner feature to clear up the history, cache and temp files of Internet browsers, instant messengers and Windows applications.

Comodo System-Cleaner generally helps to optimize the overall system performance by removing unwanted and unnecessary stuff from the system. It frees out more space and improves the system’s stability. Users who want to download this Free application can download it via the link here:

http://download.comodo.com/csc/download/setups/CSC_Setup_1.1.63928.28_2k_xp_vista_server2003_x32.exe

Features Summary

Cleaner - Optimizes and repairs your Windows registry by running an in-depth scan to identify, remove or repair any unnecessary or corrupted entries. After running a scan, Windows will be able to access the information it needs from the registry much more quickly - meaning your computer will get an immediate performance and stability boost.
Disk Cleaner - Over time your disk drives become cluttered with temporary Internet files, logs, needless archives, unused icons and duplicate files. This utility lets you quickly clear them all to free up space and improve performance. Also allows you to schedule regular clean up routines.
Privacy Cleaner - Obliterate your digital paper trail by cleaning history, cache, cookies and usage records from Internet browsers, Windows locations and popular software. Privacy Cleaner also features ‘File Wiper’ - a tool that allows you to permanently delete unwanted files so that they can never be recovered.
System Settings - Unlock the full potential of your Vista or XP computer by quickly customizing otherwise obscure Windows settings with point and click ease. With over 50 tweaks in the ‘System Settings’ area alone, you can optimize Windows behavior in a more powerful and intuitive way than ever before.
System Information - Detailed and easily accessible ‘dashboard’ summary of all the hardware and software installed on your computer. Fast access to such details can be invaluable when you are considering hardware upgrades, the ability of your computer to run certain software and can assist you when judging whether to alter important system settings.
File Checksum Calculator - Powerful and easy to use tool that calculates the hash value (checksum) of any file using a variety of well known algorithms. The ability to calculate the hash value of a file and compare it to the published value allows users to verify the file’s integrity. If the two values match, the file is genuine and is not corrupted, unusable or a potential malware in disguise. Likewise, developers can also use this tool to calculate hashes for distribution with their software.

Comodo System-Cleaner Perform Enhancements of Windows Vista and XP

System maintenance and cleaning up temporary files, history, cache, etc is one of the ways to speed up your computer and enhance its efficiency and security. If users do not like to use the cleanup tools which are available from Windows OS, Comodo offers a powerful computer cleanup suite, Comodo System Cleaner, for home and business users to do some system cleanup and maintenance tasks. Comodo System-Cleaner is free and it is available in 32 bit and 64 bit versions for XP, Vista and Windows 2003.

Technically, the Comodo System-Cleaner is a combination of Registry cleaner, Disk cleaner, Diagnostics tool and Privacy cleaner. This app has the Registry Cleaner’s ability to scan the registry in the system for invalid entries, duplicate files, corrupted files etc. The scanning result will thence be shown to users and this will allow users to clean up the files manually. Besides, users can also perform tasks such as scheduling regular Registry cleanup programs and backing up/restoring Registry files.

The disk cleaner feature in the Comodo System-Cleaner app will perform a thorough scanning of the hard disk of the computer. It will scan for temporary files or duplicate entries and allow users to delete and cleanup these files from the hard disk. Similarly, users can schedule the cleansing activity on a regular basis. Users who want to clean up their online and offline privacy data can also use the privacy cleaner feature to clear up the history, cache and temp files of Internet browsers, instant messengers and Windows applications.

Comodo System-Cleaner generally helps to optimize the overall system performance by removing unwanted and unnecessary stuff from the system. It frees out more space and improves the system’s stability. Users who want to download this Free application can download it via the link here:

32 bit version
64 bit version

Features Summary

Registry Cleaner - Optimizes and repairs your Windows registry by running an in-depth scan to identify, remove or repair any unnecessary or corrupted entries. After running a scan, Windows will be able to access the information it needs from the registry much more quickly - meaning your computer will get an immediate performance and stability boost.
Disk Cleaner - Over time your disk drives become cluttered with temporary Internet files, logs, needless archives, unused icons and duplicate files. This utility lets you quickly clear them all to free up space and improve performance. Also allows you to schedule regular clean up routines.
Privacy Cleaner - Obliterate your digital paper trail by cleaning history, cache, cookies and usage records from Internet browsers, Windows locations and popular software. Privacy Cleaner also features ‘File Wiper’ - a tool that allows you to permanently delete unwanted files so that they can never be recovered.
System Settings - Unlock the full potential of your Vista or XP computer by quickly customizing otherwise obscure Windows settings with point and click ease. With over 50 tweaks in the ‘System Settings’ area alone, you can optimize Windows behavior in a more powerful and intuitive way than ever before.
System Information - Detailed and easily accessible ‘dashboard’ summary of all the hardware and software installed on your computer. Fast access to such details can be invaluable when you are considering hardware upgrades, the ability of your computer to run certain software and can assist you when judging whether to alter important system settings.
File Checksum Calculator - Powerful and easy to use tool that calculates the hash value (checksum) of any file using a variety of well known algorithms. The ability to calculate the hash value of a file and compare it to the published value allows users to verify the file’s integrity. If the two values match, the file is genuine and is not corrupted, unusable or a potential malware in disguise. Likewise, developers can also use this tool to calculate hashes for distribution with their software.

New Lenovo IdeaCentre A600 All-In-One Desktop And 4-In-1 Remote Controller With ‘Motion Drive’ Feature


The well known Chinese PC maker, Lenovo has announced the availability of its new IdeaCenter A600, the first all-in-one desktop from the company, which offers a bundle of unique features such as facial recognition and true high-definition entertainment technologies, aiming to give users a computing experience like no other.

Impressive highlights of Lenovo IdeaCentre A600:
21.5-inch frameless screen with 1920 X 1080 full HD resolution and 16:9 aspect ratio
Intel Pentium Dual Core & Intel Core 2 Duo mobile processors
Up to 4GB of fast DDR3 memory for improved multitasking
Up to 1TB (1000GB) of hard drive space 
Optional ATI Radeon graphics card technology with DirectX10 support
Digital TV tuner for watching and recording their favorite TV programs
Optional Blu-ray player and high-speed WiFi connectivity
VeriFace facial recognition technology allowing users to use his/her facial image as the logon password
Built-in speaker system includes a bass sub-woofer and Dolby Home Theatre audio certification
Optional 4-in-1 remote controller with ‘motion drive’ feature, which able to control on-screen objects according to the movement of the remote

According to the company, “The Lenovo 4-in-1 remote controller can also be used as a VOIP handset to make and receive phone calls over the Internet, similar to a typical cordless telephone. The remote also serves as a media center/TV remote, and with Microsoft Vista Media Center users can use the controller to operate DVDs, movies and TV. Additionally, the remote also functions as an ‘air mouse’ so it can be used to operate the cursor on the screen, eliminating the inconvenience of using a wired mouse.”

The new sleek Lenovo IdeaCenter A600 all-in-one desktop that measures only 1 inch at its slimmest point is expected to be available in coming April 2009 with MSRP starting at $999.

New JVC Everio GZ-X900 (Everio X) With 10X Slow Motion Video Recording Feature


JVC has announced the launch of its new ultra-compact, lightweight, dual use hybrid camera - JVC Everio GZ-X900 (Everio X), which able to shoot 9-megapixel digital stills and full HD AVCHD video, featuring 10.3-megapixel CMOS sensor and JVC’s HD Gigabrid Premium image processing engine.

Impressive Features Of JVC Everio GZ-X900 (Everio X):
Slim, streamlined design and lightweight body
10.3-megapixel 1/2.33-inch CMOS sensor delivers superior image quality
New KONICA MINOLTA HD lens with 5X optical zoom
JVC’s newly developed proprietary optical image stabilization (O.I.S.) technology 
JVC’s HD Gigabrid Premium image processing engine
Full HD 1920×1080 video with 1000 TV lines of horizontal resolution
60fps/5.3 megapixel motor drive shooting
Up to 600fps recording for ultra-slow motion playback
Face Detection technology identifies up to 16 faces then accurately adjusts the focus and exposure for sharp, beautiful images
HDMI V.1.3 with x.v.Color provides increased color accuracy when connected to HDTV displays
One-Touch Solutions for YouTube and iTunes

The new JVC Everio GZ-X900 hybrid camera that measures 37 x 66 x 124 mm and weights at just 0.66 pounds is expected to be available in coming June for about $1000.

Panasonic LUMIX DMC-ZS3 And DMC-ZS1 Compact Digital Cameras with 25mm Ultra-Wide Angle Lens And 12x Optical Zoom


Panasonic has announced the successor to the acclaimed LUMIX TZ-Series - LUMIX DMC-ZS3 and DMC-ZS1 digital cameras (New LUMIX ZS-Series), which feature 10.1 megapixel effective resolution, 25mm ultra-wide angle LEICA DC VARIO-ELMAR lens, impressive 12x powerful optical zoom, Venus Engine HD processor as well as Mega Optical Image Stabilization (O.I.S.).

The LUMIX ZS3 is a powerhouse performer with enormous versatility. Compared with the TZ-Series, it extends the power of the optical zoom from 10x to 12x and expands the wide-angle lens from 28mm to an ultra-wide 25mm, giving it the range for virtually any shooting situations, said David Briganti, National Marketing Manager, Imaging, Panasonic Consumer Electronics Company. “Despite its superior lens specifications and functionality, the ZS3 is remarkably smaller and lighter than its predecessors, making it easier to carry on travels and everyday shooting opportunities.”

The new LUMIX ZS3 which incorporates 3-inch TFT LCD display is the world’s first digital camera to feature AVCHD Lite HD video recording capability, allowing longer recordings with breathtaking HD visual and audio quality (compared with Motion JPEG format).

According to Panasonic, “The ZS3 also expands Panasonic’s popular Intelligent Auto (iA) mode with the addition of Face Recognition – a feature that ‘remembers’ faces from previous shots. When a registered face appears in the frame, the camera will prioritize focus and exposure to capture it beautifully. With Face Recognition, when a familiar face is recorded several times, the camera will prompt the users to register the face. Once registered, if the face appears into the frame again, the camera will display the name specified for that person and prioritize focus and exposure so that the registered face is bright and sharply focused.”

The differentiate between ZS3 and ZS1 is an 2.7-inch Intelligent LCD screen and standard iA mode (without Face Detection) for still image recording.

The new Panasonic LUMIX DMC-ZS3 and LUMIX DMC-ZS1 ultimate compact and powerful digital cameras will be available in coming April 2009 for about $400 and $300, respectively.

New Nikon Coolpix P90 With 24x Optical Wide Angle Zoom-NIKKOR ED Glass Lens



 

The world leader in digital imaging, precision optics and photo imaging technology, Nikon has announced the launch of its new COOLPIX P90, which features 3-inch vari-angle LCD screen (can tilt as much as 90 degrees upward or 45 degrees downward) with anti-reflection coating and 24x optical wide angle Zoom-NIKKOR ED glass lens.

Impressive Features Of Nikon COOLPIX P90:
12.1 effective megapixel image sensor
3-inch vari-angle high resolution LCD display with anti-reflection coating and Electronic Viewfinder 
24x optical wide angle Zoom-NIKKOR ED glass lens
4-Way Vibration Reduction Image Stabilization (Optical VR image stabilization, Motion Detection, High ISO 6400 capability and Nikon’s original Best Shot Selector) 
Nikon’s Smart Portrait System (In-Camera Red-Eye Fix, Enhanced Face-Priority, Smile Mode and Blink Proof)
Nikon’s proprietary Active D-Lighting technology for optimising contrast and Quick Retouch
Program, Shutter Priority, Aperture Priority and Manual Exposure modes give ultimate control over images
High-speed continuous shooting up to 45 shots at 15 fps, thanks to the new Sport Continuous Scene Mode

“Our portfolio of cameras is designed to ensure that any photographer, at any level can find the camera that feels right for them,” said Bill Giordano, General Manager Marketing, COOLPIX for Nikon Inc. “The P90 blends the best of the digital compact and D-SLR camera worlds, allowing the more advanced consumer to really stretch their photographic capabilities.”

The new Nikon COOLPIX P90 is scheduled to be available nationwide in coming March for about $400.

New Kodak EasyShare Z915 With Innovative Smart Capture Feature And 10X Image Stabilized Optical Zoom Lens




The world’s foremost imaging innovator, Kodak has announced the availability of its new EASYSHARE Z915 digital camera, which includes a powerful image stabilized 10X optical zoom lens, and Kodak’s innovative Smart Capture feature that automatically analyzes the scene and adjusts camera settings aiming for great photos in just about any environment. 


Features Of KODAK EASYSHARE Z915:
10 megapixel resolution for prints up to 30″x40″
Powerful 10x image stabilized optical zoom lens
Bright and detail-rich 2.5-inch LCD screen display
Kodak’s innovative Smart Capture which can automatically detects the scene being shot and adjusts camera settings to capture the best shot possible
Kodak Perfect Touch Technology makes pictures as vivid as the moment the users took them
HD picture capture
Versatile AA battery solution in compact and stylish body
SD/SDHC memory card slot 

“The new Z915 is a versatile camera that’s ideal for families on the go, making it ideal for consumers who want more zoom but don’t want a bulky camera,” said John Blake, General Manager Digital Capture and Devices, Vice President, Eastman Kodak Company. “With its combination of Smart Capture and high zoom with optical image stabilization, the Z915 stands out in a fast-growing product category, and delivers great performance to consumers who are looking for new ways to advance their digital photography experience.”

The new Kodak EasyShare Z915 will be available in red, blue, black and gray colors in coming April for an MSRP of $199.95.

Nautiz X5 Rugged Windows Mobile 6.1 Handheld Device

 

Handheld Europe has been working on rugged handheld devices targeted for industrial market some times ago and just recently, it showcases a next generation Windows Mobile handheld device during the CeBit 2009 held in Hannover, Germany. The unique about this handheld device is its ability to withstand extreme and harsh environment while able to pack all Windows Mobile program features into it.

The handheld device is powered by famous Marvell PXA320 Xscale based processor running at extremely high clock speed of 806MHz. Equipped with a 3.5-inch TFT touch screen at 480 X 640 resolutions and further supported with wireless technologies such as EDGE/UMTS/HSDPA and Wi-Fi, it allows seamless internet connectivity with high speed data transmission regardless of the environment you are in as long as there are network coverage. Surprisingly, it can withstand extreme operating temperature from -20 to 55 degree Celsius as well as heavy drop from the height of up to 1.8 meters. To make it a more powerful device, it has been enhanced with internal SiRF star III GPS module together with 1D barcode scanner that makes it suitable for both outdoor and industrial use. All these are well packed in a reasonable size of 160 X 80 X 35.5mm dimension at a weight of 410 grams (inclusive of a high capacity 4400 mAH battery).

No pricing and availability yet, but don’t expect it to be cheap due to its stringent design specifications that comply to industrial standards suitable for extreme environment.

Easy Way to Upgrade FreeBSD’s Ports

 

Before you can update and upgrade the FreeBSD’s ports, the Ports Collection needs to be updated. Follow step here to update the Ports Collection.

Once you updated your Ports Collection, before attempting a port upgrade, you should check the /usr/ports/UPDATING file. This file describes various issues and additional steps users may encounter and need to perform when updating a port.

Keeping the ports up to date can be a tedious job. Just for example, to upgrade a port you need to go to the ports directory, build the port, deinstall the old port, install the new port, and then clean up after the build. If there are numerous ports that need to be upgrade, it will be very troublesome. This was a large problem for system administrators to deal with, and FreeBSD have utilities which do this automatically, and that’s sysutils/portupgrade utility.

To install sysutils/portupgrade utility, use the command just as to install any other port: make install clean.

Create a database with the following command: pkgdb -F 

The command will read the list of installed ports and create a database file in the /var/db/pkg directory. 

Run portupgrade -a to start to update the ports.

The portupgrade will read the database file created by pkgdb -F and the ports INDEX file. Finally, portupgrade will begin to download, build, backup, install, and clean the ports which have been updated. 

Portupgrade utility has a lot of options for different uses, the most important ones listed below.

If you want to upgrade only a certain application, not the complete database, use portupgrade pkgname, include the flags -r if portupgrade should act on all those packages depending on the given package as well, and -R to act on all packages required by the given packages.

To use packages instead of ports for installation, provide -P. With this option portupgrade searches the local directories listed in PKG_PATH, or fetches packages from remote site if it is not found locally. If packages can not be found locally or fetched remotely, portupgrade will use ports. To avoid using ports, specify -PP.

To just fetch distfiles (or packages, if -P is specified) without building or installing anything, use -F. 

Note: It is important to regularly update the package database using pkgdb -F to fix inconsistencies, especially when portupgrade asks you to. Do not abort portupgrade while it is updating the package database, this will leave you an inconsistent database.

Searching for Application in FreeBSD’s Ports Collection

 

The FreeBSD Ports and Packages Collection offers a simple way for users and administrators to install applications. The number of applications in FreeBSD Ports and Packages Collection is growing with the time, which now exceeding ten thousands ports.

All Ports Collection is stored at /usr/ports directory, according to their respective category-based directory. If you know the name of the port that you need, but don’t know which category it’s located, whereis command will be helpful:

whereis file_name

For example, 

# whereis phpMyAdmin
phpMyAdmin: /usr/ports/databases/phpMyAdmin

The whereis command returns the exact location of the port specified.

FreeBSD Ports Collection also has built-in search function. In /usr/ports directory (you need to be in /usr/ports directory to use the search mechanism), run make search name=program-name or make search key=keyword to search for a particular port.

For example,

# make search name=”phpMyAdmin”
# make search key=”phpMyAdmin”

Note: Without the ” and ” will work too.

Both will return details of the ports matched, if any. One of the result if “Path”, which will tell you where is the port located.

The keyword search is a more in-depth searching that searches port names, comments, descriptions and dependencies. It can be used to find ports which relate to a particular subject if you do not know the name of the program you are looking for.

Alternatively, FreeBSD also maintains an up-to-date searchable list of all the available applications, arranged by category. You can search for your application by name and browse all applications that are within the category.

FreshPorts also allowed users to search for FreeBSD’s ports by keywords. FreshPorts tracks and lists the change made to the ports tree, and allows users to watch one or more ports, and can email you when your selected port has been updated.

Lockdown USB Ports with NetWrix USB Blocker



 
Using USB host port to copy files to and from a computer is a fast and convenient way due to its plug and play capability. While many of us do appreciate this feature, there are situations where we need to lockdown USB port in order to protect your network against malware or prevent stolen of sensitive corporate or personal data. As such, NetWrix USB Blocker has been released as one of the solutions to prevent sensitive data from being stolen or malware/ Trojan from spreading through USB ports easily. 

NetWrix USB Blocker is a freeware which is able to lockdown USB port remotely to prevent unauthorized use of removable media that connects to computer via USB ports like iPods, thumb drives, memory sticks, SD cards and etc. To lockdown USB port, it doesn’t require any installation on client computers but instead, it is done through Microsoft Group Policy Management (GPMC) mechanism. As long as you have GPMC installed on the computer, you can perform the lockdown process to the client either locally or remotely. 

NetWrix USB Blocker is user friendly but yet powerful tool. If you think this is suitable, just go and download it to safeguard your data from being stolen and unnecessary virus attack.

Keep Your Password Safely With MyPadlock Password Manager



 

MyPadlock Password Manager is a secure and simple password manager that allows the user to keep all the password under “lock and key” on their PC and is only accessible if they know a master password that is created by the user on initial configuration. This master password will be the only password which needs to be created.


MyPadlock has using 128-bit AES encryption to encrypt all the password into an encrypted file and keep into hard drive. The file is also encrypted with password and will automatically logged off in a few minutes to ensure that the users don’t leave the password open to anyone while they were away from their desk.

This application uses very minimal CPU, memory and does not require Internet connection as the file is keep into local hard disk. MyPadlock able to supports windows platform like Windows XP,Vista, Windows Server 2003 and 2008 as long as the machine is .Net Framework 3.5 ready.

Currently, it available for free download.

Intel Boosts Mobile Processors’ Speed with Stepping Change



 
Intel is planning to do stepping change on its existing series of small package Core 2 Duo as well as Celeron M mobile processors in an effort to upgrade speed enhancement and eventually boost up system performance as a whole. The affected models include Core 2 Duo SL9300, SL9400, SP9300 and SP9400 with stepping change from C-0 to E-0 and Core 2 Solo SU3300, Core 2 Duo SU9300, SU9400 as well as Celeron M ULV (Ultra Low Voltage) model from M-0 to R-0.

Both stepping change are having a common goal: it will be a speed path improvement that will increase the clock frequency without major change in electrical, mechanical and thermal simulation. Normally, the giant company will do a silicon stepping change whenever there are some bug fixes or improvement made to its hardware processor. And there it will be a numbering prefixed with an alphabet that indicates how major the stepping change is. Obviously, this seems to be a major change but there is not much detail has been communicated except the speed path improvement.

The change will take effect by December 2008 and the actual mass shipment will happen on March 2009 only. No expectation of change to any customer’s board design if customer were to adopt the new stepping’s processor, except a new BIOS (that will check for silicon revison ID) that is claimed to be compatible with both current and new stepping will be released to cater for the stepping change.

recent post