Peerless ST650P Tilting Wall Mount for 32' to 50' Flat Panel Displays (Black)

Electronics : Peerless ST650P Tilting Wall Mount for 32' to 50' Flat Panel Displays (Black)

Peerless ST650P Tilting Wall Mount for 32' to 50' Flat Panel Displays (Black)

from: Peerless



 : Peerless ST650P Tilting Wall Mount for 32' to 50' Flat Panel Displays (Black)
See Larger Image

List Price: $142.17
Our Price: $74.30
You Save: -$67.87 (48%)
Prices subject to change.


Availability: Usually ships in 24 hours




Binding: Accessory
Brand: Peerless
Color: Black
EAN: 0735029235965
Label: Peerless
Legal Disclaimer: Warranty does not cover misuse of product.
Manufacturer: Peerless
Material Type: Metal
Model: ST650P
Publisher: Peerless
Studio: Peerless
Variation Description: Black
Warranty: 5 years warranty



Editorial Review:

Product DescriptionThe SmartMount for 32' to 50' flat panel screens provides a versatile and secure solution for professional environments such as boardrooms, hotels and stadiums. This mount offers smooth, continuous one touch tilt, allowing for easy adjustment to achieve the perfect viewing angle without tools. The mount includes simple to align universal brackets and a unique wall plate that can be mounted to two wood studs up to 24' apart, or concrete. For easy installation the mount is preassembled and includes a Sorted-For-You baffle pack with all screen hardware and security fasteners.




Features:
  • One-touch tilt allows tilt adjustment of +15°/-5° without the use of tools
  • Optional horizontal adjustment of up to 12" (depending on screen model)
  • Weight capacity: 150 lbs
  • Desired tilt angle can be locked in place if needed
  • Comes with additional brackets to accommodate screens with a built-in curve or component box on the back











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 - Works Great
Works great for me in our new home. The device makes it easy to attach to studs. Works as advertised. Took about two hours to get everything assembled and on the wall.

One note: I purchased a stereo receiver that provides video switching. All I had to run to the TV was power and an HDMI cable. Highly recommend this approach!





Rating: 3 out of 5 stars - Peerless Mount
Regarding build quality I give this product 5 stars.

Install is also quite easy if you know exactly what you need to do. However, we had a problem with this the first time.

I can fix car engines so I'm not dumb with tools, but the instructions for this Peerless mount is terrible. Everything was fine right up to the point where we tried tilting the brackets. The instructions mentioned loosening a couple screws (in each bracket) to allow tilt. We did this but the brackets still wouldn't budge! After wasting over an hour we realized that there are additional screws that need to be loosened (NOT mentioned in the instructions). To add insult to injury, these screws require an allen screwdriver, which is not included in the package.

To continue kicking us while we're down, the instruction states that the allen screwdriver is included in certain Peerless mounts.. but not for my model #. This strikes as odd.

It looks like Peerless placed the wrong brackets (intended for a different model #) in my package because it requires the mysterious screwdriver.

I would buy this mount again, now that I know exactly what tools are needed and how to adjust the mount.



Rating: 4 out of 5 stars - Nice! Install fairly easy....looks great.
Installed above fireplace for a 37 inch Phillips LCD TV. Pretty straight forward. No problems installing. They give a generous supply of screws for just about any TV. I would recommend



Rating: 5 out of 5 stars - Must Have Flat Screen Wall Mount
What a great product. I have used peerless mounts before for a commercial installation of the old style tube tv's. I was impressed then. Which was about ten years ago. When I saw this mount recommended from Amazon, then saw the manufacturers name, I decided to try it. I will admit the price also helped. But I was willing to pay anything for a quality mount to secure my 1000.00 TV. When I recieved it I was suprised. Not only is it well made, it is a simple design and includes every type of hardware necessary to install it. My installation was in a basement with the Owens Corning wall system. this is a soft wall that is made of cloth and backed with 2-1/2" of insulation. Not the most ideal install. But installed easilly, and the tilt function is a great feature. I mounted my TV high on the wall, so the tilt function created a great viewing angle. Top quality product. My situation with the type of walls I have was probably the worst case. Installations on studded walls, metal or wood, will find this as simple as drilling four holes and securing. This coming from a person who never rights reviews. Definitely a must have!!!!



Rating: 5 out of 5 stars - awesome, used for 50' plasma
The instruction manual says "will not work with most 50' and above plasmas". This simply isn't true. Call their customer service (which is excellent), read the them the TV product number, and you'll see.

great product



read more customer reviews on Peerless ST650P Tilting Wall Mount for 32' to 50' Flat Panel Displays (Black)


 





Pastry Chef School - Pampered Chef Catalog |
  widescreen tc
Notebook Computers 





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.






Peerless ST650P Tilting Wall Mount for 32' to 50' Flat Panel Displays (Black)

Shopping