The new TV model for your entertainment

LG LE7500
LG LE7500-The new TV model for your entertainment

Be in the high Infinia line of LG, but not LE7500 is equipped with features 3D like LX9500. Instead, the LE7500 LED Plus technology brings a new generation of LG, to help reach the screen size is slim but still excellent picture quality with a dynamic contrast reaching 5.000.000:1.

Design style of the LE7500 series also influences from Infinia line - stylish design, screen design example is seamless, no borders, the system comes with touch-button adjustment.

Infinia model LED Plus is equipped with LG's feature AV connections, DLNA wireless features multimedia playback from USB devices, including DivX same entertainment system thanks to Cast Online Net via Wi- Ready Fi.

Sharp LE820

Sharp LE820-The new TV model for your entertainment

No property 3D features but LE820 is the highest HDTV form of Sharp technology by bringing Quattron QuadPixel. By adding a yellow filter on the RGB color system common screen of LE820 were able to show the state billions of different colors, to help recreate the image fidelity, the most natural.

Sharp Aquos LE820 has three different models including 40, 46 and 52 inches. Here is a sample use advanced HDTV LCD X-Gen comes the latest generation system super bright LED rim UltraBrilliant help achieve 5.000.000:1 contrast, the 1080 Full HD resolution and scanning picture speed 120Hz .

Compared to LED Aquos models, such as LE700M, LED Quattron model form new style completely new design, LE820 thin screen, borderless style time format with rounded edges instead because the type of square, angular and thickness.

LG LX9500
LG LX9500 -The new TV model for your entertainment


Although the information published since the mid-June, but must be approached in August last, most advanced form of 3D HDTV LG officially "be found" in Vietnam. Infinia is a top model LX9500 LG when equipped with full LED display technology in the world's first Slim, reaching up to the contrast 10.000.000:1 and TruMotion 400Hz speed scanning.

In addition to 3D, LX9500 own a variety of other modern features such as IDTV, the ability to play multimedia data from USB, DLNA-compatible network, Wi-Fi technology to connect wireless AV signals and systems NetCast entertainment online.

Model LX9500 LX9500 47-inch model is the first series was sold with while both 42 and 55 inch models will be released later in the future.

Samsung C9000
Samsung C9000- The new TV model for your entertainment

Like the LG LX9500, 3D model of the Samsung C9000 top LED display and even a long introduction but also present new and widely sold in many shops in the country starting in August. Samsung C9000 samples in Vietnam have only a size 55 inch model.

HDTV product line is the top manufacturer of South Korea, the C9000 uses LED technology ultra-thin screen with a thickness of about 7.98 mm screen, using the 3D process integration enables the direct conversion 2D to 3D content, integrated DLNA wireless connections and Wi-Fi allows users to access Internet software and Samsung Apps.

A further feature is the Samsung C9000 is the entire signal system on the TV was turned back from the screen surface to the bottom end of the base strips.








My subversion svn notes

Non-comment lines of $HOME/.subversion/config (%APPDATA%\Subversion\config on Windows):
global-ignores = *.ipr *.iml *.iws .project .classpath .settings .*.swp out.txt todo.txt *.save *.my *.class *.org #*# .*.rej *.rej .*~ *~ .#* .DS_Store
enable-auto-props = yes
*.java = svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
To view the usage of a subcommand, for example, propedit:
svn help propedit
To view the details of a commit with rev number, including changed files and log messages (Without -v option, changed files are omitted in the output):
svn log -v -c 1234 Foo.java

Date and time in log are in local timezone of the current client. For example,
r526 | user1 | 2012-02-25 09:32:00 -0500 (Sat, 25 Feb 2012) | 3 lines

-0500 indicates the timezone EST (US/Eastern Standard Time), 5 hours behind UTC

r536 | user2 | 2012-04-26 13:44:59 -0400 (Thu, 26 Apr 2012) | 2 lines
-0400 indicates the timezone EDT (US/Eastern Daylight Time), 4 hours behind UTC

To get the date and time in UTC (the ending Z is for UTC):
svn propget --revprop -r 537 svn:date
2012-05-01T02:08:21.396811Z


# shows all changes made by rev 1234 compared to previous rev
svn diff -c 1234 Foo.java To get, or set end-of-line property (One of 'native', 'LF', 'CR', 'CRLF'):
svn pg      svn:eol-style Utils.java
svn pget svn:eol-style Utils.java
svn propget svn:eol-style Utils.java

svn propset svn:eol-style LF Utils.java
svn pset svn:eol-style LF Utils.java
svn ps svn:eol-style LF Utils.java
To view the svn:externals or svn:ignore for the current directory:
svn propget svn:externals .
svn pg svn:externals .
svn pg svn:ignore .
To delete the svn:ignore for the current directory:
svn pd svn:ignore .
To edit the externals for the current directory:
svn --editor-cmd vim propedit svn:externals .
svn --editor-cmd vim pe svn:externals .
If any one of these environment variables SVN_EDITOR, VISUAL or EDITOR is set, you can omit the "--editor-cmd vim" part:
setenv EDITOR vim (in csh/tcsh)
export EDITOR=vim (in bash)
svn pe svn:externals .
To compare two different versions of a file:
svn diff -r r99:r100 build.xml
svn diff -r 99:100 build.xml
svn diff -c 100
It's easier to copy r99 r100 from svn log output, so I prefer the first form. The option "-c 100" is the same as "-r 99:100", and shows all changes made by rev 100.

To skip any differences in deleted files:
svn diff --no-diff-deleted
svn diff will not included newly added files, or files that are moved to target directory. To view colored diff with vim:
svn diff | view -
I also have a shell script wrapper (diffv) for the above:
#! /bin/sh
svn diff -x -wub $@ | view -
# use -x -wub to ignore whitespace changes
To get detailed info like URL, repository URL, revision, last changed date, etc:
svn info .
To relocate a loca workspace after the server repository has moved:
cd root-of-current-workspace
svn switch --relocate http://old http://new .
To revert all modified files under current directory:
svn revert *
svn revert util/*
Note that "svn revert ." does not revert changes in sub-directories. For recursive revert,
svn revert --depth infinity util
svn revert -R util
svn revert --recursive util
When newly-added files (with svn add or svn move) are reverted, they will stay in the file system, even though removed from version control. This can also happen when you apply someone else's patch to your local workspace and then revert them. As a consequence, when building the workspace these left-over files are still included in project artifacts, causing mysterious errors.

To downgrade svn client version:
cd {to the directory with local changes};
python $HOME/bin/change-svn-wc-format.py . 1.5
The above command will downgrade the working copy format to svn 1.5. This is to fix the annoying svn version error:
svn: This client is too old to work with working copy '...'.  You need
to get a newer Subversion client, or to downgrade this working copy.
See http://subversion.tigris.org/faq.html#working-copy-format-change
for details.
To apply a patch (.diff file), ignoring all parent directories in diff index:
cd {working directory containing the target file}
patch -i $HOME/Desktop/a.diff
svn patch $HOME/Desktop/a.diff . # for subversion client 1.7 or later

To apply a patch (.diff file), preserving all parent directories in diff index:
cd {parent directory of the whole directory structure in diff index}
patch -p0 -i /tmp/a.diff
This is useful when target files do not fall under the same directory. -p means how many levels of directories to prune. patch is a Unix (not svn) command, usually resolves to /usr/bin/patch.

If you've copied the diff (e.g., from email received from coworker), you can let patch command take input from console:
patch
patch -p0
After pasting diff content, Ctrl-D to end.

If a patch contains moved files between different directories, /usr/bin/patch or svn patch doesn't know how to create the destination files. You will need to 'svn copy' these files to their destinations before running patch.


To make directories and parent directories together (the equivalent of OS command mkdir -p),
svn mkdir --parents com/a/b/c
To move a single file to another directory (--parents option will make any intermediate directories if not already exist):
svn mv --parents Utils.java ../common/a/b/c/Utils.java
# note that both SRC and DST must be file. If DST is a ../common/a/b/c,
# c will actually be treated as a file to hold the content of Utils.java

To move MULTIPLE files to another directory (--parents option will make any intermediate directories if not already exist):
cd <source directory>
svn mv --parents *.java ../common/a/b/c

To move the whole directory to another location:
svn mv impl ../common

After this command, if you do a "svn st", you will see all the deleted directories and files are listed, but under the DST directory, only the top-level directory (../common/impl) is listed as Added. Even in the comment editor window of "svn ci", still only the top-level directory listed as Added. How about files under the top-level directory, have they been copied over? But have no fear, everything from the SRC along with revision history were indeed moved to the destination. "svn ci" will commit these changes to the repository.

With TortoiseSVN (Windows only), all these move operations can be done in Windows Explorer: right-click the SRC, hold and drag it to the DST, and confirm your operation in the pop-up menu.

To remove a directory (there is no svn rmdir command),
svn rm a/
To merge some changes from trunk to branch, branch to trunk, or branch 1 to branch 2:
cd <source directory of changes>
svn log . | head -25
copy and paste the start rev and end rev, e.g., r123:r129
svn info; and copy the source URL, e.g., http://host:port/my-project-svn/a/b
cd <dest directory>
svn merge --dry-run -r r123:r129 http://host:port/my-project-svn/a/b
To make real changes, omit --dry-run option.

To merge ALL changes in Foo.java from trunk to branch:
cd <source directory of changes>
svn info Foo.java; and copy the complete source URL, e.g., http://host:port/.../Foo.java
cd <dest directory>
svn merge http://host:port/.../Foo.java ./Foo.java

To merge rev 567 in Foo.java from trunk to branch:
cd <source directory of changes>
svn info Foo.java; and copy the complete source URL, e.g., http://host:port/.../Foo.java
cd <dest directory>
svn merge -c 567 http://host:port/.../Foo.java ./Foo.java

To quickly undo or revert a bad commit (rev 99) with a reverse merge (notice the negative rev number is used. It must be a number; args like -c -r99 is rejected.):
svn merge -c -99 .
svn ci -m 'revert my changes in rev 99.'

To create a changelist with a list of files:

svn cl user.changelist src/main/java/com/xxx/User.java src/main/java/com/xxx/Person.java


To create a changelist from a file created by svn st command, need to first cut off the leading characters like "M", "A", deleting all lines starting with "?", and then use --targets option (in plural):

svn cl user.changelist --targets /tmp/d


To diff only those files associated with user.changelist:

svn diff --cl user.changelist


To remove a changelist, you don't remove the changelist itself, instead remove the association of all files. You can either list the files in command line, or include these lines in a file. After that, the changelist will simply disappear:

svn cl --remove src/main/java/com/xxx/User.java src/main/java/com/xxx/Person.java
svn cl --remove --targets /tmp/d


To revert changes in a changelist, you need to specify both the changelist and path:

svn revert --cl user.changelist -R user/src/main

Changelist is helpful when working on multiple tasks in the same workspace. You cannot check in changes for task1 due to some other dependency, but would like to start working on task2. But be very careful when juggling with multiple tasks in the same workspace, as some java files will stay in the file systems even after they are reverted and be built into the artifacts.

If you have locally modified a file, and an incoming update will delete or move the same file, its status after the update will be Tree Conflict (delete upon update). What I will do is to first back it up, revert local changes, and then resolve this conflict

cp Method.java $tmp/Method.java
svn revert Method.java
svn resolved Method.java

If the file (Method.java) is moved to some other directory, apply your local changes to Method.java in its new directory. If you run "svn resolved" with local modifications, this file will show up as newly added file that contains your local changes, which is probably not what you want.

View 3D from the glasses with Cinemizer Plus

Plus glasses Cinemizer is capable of photo slideshows directly from the 3D glasses without a HDTV or other removable external screen. 
View 3D from the glasses with Cinemizer Plus

3D tiny transmitters of Carl Zeiss. Photo: Carlzeiss.

Cinemizer Plus will support the 3D version of the product was Cinemizer Carl Zeiss, maker of the famous German lens, the previous release. Plus Cinemizer nature and appearance as a pair of glasses, but the owner of special screen located on the lens, allowing users to enjoy the popular three-dimensional image is projected from the lens without need to screen other types of external, such as HDTV or projector screen ...

The lens is composed of Cinemer Plus is a tiny video screen, using OLED technology with ratio 16:9 and reach a resolution of 640 x 480 pixels, making the wearer feel like looking at a screen external dimensions 45 inches and at distances over one meter. A small box with removable glass allows for 3D glasses Cinemizer Plus can play images directly from the iPhone and the iPod, either from other smart phones, video machines, laptops ...

3D theater's tiny battery Carl Zeiss is used continuously for four hours and can be recharged via USB port, enables users to enjoy 3D films at any time and anywhere.

Currently, the German manufacturer is launching a sale price around 390 USD (for a pair of 3D glasses slide mobile with name Cinemizer Plus .





Dell Precision M4500 review- Laptop for work

Dell has just announced the latest laptop with screen 15.6 "of Precision M4500 Mobile Workstation line with the latest generation of hardware. Precision M4500 is powered by Intel Core i7 or Core  I5 (including Core Quad Core Extreme i7-920M),

Design
Dell Precision M4500 review- Laptop for work


Precision M4500 is the laptop for work with Dell's configuration with the ability to handle 3D applications - CAD, graphics processing and video editing.

The entire body is made from aluminum alloy feeling uncertain. Not improve slip, soft as the fashion mainstream notebooks, Dell Precision M4500 own style and strong edges.

Though there are laptop screen 15 "aluminum alloy design, Dell Precision M4500 is the weight gain is 2.7 kg as the laptop has a large screen size with plastic design.

The front of this laptop is quite thin so it is very easy to put pressure on the surface when placed on machines or heavy objects are colliding directly to this position. Besides the structural hinge connection between the screen and keyboard are not sure. Just shake, you will feel the shortage likely in this position. To keep the screen firmly in the move, Dell Precision M4500 is hard key to lock the screen and keyboard together.

Screen and speakers

Dell Precision M4500 is equipped with display back-lit LED technology, using panels of the type of Dell quality with Full HD resolution of 1920 x 1080 pixels. With brightness set between 50 - 70%, Dell Precision M4500 can easily show clearly whether indoors or out where there are strong light sources. Show beautiful colors, bright with good contrast. In addition, Dell Precision M4500 also owns the light sensor to automatically adjust lighting in accordance with the surrounding environment.

Two speakers are arranged very reasonable when placed on the left and right keys. The sound quality of speakers was rated as good and clear. However, bass is limited.

Connectors and peripheral devices

Dell Precision M4500 owns almost all the ports with reasonable number of nodes.

Connect with screen included two DisplayPort and VGA out port. Connect IEEE 1394 for data transfer, USB and eSATA. Besides, the card slot, SmartCard slot for the card ...

In general, the Dell Precision M4500, users will not worry much about the connections with peripherals.

Dell Precision M4500 review- Laptop for work
Touchpad Keyboard

Size of the keys of the Dell Precision M4500 The full size with moderate depth to press. The distance between the keys reasonable degree feedback is quiet. Below the keyboard backlight is equipped to be able to manipulate the keyboard in low light places.

Dell Precision M4500 is the touchpad are arranged with each individual key. In addition, this notebook is also equipped with TrackPoint. Touchpad stable operation but the distance between the key and dragging the region should be pretty close sometimes unwanted operations.

Hardware and performance using

Property powerful hardware with 620M 2.67 GHz Intel Core i7, 2 and hyperthreading, the high-end graphics processor Nvidia Quadro FX 1800m with 1 GB of VRAM ... Dell Precision M4500 is a truly full-performance workstation absolutely meet with perfect results for the graphics processor.

Along with three other notebooks have a similar configuration: ThinkPad W510, HP EliteBook 8540p EliteBook 8440w and HP, Dell Precision M4500 in most ways to test scores higher than all (these results are based on assessment of the software evaluation: wPrise, PCMark05, 3DMark06 ...)

Noise and heat

In the course of normal operation (web browsing, word processing), Dell Precision M4500 cool and quiet operation. Cooling fans can not hear the sound emitted unless the application requires operation of the CPU processor and graphics. However, users will not have to worry about annoying people in the room next to the Dell Precision M4500 is the sound level is not qualified to affect the surrounding environment.

Radiating temperature during operation of the Dell Precision M4500 is not too hot, thanks to this set of aluminum notebook cooling so fast and efficient. Only the keyboard area is heat radiating a little hotter than other areas.

Time use battery

With the computer battery is the standard 6 cell, operating time of the Dell Precision M4500 is average. In tests on batteries, when the screen brightness to 70%, open Wi-Fi, the maximum operating time is only marginally more than 2 hours. When using 9-cell battery is elevated, the duration is 5 hours 37 minutes.

Results so seamlessly integrated with a powerful machine configuration and power-consuming as the Dell Precision M4500.

Overall assessment

We can say now is a Dell Precision M4500 laptop is in a strong performance, the best processor on the market today. Although still in the design defects in joints with a screen full keyboard design but quite sturdy. The price on Dell's website range from $ 1.548 - $ 1.643 depending on configuration.


You can see more detail technical this laptop in here : Dell Mobile Precision M4500 Computer Workstation (Intel CORE I5 520M 250GB/4GB)





HTC Wildfire- Cheap smartphone with more interesting features

Wildfire is running Android HTC model with a compact mid-range and more features. Unfortunately, the machine screen is low resolution.
HTC Wildfire- Cheap smartphone with more interesting features

HTC is a serial Wildfire Tattoo released last year, but the design and features, Wildfire is a legacy of Desire almost intact and equipped with advanced hardware shortened.

Journey of the model began in April, when HTC Facebook account to post your choice of four names. Most fans of HTC choose from Wildfire impressed by the semantics of the word. Wildfire is considered affordable smartphone from HTC

The main features of the HTC Wildfire.

- Runs on 4-band GSM / GPRS / EDGE, 3G/HSDPA connection 7.2 Mbps.

- Android  OS 2.1 interface HTC Sense.

- Capacitance touch screen 3.2 inch QVGA display, multi-touch points.

- Processor Qualcomm MSM 7225 528, 384 MB RAM, 512 MB ROM.

- Connect to Wi-Fi, GPS.

- Other features: automatic screen rotation, light sensor, automatically disconnect tones, smart dialing.

- 5 megapixel camera, video support.

- 3.5 mm headphone jack, 2GB memory card, integrated Bluetooth A2DP.

Design


HTC Wildfire looks like  HTC Desire a mini version. In addition to Brown, this model is more red, white and quite showy.

HTC Wildfire- Cheap smartphone with more interesting features


In size, compact and visible light than machines, 106.8 x 60.4 x 12 mm and weighs 108 grams compared to 119 x 60 x 11.9 and weighs 135 grams of Desire. The new design makes Wildfire looks more comfortable holding hands or put on some pants pocket. In addition, the design of the machine is better than Tattoo.

The small size, making the screen smaller Wildfire, only 3.2 inches in size, capacitance touch technology. Located in the lower price range and reduced much equipment, so the standard of the computer screen resolution is only QVGA 240 x 320 pixels. With relatively small standard resolution, Wildfire display images and characters rather less easy to see the big picture right point on the small screen, not color.

Small screen makes the keyboard becomes narrow and difficult to use for editing in normal mode. However, when arranged horizontally, allowing machines to work better. Equipment support multi-touch points, allowing zoom, web, maps impressive, but this is no more equipped devices have the same price range.

Below the screen, Wildfire has the standard 4 buttons of Android include Home, navigation, back (back) and search key. Other keys are hard to Desire, this model uses touch.

Besides the left is increasing or decreasing the volume keys, microUSB port, power button and 3.5mm headphone jack is on the top. Cameras have 5-megapixel camera, flash back.

Features

Mobile is a shortened version and is priced well, but Wildfire still many useful features. Machines running on Android operating system version 2.1 and Sense latest HTC, comes as the widget as Friend Stream, the fast interface allows applications. Machine list has been upgraded to version 2.2 Froyo.

HTC Wildfire- Cheap smartphone with more interesting features

In addition to the standard Android applications, this model also included a number of features like updates via Twitter Peep, add geographic location and tourist destination on the footprint image. Wildfire also supports easy application installation via Android Market.

On the phone features, Wildfire 4-band GSM support, speakerphone speakerphone, speed dial, smart dialing, voice, conference phones, multimedia messaging. Bluetooth A2DP support machine.

Wildfire is a device integrated 3G connectivity, in addition, users can surf the Web, Internet connection via Wi-Fi. Your web browser based on Webkit HTML machine.

Users can record video and upload directly to YouTube from 5 Megapixel camera of the Wildfire. However, the standard video format of the machine is low, including CIF, QVGA and QCIF.

Performance

The test phone connection in Vietnam showed relatively stable Wildfire conversation, calls sound clear and clean. Almost looks status "dropped" calls during use, in a noisy environment, for sound quite machine.


Wildfire uses Qualcomm MSM7225 processor speed of 528 MHz, obviously, can not compare the possibility of image processing, web browsing speed or Desire models with 1GHz running Android on the market. However, the handling features, and video is really nothing to complain.

Battery capacity 1300 mAh by machine, less than 100 mAh Desire, though this version is low resolution screen, supporting more energy, but time does not use any different. Use more than one day to about recharging while using regular phone, over 2 days.

You can see more detail technical this smartphone in here : HTC Wildfire A3333 GSM Unlocked Smartphone with Android OS, 5MP Camera, Wi-Fi, and Touch Screen(Brown)





Acer Timeline X4820 Review- thin but powerful


Acer X 4820T Timeline  property designed with lightweight battery really impressive.

Acer X 4820T Model Timeline were equipped with upgraded hardware with Intel Core I5 but only use Intel integrated graphics chips instead of HD Graphics video card ATI Mobility Radeon HD 5470 in session use the Core i3.
Acer Timeline X4820 Review- thin but powerful
The trial version, Acer X 4820T equipped Timeline LED backlight screen size 14 inch resolution 1366 x 768 pixels configuration includes Intel Core I5-430 meters 2.26 GHz speed, memory 2GB RAM, 500GB hard drive, graphics chip, Intel Graphics HD, optical drive read / write DVD.

Machine weight 2.2 kg with 6 cell battery included. Timeline X 4820T Acer preloaded operating system Windows 7 Home Premium 64 bit

1. Design, keyboard, touchpad

Design

The design of the Acer Aspire line X and Timeline in 2010 have much in common. Machine impress modern design compared to the previous Acer laptop. The road along the corner decisively lightweight design. The most outstanding features of the Timeline X 4820T aluminum casing is scratched and is very luxurious advantage of the high-level laptops today.

Inside of the machine is designed with plastic layer has a rough surface caused by Li slippery hands when using. This design also helps to look clean and we always dare not sticky fingerprints or dirt, sweat.

Timeline X 4820T equipped with many connections but unfortunately did not have the appearance of data exchange port high speed eSATA.
Acer Timeline X4820 Review- thin but powerful

Keyboard, touchpad

Modern design than before, but X 4820T Timeline retain the traditional style of the Acer keyboard. When manipulating the keyboard feels good and easy to get to know almost confused when using the keyboard. However, unfortunately, did not have computer multimedia keys separate.

In addition, small navigation key is a weakness inherent in models of Acer.

This laptop's touchpad is quite responsive, which satisfy certain level of contact surfaces to facilitate user operations is more accurate. The motion sensor support are also areas of this mouse to perform well.

2. Monitor performance

Monitors

Timeline X 4820T equipped with screen sizes equipped with LED backlight screen size 14 inch resolution standard WXGA 1366 x 768 pixels, 16:9 ratio. Like most other model using mirror screen, showing images sharp and clear even still the ball, especially when used outdoors and when displaying images with dark colors like most other mirror screen.

Tilt angle in the two machines at acceptable levels, when tested at approximately 50-60 degree angle compared to the perpendicular, the eye can still observe good image. However, these images will be dark shadow color than the rest. Meanwhile, if you look up the incline from the dark images often go quite well.

Performance

Timeline Acer X 4820T configuration includes Intel Core I5-430 meters speed 2.26 GHz, 2GB RAM, 500GB hard drive, graphics chip Intel Graphics HD, optical drive read / write DVD.

Scoring system using the Windows Experience Index.

With hardware like this, this model achieved 4.1 points (from a low point by clicking the graphics capabilities for Windows Aero) marked by the system when Windows Experience Index on Windows 7 Home Premium (64bit). On a scale of detail, to reach 6.7 point processor, RAM memory is 5.5 point while the 4.1 graphics capabilities for gaming and graphics point to reach 5.0 points.

Machine reached 1566 points for 3DMark06.

Meanwhile, if you use the program to try scoring power 3DMark06 graphics, Acer Timeline X 4820T only achieve 1566 points. This is easily understood by machines using only Intel integrated graphics chip HD Graphics and higher than average level of 1,000 points in the laptop does not use graphics. At this level a little more than marginally Inspiron 14R model also uses graphics chip with Intel HD 1452 Graphics score.

If using PCMark Vantage program (version for 64 bits operating system) to assess the overall machine, the machine achieved a scale of 5091 points with details like this.

Scoring machine with the program overall PCMark Vantage.

When playing a game testing requirements as PES2010 average graphics, computer games can only be set at the lowest level "Low" and the rate stabilized at 42 frames per second.
Test results drive with HD Tune Pro 4.5 program.

Test the speed of the 500GB hard drive (speed 5400 rpm) is the average speed is 63.5 MB /s.
Rank processor with the latest programs Cinebench R11.5.

Continue using Cinebench R11.5 program to evaluate the latest Intel Core i3-350m 2.26 GHz processor speed, computer results as shown above.

Test copy a 545 MB files that are different between the two partitions, the time for completion is 29 seconds. While to compress a file with similar size is 4 minutes 21 seconds.

3.Thermal, battery life, sound

Thermal

Timeline X 4820T using cooling fans placed at the left edge machine, when running normal applications like web surfing or watching movies, fans also started running and found the heat quite well in this position.

Hottest part of the machine located on the left and the left touchpad keyboard. When used in a room with the outside temperature is 24 degrees centigrade may be placed on the thigh to work without feeling too hot.

Battery

Timeline X 4820T equipped with 6-cell battery included. To fully charge the battery while PC users should use the period of about 3 hours 20 minutes from the battery to 8%.

Open Firefox loads 10 test sites and to automatically reloaded every 15 minutes, to open an online music site and for continuous playback using headphones instead of speakers and the volume level to 70% of 80% brightness (brightness level higher than 50% in recent trials for the other laptop) to the machine run until it automatically shut down (or 5%), then this time is 3 hours 26 minutes.

While running a test machine and 720p HD movie files for playback continuously until the machine off, still enable Wi-Fi, instead of using external speakers and headphones at the volume level to 70% (negative bar of Windows Media Player to level 100%), 80% brightness until the machine runs itself off (also at 5% battery), then this time is 3 hours 30 minutes.

These are impressive numbers, especially when the other laptops use the same test, the screen brightness lower with only 50% but the battery life just a little over 2 hours.

Sound

Speaker Systems cuaTimeline X 4820T is arranged in the upper right side of the keyboard. Speakers for sound quality even at relatively large volume is not enough listening, personal entertainment in the room of more than 20m2.

Generate more natural sound of bass, treble sometimes not really clear.





Fujifilm FinePix F300EXR - high versatile travel camera

With many unique features, the Fujifilm F300EXR promises to continue the camera reached the top best seller when released in the market.
Fujifilm FinePix F300EXR - high versatile travel camera

Inherited long F zoom lines on 10x , F300EXR have the basic parameters of a resolution of 12 million pixels, 15x optical zoom (24 - 360mm), 3 inch LCD screen, the mechanism of re-sharp AF, the PASM modes and 720p HD video-recording capabilities.

About design, along the line F but F300EXR Fujifilm has been improved along the rugged appearance but is therefore easy to hold. The entire lens occupies most of the front, side handles and a bit rough on the skin layer affixed to a hand holding a more solid. The top button is included photography, zoom ring, power button and pop-up flash. However, as the lights are arranged adjacent to the left edge of the holding hands will be slightly difficult because the index finger will be translated into the side.

A new feature is visible on the next F300EXR Edit mode instead placed on the back cross was placed on the back and face, which Fujiilm the design will help adjust between modes with a fast hand and easier.

Behind the machine is a large 3 inch LCD screen takes up most of the area. The quick access buttons have been converted to the wheel and press the help menu or choose the browse mode very quickly. Video button has been made independent and relatively large size, very convenient to switch between shooting mode and take pictures. But more deeply about the arrangement of the operation must also make this button not very convenient, especially when you have held machine a hand.
Fujifilm FinePix F300EXR - high versatile travel camera

Highlights F300EXR focus located in the re-sharp mechanism. This mechanism allows users to choose between type AF phase (as in SLR) or type of focus by contrast. According to Fujifilm, the sensor model is integrated phase focus is always on the Super CCD EXR sensor of the machine. This mechanism will be activated when shooting in good light conditions to take advantage of speed, and when light, contrast AF mechanisms will be activated automatically.

Follow Sony, Fujifilm also introduced lia camera panorama feature New Motion Panorama 360. According to Fujifilm, while firms often just photograph the 180 degree panorama with the F300EXR angle can shoot around the scenes to create a full 360 degrees. Practical activities that this feature is effective with good image compositing mechanism. Only thing to note is the speed when handling machines must be synchronized lia, otherwise it will error.

A number of mechanisms operating on F300EXR Fujifilm model can do some people not familiar feel inconvenient. Professionals such as between the PASM mode to EXR mode, the lens will focus on the smallest collection, so if you're shooting with a zoom, you have to zoom again makes the picture more time. In addition, F300EXR is designed to remember the settings previously installed by each mode. When you switch from manual mode, shutter priority, for example, the ISO will be returned once installed closest shutter priority modes instead be preserved in all modes.

Speed operation, according to Fujifilm, through the mechanism of phase focusing, focusing speed is only 0.158 seconds. The fact that using the correct focusing speed is pretty fast, even when zooming all sizes, but with the light conditions must be sufficient.

When light, the camera will return regimes usually focus contrast. Although slower, but this mechanism also works quite effectively, sometimes only slightly blurred images but about completely acceptable for the natural generation of tourism as F300EXR.

Despite the impressive ISO range of 100 to 12,800 but the image quality, excellent F300EXR only when the ISO below 400. Up to 800 quality grain and noise reduction with loss of detail visible. ISO 1600 and 3200, then too bad, and to achieve high sensitivity, the resolution must be 12,800 to decrease.

One thing to note is that when taken with EXR mode (the mode priority band contrast D-Range High Priority or High ISO ISO & Low Noise), resolution of the machine will be reduced to 6 million points.

Every machine under high levels of tourism, direct competitors in the segment located F300EXR small machines such as Panasonic TZ10 or zoom Sony HX5V. Despite the lack of GPS but offset Fujifilm has added many other advanced features for this version, which can not not mention the advanced mode EXR offs thanks to new sensor technologies and mechanisms to take sharp. With up to 15x optical zoom while maintaining the wide angle 24mm, F300EXR promises to follow his orchestra 200EXR with continuous achievements in the ranking of the best-selling camera in months.




Samsung C750 LCD- models only support 3D


Although only LCD CCFL, but Samsung C750 is equipped with a range of high technology today, including 3D features.

Samsung C750 LCD- models only support 3D

In addition to the leading LED product line, Korean electronic goods also apply 3D technology to other TV series has a more reasonable price, including regular LCD product line with only the 3D model Samsung LCD C750 .

Not owning a modern LED technology, but the C750 is still a 3D model attractive and worth the money by owning high-level design style, modern with full 3D features Samsung's latest.

If at first glance, would hardly recognize C750 LCD TV with a CCFL lamp usually because it is designed with a stylish new crystal, similar to the two 3D models C7000 and C8000 advanced LEDs. Entire screen frame is covered with a glossy black paint edge lines during the four surrounding edges. Brackets use circular structure with swivel head. However, instead of using the rectangular base and definitely thick as most other models Samsung LCD and Plasma, the base model C750 has stylish rectangular shiny chrome plated.

Besides design, a strength which is the C750 is capable of supporting 3D technology to the fullest. 3D Model of Samsung LCD 7 is compatible with common 3D formats available today from 3D Full HD on Blu-ray to the 3D TV side-by-side format.

Meanwhile, the system of 2D to 3D conversion performed for the television program or normal 2D DVD content in the photo frame. However, simulated 3D effect is difficult to make sense too impressed and interested to see that in fact help reduce the difficulties of the lack of 3D content standards today.

With interpolated 200 Hz scan speed, the Samsung LCD helps show 3D images with 3D smoothly providing each lens in 3D mode 100 Hz refresh rate. High speed scanning of 2D images also show more fuzzy smooth, vibration reduction and image.

Web Content System @ online Internet TV feature is also well worth watching on Samsung C750. Samsung apps warehouse applications over 20 applications with Facebook, Twitter, YouTube, Picasa ... and many other mini games to help users have more entertainment choices than the traditional method of watching TV. Wi-Fi receiver or wireless networks are left two choices for Internet connectivity on the C750.
 Samsung C750 LCD- models only support 3D

Ability to perform the multimedia content directly from the USB port, the Korean manufacturer also upgraded features on its new models by allowing content to run MKV support resolution up to 1080p and DivX HD files with standard DTS 5.1 surround sound.

Thanks to the integrated circuit IDTV, users can record HD channels are being broadcast on the screen right into the removable storage memory via the USB port, along with the pause, fast rewind, rewind through the through Time-shift feature.

One other interesting point is the communication of A / V on LCD model C750 much more expensive models of the Samsung LED. Up to 7 communications standards including 4 different 1080p HDMI with ARC line, 2 line analog component and a PC line.

The biggest shortcoming of the C750 is not located in the Skype feature, allowing users to call and the call is online right on screen, while most other models are Samsung 3D TV.

Also, instead of the remote control with aluminum modern and attractive, due to their lower production costs, Samsung re-use plastic controller is usually associated with C750 for sale. Which involves the use of CCFL lighting system usually also makes the overall thickness of the C750 up to 80.3 mm. Because, although the crystal can be designed for the C750 which looks elegant and beautiful but really only with the LCD over a vertical plane with the base but can not be sorted perfectly with the wall.

According to CNet Asia, Samsung C750 will be a cheap ticket to help many people can reach easily with 3D ships that have not put out large amounts of investment. Moreover, this is a 2D product owns many advanced features and remarkable today. If you do not really paying attention to the black level of images and the ability to consume more energy than a little LED, Samsung C750 also worth more money and more attractive models and 3D LED LED, if compared on price, functionality both modern and design.


You can see more detail technical this TV in here : Samsung LN46C750 46-Inch 1080p 3D LCD HDTV (Black)





Dell Inspiron 14R review- reliable and powerful

Dell's laptops are designed pretty sure the keyboard, good touchpad although battery life is not impressive.
Dell Inspiron 14R review- reliable and powerful

Inspiron new 14R was upgraded to use the Intel Core i series in June last. This model is a rugged, elegant plastic ball engraved with the outside and still inside the sinking aluminum form scratch with good equipment configurations.

The trial version, Inspiron N4010 (also known as Inspiron 14R) configuration includes Intel Core i3-350m speed 2.26 GHz, 2GB DDR3 RAM, 320GB hard drive speed 5400 rpm, HD Graphics Intel graphics chip, optical drive read / write DVD.

Machine weight 2.39 kg with 6 cell battery comes time to use for about 3.5 hours according to the manufacturer. N4010 Inspiron preloaded operating system Windows 7 Home Basic 64-bit.

Design, keyboard, touchpad

Design
Dell Inspiron 14R review- reliable and powerful


Inspiron 14R impress right from the first look at the design hinges on the first machine to assume a deviation space behind. Plastic ball with a simple sink, but still create distinctions, luxury for the model. However, as usual type of adhesive is easy to peel sweat, fingerprints, so when users will often have to clean the machine hygiene.

Hand to hand in part of this model is made of aluminum radiator helps good scratch for machines while also creating more comfortable rest at regular intervals when work must continue.

14R Inspiron quite fully equipped port. By breaking the design at hinge machine manufacturer should have put a number next to the gateway as VGA, USB and power jacks. Other connections are also commonly appear as HDMI and eSATA. However, with only 2 USB ports seems a bit less than the demand for laptops and many other current models.

Keyboard, touchpad

Design of computer keyboard retains characteristics of the products in the Dell. This is also the key advantages of this model is the key to this level well, feeling very comfortable for the user. Specifically, four navigation keys also have a large size plus more for Inspiron 14R.

This laptop's touchpad is also quite sensitive, use the mouse is due to meeting certain advantages to the user manipulation is more accurate. The motion sensor support are also areas of this mouse to perform well.

Monitor, performance

Monitors

Equipped Inspiron 14.1-inch screen size resolution of the standard WXGA 1366 x 768 pixels, 16:9 ratio. Like most other model using mirror screen, showing images sharp and clear even still the ball, especially when used outdoors and when displaying images with dark colors like most other mirror screen.

Tilt angle on either side pretty good machine, when tested at approximately 50-60 degree angle compared to the perpendicular, the eye can still observe good image, text on the screen with almost no color change page. Meanwhile, if you look up the incline from the dark images often go quite well.

Performance

Inspiron N4010 (also known as Inspiron 14R) equipment configuration includes Intel Core i3-350m speed 2.26 GHz, 2GB DDR3 RAM, 320GB hard drive speed 5400 rpm, Intel graphics chips Graphics HD, optical drive read / write DVD.
Dell Inspiron 14R review- reliable and powerful
 Mark with Windows Experience Index system


With hardware like this, this model achieved 3.9 points (from a low point by clicking the graphics capabilities for Windows Aero) marked by the system when Windows Experience Index on Windows 7 Home Basic (64bit). On a scale of detail, to reach 6.3 point processor, RAM memory is 5.5 point while the 3.9 graphics capabilities for gaming and graphics point to reach 5.1 points.

Dell Inspiron 14R review- reliable and powerful
 Machine reaches 1452 points with 3DMark06.

Meanwhile, if you use the program to try scoring power 3DMark06 graphics, the Inspiron 1452 only achieved at 14R. This is easily understood by machines using only Intel integrated graphics chip HD Graphics and higher than average level of 1,000 points in the laptop does not use graphics. Points are also higher than the 1256 models of the IdeaPad U460 uses an Intel GMA HD.

If using PCMark Vantage program (version for 64 bits operating system) to assess the overall machine, the machine achieved a scale of 4781 points with details like this.

Dell Inspiron 14R review- reliable and powerful
 Scoring machine with the program overall PCMark Vantage.

When playing a game testing requirements as PES2010 average graphics, computer games can only be set at the lowest level "Low" and the rate stabilized at 40 frames per second.


Test the speed of the 320GB hard drive capacity (speed 5400 rpm) is the average speed is 60.8 MB / s.

Dell Inspiron 14R review- reliable and powerful
 Rank processor with the latest programs Cinebench R11.5.

Continue using Cinebench R11.5 program to evaluate the latest Intel Core i3-350m 2.26 GHz processor speed, computer results as shown above.

 Radiator, battery, audio

Thermal

14R Inspiron use cooling fans placed at the left edge machine, when running normal applications like web surfing or watching movies, fans also started running and found the heat quite well in this position. Meanwhile, the area left of the keyboard and touchpad are heating up pretty quickly when used. However, at this temperature is acceptable when it comes to computer lap to work.

Battery

14R equipped Inspiron 6 cell battery included 63 Wh capacity. To fully charge the battery while PC users should use the period from about 2.5 hours of battery level to 8%.

Open Firefox loads 10 test sites and to automatically reloaded every 15 minutes, to open an online music site and for continuous playback using headphones instead of speakers and the volume level to 70% of 50% light machine run until it self off (also at 5%), then this time reached 2 hours 21 minutes.

While running a test machine and 720p HD movie files for playback continuously until the machine off, turn off Wi-Fi, instead of using external speakers and headphones to 70% volume level (sound Windows Media Player program to 100%), 50% brightness until the machine runs itself off (also at 5% battery), then this time reached 2 hours 28 minutes.

Sound

Speaker Systems Insipron of 14R are arranged at the underside near the front edge of the machine. Speakers for sound quality even at relatively large volume is not enough listening, personal entertainment in the room of more than 20m2.

Especially the bass and treble clarity, in accordance with the personal entertainment.





Followers

Pageviews Last 7 Days