Bug Attacks MacBook Pro Screen

1 Star2 Stars3 Stars4 Stars5 Stars (6 votes, average: 5.00 out of 5)
Loading ... Loading ...

This ain’t a computer bug but a real one. The video shows a mantis attacking a mouse cursor on the Macbook Pro’s screen. Source from Tom’s Hardware.

  • The praying mantis is real, but it is hungry enough to try to catch and eat the cursor. He had been in the house for four days – prowling for insects around the ceilings.
  • The mantis was patient enough that we were able to set up lighting – as long as we kept moving the mouse.
  • (Notice how he keeps one foot on the top of the screen. Earlier he had tried to come down further, but skidded on the surface, and from then was more cautious).
  • No insects, cursors or mice were harmed in the making of this movie. The mantis was returned to the wild.

Found this post useful? Buy me a cup of coffee or help support the sponsors on the right.

TV Screen’s Ultimate Companion

1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...

tvBuying the latest TV screen does not mean it will display great quality videos for a long time. Poor setup and calibration can degrade the quality of your TV’s display and possibly threaten its life span. Worse, your screen can get stuck pixels, screen burns and others. What you need is an essential tool that can do the opposite so your TV can get the best possible picture that it is capable of.

PixelProtector’s package includes 3 fantastic screen savers, plasma setup tools and lcd setup tools as well as screen burn removal and stuck pixel repair kits. It is the same cost as that of a DVD but the results will enable to you save future repair and maintenance costs. Just plug it in your DVD player and see the results in your TV screen.

Your screen gets sharp quality in return and pixels get recalibrated uniformly. TV manufacturers include many well known and reputable brands that are compatible with this product. Save costs, get clear results. Turn your DVD player into a high-tech, setup and maintenance tool by using PixelProtector!

Found this post useful? Buy me a cup of coffee or help support the sponsors on the right.

Detect Which Screen Monitor Your Coordinates Belong To Using Java

1 Star2 Stars3 Stars4 Stars5 Stars (2 votes, average: 5.00 out of 5)
Loading ... Loading ...

Getting a screen’s size is simple using Toolkit class’ getScreenSize(). But what if you are working using more than 1 screen monitor, say a dual monitor? The ToolKit class won’t apply in this case. There are a few set of classes in Java that can do the trick namely GraphicsEnvironment and GraphicsDevice.

Let us say you have a coordinate and you want to know which screen monitor is belongs to (monitor 1 or monitor 2). This method will do just that.

1
2
3
4
5
public static int getDisplayLocation(int x, int y) {
     GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
     GraphicsDevices[] gDevs = ge.getScreenDevices();
     Point p = new Point(x, y);
     for (int i=0; i

Found this post useful? Buy me a cup of coffee or help support the sponsors on the right.

Related Posts with Thumbnails