Apple iPod classic 160 GB Black (6th Generation)

Electronics : Apple iPod classic 160 GB Black (6th Generation)

Apple iPod classic 160 GB Black (6th Generation)

from: Apple Computer



 : Apple iPod classic 160 GB Black (6th Generation)
See Larger Image

List Price: $349.00
Our Price: $332.49
You Save: -$16.51 ( 5%)
Prices subject to change.


Availability: Usually ships in 24 hours




Binding: Electronics
Brand: Apple
Color: Black
EAN: 0885909176939
Label: Apple Computer
Manufacturer: Apple Computer
Model: MB150LL/A
Publisher: Apple Computer
Release Date: 2007-09-05
Size: 160 GB
Studio: Apple Computer
Warranty: 1 year warranty



Editorial Review:






Features:
  • iPod classic puts your entire music and video collection in your pocket with up to 160 GB of storage
  • An enhanced interface offers a whole new way to browse and view your music and video
  • Cover Flow technology lets you use the patented Click Wheel to flip through your music by album cover
  • Beautifully redesigned, iPod classic features a sleek, new all-metal enclosure
  • 2.5-inch display; measures 4.1 x 2.4 x 0.53 inches (H x W x D), weighs 5.7 ounces





Accessories:
     see more

Accessories:




Availability: Usually ships in 24 hours


Related Items:
     see more

Related Items:



banned interdit verboden prohibido vietato proibido
  banned    interdit    verboden   vietato     prohibido    verboden  banned      vietato      interdit proibido   vietato       interdit      verboden      banned  prohibido   

Your IP has been blocked. Please perform the action below to regain access.

Code:  security image
Please enter the Code: 



Customer Reviews
Average Rating:  out of 5 stars

Rating: 5 out of 5 stars - Another five star review
This iPod replaces a Creative Zen Xtra 60 Gb MP3 player. The Zen started having cross-talk on all the tracks really bad, so I knew the hard drive was on the way out. Worse, I had recently synced the Zen, so all the files on my PC were corrupted as well. So, before I set up this iPod, I downloaded iTunes and did a thorough scrub of my PC-based audio files, and ended up tossing all of them. Fortunately I had a backup from about 3 months ago on my big USB drive, so I recaptured all the files and set up iTunes. The iPod took about an hour or so to sync with the approximately 3,500 files. No problems so far with any of them.

When my wife bought her iPod 5G, it came with a small slip-case and was in a relatively large box. The new 6G iPod Classif comes in a box about the size you get an order of checks in. In the box is the iPod, a sync cable, and the earbuds. Period. Not even any "special offers."

I noticed that the sound quality wasn't as good, but I was using the earbuds that came with the iPod. I got out the ones I was using with the Zen Xtra and the sound improved by a huge amount. I still think the Zen has better sound, but the iPod is acceptable, especially for the noisy aircraft environment where it will get the most use.

Two things I don't particularly like about the iPod compared with the Zen Xtra. First is that I can't play the iPod with it plugged in to a PC for charging. That was possible with the Zen, and I took advantage of it. Second is that the Zen Xtra had a removable, replaceable battery. I never ran out of power. What I will do with the iPod is to use my iGo auxilliary power pack with the iPod tip. That will get me through the longest airplane ride I am likely to be on.



Rating: 5 out of 5 stars - Good product.
As a replacement for another iPod I've encountered this one, more cool, the battery has a long last (almost twice than previous generation), and despite of has a bigger capacity it is more ligth.

Please don't let your iPod inside the car in a hot day... that was the way that mine get toasted... :(



Rating: 5 out of 5 stars - Amazing! I just love it
Is the best portable music device that you can get in the market.
Minimalist and well designed...

The only problem is if you wanna back up your music in other computers that are not the ones from which you uploaded the music to the iPod you will have to find a different program that iTunes for doing that.



Rating: 5 out of 5 stars - Good Buy
This is my first iPod and I am very impressed. The unit synchs very fast and the battery lasts longer than I expected. The controlls are a bit too sensitive at times, but other than that I have no complaints. I recommend this product.



Rating: 2 out of 5 stars - defective ipod
It was defective so I took it to the Apple store. They were great and exchanged it for another.



read more customer reviews on Apple iPod classic 160 GB Black (6th Generation)


 





Pastry Chef School - Chef Shoes |
  widescreeb tv
Tools and Hardware   Reviews





The Web Services Policy Working Group has published two Web Services Policy 1.5 - Working Drafts: an update to the Primer and a First Public Working Draft of Guidelines for Policy Assertion Authors. The new Guidelines document provides ...

(Source: Sunbelt Software) Messaging, internal and Web-based threats are increasing in number and severity. The risks to organizations large and small are real problems that users and their employers face if they do not establish adequate defenses against this growing variety of threats.

Read this Osterman Research paper to learn how organizations must implement a layered defensive strategy to protect against all types of threats and how Sunbelt Software can help.


Mark Matthews' Weblog

During the process of building the new query analysis feature for MySQL Enterprise Monitor 2.0, we thought the best way to test it at a nascent stage was to use it to tune our own application (since we use MySQL as the backend repository). What we found was actually quite interesting. It also showed that even to seasoned developers, who know that frameworks while helpful, often aren‘t the most direct, concise way to get things done, can often do very strange things that you don‘t quite expect.

For those of you that haven‘t heard about the feature itself, “query analysis“ takes all queries that are being processed by a MySQL server, normalizes them into something similar to a prepared statement form by removing literals, and then keeps track of total, min/max, average execution times, result set sizes, etc. at an aggregate level. It also takes snapshots of the “worst” examples of these queries, the ones with the highest execution time.

When we started using the first implementations of the feature on our own code, we found the following, interesting output:

What stuck out (at least to us), is that there is a lot of time spent toggling auto-commit state. In fact, if you add the "on" and "off" together, it's the second-most time consuming statement in our entire application! We thought we had this licked before we even looked at this query analysis data, because our application uses transactions all of the time, so we told DBCP to always return connections in auto-commit "false" mode. We even looked through what we thought was enough of the DBCP code to make sure this would actually work. So, what was causing these statements to run anyway? Well, the trick was, at this point during implementation, the server-side agent wasn't ready, so we were injecting this query analysis data via statement interceptors in the MySQL JDBC driver. So, we also setup the “worst” query to put in a stack trace in the comment field:

So, it was indeed coming out of some glue code we‘d written to wire DBCP into hibernate for our application (and still use our existing configuration mechanisms). Once the way was pointed, we set some appropriate breakpoints, and low-and-behold, we find this gem:

public void passivateObject(Object obj) throws Exception {
if(obj instanceof Connection) {
Connection conn = (Connection)obj;
if(!conn.getAutoCommit() && !conn.isReadOnly()) {
conn.rollback();
}
conn.clearWarnings();
conn.setAutoCommit(true);
}
if(obj instanceof DelegatingConnection) {
((DelegatingConnection)obj).passivate();
}
}

It makes sense to rollback when a connection is put back in the pool, as the application could‘ve misbehaved and started a transaction but didn‘t call commit() or rollback(). But, then, DBCP, without looking at how we‘ve configured this data source (to always be in auto-commit “false“), goes ahead and sets it to “true”.

So, what to do now? Should we internally fork DBCP, and keep merging this one-liner change every time we update DBCP? Do we file a bug, and wait for a new release of DBCP (we will, eventually). How do we fix it now? Well, once again, MySQL‘s JDBC interception facilities to the rescue. We just implement a very simple ConnectionLifecycleInterceptor that has the following implementation of setAutocommit(), which lets the caller setAutoCommit(false) and have it sent to the server, yet setAutoCommit(true) will never be sent to the server, and the JDBC driver will adjust its idea of autocommit state accordingly.

public boolean setAutoCommit(boolean flag) throws SQLException {
if (!flag) {
return true;
}

return false;
}

Of course, we had to test that nothing bad happened with our application using this trick, and when we determined that it was safe to operate in this manner, we ran query analysis again, and lo-and-behold, one issue solved, other statements to fix:

In my mind, the power of this feature is looking at query performance in aggregation. Seeing the SET … statements popping up in “SHOW PROCESSLIST” (which you‘d be lucky to catch, they‘re very short), or even in the general query log, wouldn‘t have demonstrated the amount of time wasted that we see here in our UI. Using this feature we have iteratively improved performance, watching with each release which queries bubble to the top, and tackling them.

For those of you that would like to see this feature in action on your own systems, if you‘re an existing MySQL Enterprise customer, you can get access to the beta release of MySQL Enterprise Monitor 2.0 at the MySQL Enterprise website.

For those of you that aren‘t yet existing customers, hold tight, soon we‘ll refresh the enterprise trial with this codebase.

In either case, feel free to ask us questions about the new features in our forums at http://forums.mysql.com/list.php?166

For those of you wanting to integrate query analysis with your application at a source-code level like we did with this example, hold tight as well and watch this space. MySQL Enterprise Monitor 2.0 supports REST as a way to populate the repository, and I‘ll be posting an example of how to do this with Connector/J and statement interceptors soon!


DAYTON, Ohio (Reuters) - Republican John McCain made a surprise choice of Alaska Gov. Sarah Palin as his running mate on Friday, adding a political unknown to the presidential ticket who could help him appeal to women voters.






Apple iPod classic 160 GB Black (6th Generation)

Shopping