Archive for June, 2010

Logitech speaker system z313 offers balanced sound in a compact design

June 30th, 2010

A leading manufacturer of PC speakers, today announced the Logitech® Speaker System Z313. If you want to improve your experience when listening to music or watching movies on your computer, the Speaker System Z313 gives you what your built-in computer audio can’t.

The Logitech Speaker System Z313 is a 2.1 system that is sure to fill your room with sound despite its compact size. When you’re listening to music or watching TV on your computer, the Speaker System Z313 delivers with balanced sound as a result of the 25 watts (RMS) of power.

Playing a dual role, the subwoofer delivers deeper base when you really want to feel the beat. Plus, the efficient design makes it easy to store in tight places.

The speakers feature a convenient control pad which allows you to easily turn on your speakers, adjust the volume or plug in your headset when you want to enjoy private listening. The headphone jack also offers a convenient solution if you want to listen to music from your iPod® — just plug it in.

Along with being easy to control, the Speaker System Z313 is easy to set up. All you have to do is connect the speakers to the subwoofer, connect the subwoofer into your computer using the provided cable, and plug in the power.

That’s it. And since the speakers connect to a computer using a standard 3.5 mm audio output jack, they are compatible with any computer running Windows® XP, Windows Vista® or Mac OS® X 10.3.9 or later.

Pricing and Availability

The Logitech Speaker System Z313 is expected to be available in Australia from July for a suggested retail price of $79.95 incl GST.

Source:http://www.prwire.com.au/pr/18701/logitech-speaker-system-z313-offers-balanced-sound-in-a-compact-design

Print your pdf files with convenience

June 30th, 2010

The registry uses a very effective filing system to let Windows easily access all the necessary information to execute a functional computer interface.

The increase in registry’s database is directly proportional to the number of hardware, users, and applications in the computer. This is because everything that is happening within the computer’s platform is recorded and stored at the Windows Registry.

Registry errors have a big amount of contribution to the registry’s database population. Every erroneous installation, failed application execution, and malicious Internet downloads activity leaves a trace that adds up to your computer registry database as errors or malicious entries.

Given this situation it is inevitable for the registry to not expand and eventually consume most of your available hard disk space. When this happens it becomes difficult for Windows to gather information from the registry to execute applications or use hardware computer facilities.

This then compromises the computers effectiveness and efficiency which is why cleaning Windows registry is important.

To clean the Windows registry a user has two options, one is to manually remove all the registry error through Registry Editor. Manual editing constitutes a great risk to your computer as any erroneous alteration is irreversible and can cause fatal problem to your system.

The second option is to employ a reputable registry cleaner that can help you scan and fix erroneous registry entries. This process is a lot safer as most quality cleaner offers additional back up features that can save your system just in case something wrong happens. By using the system back up user can return the registry to its original state and restore a functional registry database.

In general, both of this process can save a valuable amount of your hard drive to help optimize your computer’s performance. A regular registry scan can help maintain your computer perform faster

Source:http://www.booshnews.com/2010/06/29/print-your-pdf-files-with-convenience/

What are some of the disadvantages of overclocking your pc?

June 30th, 2010

1. What is Digital in the first place?

Digit means number. Digital is kind of saying ‘All about numbers’, which is what happens behind the scenes. To understand the cyber world, first you must know what Base-2 is. Base-2 is the representation of numbers using 1s and 0s. In other words, the usual number 4 in Base-2 is 100 ( one, one and zero, not one hundred).

How is this possible? Well, this is the equivalent of saying (1 x 2 In power of 2) + (0 x 2 In power of 1) + (0 x 2 in power of 0). Note that every number in power of 0 equals 1 (2 in power of 0 = 1). So what is the product of the mentioned formula? The product is 4. This is how Base-2 works.

But why use Base-2? The answer is simple. In a digital circuit, 0 Volts represents digital ‘0′, and +5Volts represent digital ‘1′. If we can convert all numbers to ones and zeros, we can implement them in a circuit using Transistors.

However, before getting to transistors, we must first see what ‘Gates’ are.

2. Gates and their role in Digital

Digital circuits are created from small units known as Gates (like your body, which has its biological cells). We have 4 common gates: AND, OR, XOR and NOT. Gates usually have two inputs and one output (except NOT which has one input and one output).

Lets explain the AND gate. AND gate has 2 inputs and 1 output. If BOTH inputs are digital ‘1′, then the output will be digital ‘1′, otherwise (if both zero or one of the inputs zero), the output will be digital ‘0′ (thus is called the AND gate, meaning input 1 AND input 2 should be digital ‘1′).

The second gate will be the OR gate. OR gate has two inputs and one output. If at least one of the inputs is ‘1′, the output will be ‘1′ (thus named OR).

The third gate will be XOR. XOR is the extended version of OR. If ONLY 1 of the inputs is ‘1′, the output will be ‘1′, otherwise it will be ‘0′. (Both inputs ‘1′ or both ‘0′ will make a ‘0′ output).

The final gate will be NOT. This gate has 1 input and 1 output. The output is the reversed version of input. If you connect the input to digital ‘1′, the output will be ‘0′ and vice versa.

So, now that we know what gates are, lets make small digital adder! A digital addition is very simple. There are several rules to Follow:

0+0 = 0

0+1 = 1

1+0 = 1

1+1 = 0 and 1 in the next position (known as Carry bit).

The last one is a little different. 1+1 = 10 (0 is the answer, and 1 is called ‘Carry’). You might have already noticed, the addition is the gate XOR. 1 + 1 is the same as 1 XOR 1, since XOR does exactly that. The trick here is to detect when you have a Carry. If both inputs are 1, then you will have a Carry bit. To get the carry bit, we use an AND Gate.

Our adder is complete, now we have 2 inputs (the numbers) and two outputs ( one is the result, the other is the carry should it exist). This little circuit is called a HALF-ADDER. Why? Because it has two inputs, where it should have three.

You may ask why three? The third input is the CARRY bit of the PREVIOUS adder. Imagine you want to add 32bits number to another 32bits number. What you will need is thirty-two adders with their carry bits connected to each other.

Since each adder has a carry bit, the real circuit you should make is Input1 + Input2 + Carry. This will be too long to explain in a short article here, but you can Google it, and be sure you will find many tutorials on adders, half adders and the theory behind them.

Now that I explained how to create an ADDER in digital, you might have realized that the other operations are done using the same gates (Multiplication, Division, Subtraction, etc). Most people believe that these operations are done in software, never knowing that actually they are all done in hardware. It’s quite a fun life once you get used to it.

3. So now, what is a Transistor?

Transistor was the revolution in technology, and the very reason you can hold a mobile-phone in your hands or have a computer at your home. Transistor is the digital-cell; you can find several billion of them on a regular processor chip, the very same one you have on your computer now.

Now let me explain how it works. Of course, this will be the very basic transistor, as there are other cells used today which are more advanced (known as CMOS). A transistor has 3 leads: Collector, Base and Emitter.

If you apply power to Base (connecting it to +5V), then electricity can go from Collector to Emitter Assuming that collector is connected to a power supply). In fact, a transistor, in digital world, is a switch. Base is the key, and once you press it, collector and emitter are connected to each other; and of course once you release it, those two have no connection any more.

Now how does transistor help making world a better place? You can use transistor to create the gates I mentioned earlier. To create an AND gate, you need 3 transistors connected in the correct order. The OR gate needs three as well. The XOR gate needs more than 5, and the NOT gate needs only 1. For the half adder that you just learned how to create, we will need about 15 transistors, and you have your self a digital adder that can do something useful (Actually, it can add only 2 bits).

Now for 32 bits (commonly found in processors), you will need about 500 of them. This is the reason processors have many transistors. A simple Multiplier for 32 bits will need several thousands of them. You can now imagine complicated operations such as calculating Sine or Cosine will need several thousand transistors, and also memory blocks (known as FLIP-FLOP). The Flip-Flop is something I will explain in the second part of this tutorial.

I hope this article made things a little more clear to you. Remember the key to learning is doing research. If you are interested in this field, a book can be a very good place to start.

Source:http://www.booshnews.com/2010/06/29/what-are-some-of-the-disadvantages-of-overclocking-your-pc/

Cisco launches cius tablet device

June 30th, 2010

Networking giant Cisco has launched a tablet computer, the Cius, aimed at business users and will touted as part of an integrated solution that includes Cisco’s Telepresence package.

Uncommonly, the tablet runs on an Intel Atom processor clocked at 1.6GHz and Google’s Android. The rest of the hardware includes a 7-inch capacitive touchscreen, 1GB RAM, 32GB Flash, 802.11 bgn Wi-Fi plus integrated 3G/4G connectivity, video out, dual noise-cancelling microphones and HD Audio.

Described by some as the Blackberry of tablets, the Cius will also feature a front facing camera plus a 5-megapixel one on the back just like the newest Apple iPhone. Cisco also said that he tablet’s battery life will be a more than adequate eight hours (two short of the iPad) and will weigh only 1.15 pounds.

Not surprisingly, Cisco will be integrating a host of applications on the device including Cisco Quad, Show and Share, WebEx Connect, WebEx Meeting Center, Unified Presence, and TelePresence.

Cius will also support virtual desktop integration which will allow business users to access SAAS (Software as a Service) online solutions.

Source:http://www.itproportal.com/portal/news/article/2010/6/30/cisco-launches-cius-tablet-device/

Top 5 companies in the computer hardware industry with the lowest relative performance (par, dell, ncr, aapl, tdc)

June 30th, 2010

Below are the top five companies in the Computer Hardware industry as measured by lowest relative performance. This analysis was based on yesterday’s trading activity as we search for stocks that could be relative bargains.

3PAR (NYSE:PAR) ranks first with a loss of 8.71%; Dell (NASDAQ:DELL) ranks second with a loss of 5.25%; and NCR (NYSE:NCR) ranks third with a loss of 4.84%.

Apple (NASDAQ:AAPL) follows with a loss of 4.52% and Teradata (NYSE:TDC) rounds out the top five with a loss of 4.4%.

SmarTrend is bearish on shares of DELL and our subscribers were alerted to Sell on May 04, 2010 at $15.87. The stock has fallen 22.7% since the alert was issued.

Source:http://www.mysmartrend.com/news-briefs/news-watch/top-5-companies-computer-hardware-industry-lowest-relative-performance-par-de

What the Windows 8 leak tells us

June 30th, 2010

A leaked series of Windows 8 presentations offers insight not just into what Microsoft wants to accomplish with Windows 8 but also how it plans to go about developing the next Windows.

The company appears to be following much the same blueprint it did with Windows 7–talking early with computer makers but saying next to nothing publicly until the company is sure what it will be able to deliver. Of course, the leaked documents have thrown a bit of a wrench in that plan.

That said, while there is quite a bit to learn by reading through the leaked Windows 8 planning documents, it would be wrong to just assume that Windows 8 will be the sum of those PowerPoint presentations.

Microsoft has a long history of shipping Windows products that are very different than their initial incarnations. Windows Vista, for example, was a significantly different operating system than the original Longhorn plan unveiled at the 2003 Professional Developers conference.

It’s also possible that the gang in Redmond also may yet have a trick or two up its sleeve that aren’t part of these documents, which were designed to be a starting point for a dialogue with computer makers rather than a feature list for customers.

In the slides, which were presented around the time of an April forum with PC and hardware makers, the company even notes that, although it wants input on which ideas to pursue, there are already “more ideas than there is time to implement them.”

Still, the documents offer the clearest look yet into how Microsoft is thinking about the next major release of Windows.

To recap, the documents outline a few key areas of focus for the next Windows, including a focus on improved boot time, simplicity, and ease of use along with changes aimed to make Windows more power efficient and simpler to manage. There are also some specific details, such as plans for an App Store-like Windows store as well as plans to de-emphasize support for FireWire and TV Tuners while increasing support for location-based services.

With Windows 8, Microsoft clearly wants to have a better competitive answer to tablet devices such as Apple’s iPad and also to build on some of the things that made Windows 7 popular on traditional computers. Microsoft also clearly wants to create a little more room for PC makers to stand out from one another, with hopes of working with individual computer makers to support features such as 3D or wireless displays.

On the power side, Microsoft wants to do better when it comes to both starting up a Windows 8 computer as well as resuming from sleep, both longtime challenges with Windows use, particularly over time as more applications and services attempt to load at startup.

The documents also show Microsoft is toying with the idea of using a Webcam as a broader input device, potentially using face recognition to authenticate users and also sensing whether someone is actually at their computer, putting the system to sleep when the user walks away.

So, just how did this information fall into our collective laps? The documents appear to have been prepared for Hewlett-Packard and many are dated April 2010. They showed up earlier this month for download on Win7Vista.com—a Windows enthusiast site. Among the first articles based on the documents were a June 26 posting on Microsoft Journal and a story early Monday on Microsoft Kitchen.

The Microsoft Journal post, and in fact that entire blog, were taken down, apparently for having violated Microsoft’s terms of service (the site is hosted on Windows Live Spaces). Assuming the request to take down the site came from somewhere inside Microsoft, that would appear to be direct confirmation that the documents are indeed genuine. That’s something Microsoft has refused to confirm publicly, but also has not denied.

What is clear is that Microsoft had no intention of talking about Windows 8 anytime soon. The company decided not to have either a Windows Hardware Engineering Conference or a Professional Developers Conference this year, and executives had said that the focus for all of 2010 would be on Windows 7.

But, with these documents, we got a lot more of a sense of what the Windows team has been up to, and not just with regards to Windows 8. The documents also include a timetable for both Windows Live and Internet Explorer 9. According to the documents, Windows Live Wave 4, currently in beta, is scheduled for a final release in August, while Internet Explorer 9 is due to hit beta that month.

The documents also discuss a significant “air cover” marketing campaign planned for this year’s holidays designed to tout the combination of Windows 7 and the new Windows Live, something Microsoft had indicated it planned to do.

Source:http://news.cnet.com/8301-13860_3-20009222-56.html

Early Windows 8 ideas revealed in confidential documentation

June 30th, 2010

In these slides, you can tell that Microsoft is feeling pressured by Apple’s business tactics, and it seems that they might just mix some Apple-juice into their new OS. The idea is that Apple is successful because:

1. High quality products; “It just works”
2. That there fore institutes product quality
3. Which, in turn, beckons customers back; repeat cycle

Further slides show that Microsoft may be trying to incorperate new hardware as well such as USB 3.0 and Bluetooth 3. Will these give Microsoft an edge? Perhaps. Only time will tell.

Another slide states that Microsoft wants their new computers to instantly come out of sleep mode. Again, like Apple’s iPad, iPhone, and iPod. With a touch of a button, the computer is aware of its surroundings. This means that it’ll work fast, and will allow users to more instantly connect with their machines to get the information they wish to retrieve.

So, with Windows 8 is Microsoft trying to regain the throne back from Apple in the tablet sector? Perhaps. PCWorld said that “The iPad’s popularity is an indication that people’s needs weren’t being met by the traditional PC paradigm.”

Bear in mind that these are early product planning information retrieved from a confidential document, and most if not all of it will likely change come the final product.

Source:http://www.geeksmack.net/industry-news/early-windows-8-ideas-revealed-in-confidential-documentation

Get Adobe Flash playerPlugin by wpburn.com wordpress themes