Skip to main content

Protecting your Phone/Laptop/Tablet screens.



This happened to me a couple of days ago when my colleague at work, avenging my act of trying to wipe the dust he loves so much off his keyboard using glass cleaning detergent, ruined the screen protector of my tablet.

This claimed hours of my time spending on searching for a suitable solution. None seemed to work for me, for example:
  • Original protectors from vendors are up to $10 costly.
  • Plastic tapes are very sticky, hard to clear bubbles from and even the largest size isn't for screens larger than 5 inches, and of course nobody would suggest sticking pieces of it.
  • Some people suggested using Transparency papers and God knows why - they don't stick and you are not looking for something you hold with one hand and use the screen from the other hand, if it's a touch screen.
  • Vinyl papers are not easily available, catch scratches too early and need to be changed every few days.
  • A variety of people suggested using the device without protector. No comments on that.
After having tried the above, I finally concluded that there is nothing better than an original protector but the point here is saving money. So here is what I did and you need would too.

A protector consists of 3 layers, the thick one in the middle is the actual protector and has a sticky and a non-sticky side; there is a protection cover on both of its sides which are removed when applying the protector. You are interested in these covers. You'll find that one of them is sticky; you will join them both edge-to-edge. And now you have another sheet of protector ready for your tablet, phone or any other device you may want to protect from scratches and dust. I have used left over of my laptop's protector for my tablet already and still have enough to make another, and a couple for my phone as well.


My tablet after with newly applied protector and below is the left over for future use

When applying the protector, you need to keep a few things in your mind:

  • Use the sharpest scissors or blades you have when cutting the protector to the size of your device.
  • Use tissue paper or credit card to remove bubbles, fingers won't help.
  • Start applying from a side instead of middle of the screen.
  • Put the device on a flat surface and make sure it doesn't move or shake.
  • Cut the protector to the right size before applying.
  • The perfect place to do the whole procedure is your bathroom; turn on hot shower until steam fills the room. This is to avoid dust and wind.
Follow the tips and you won't end up with something like this

I hope this post helps you. Suggestions and feedback is welcome.

Comments

Popular posts from this blog

A faster, Non-recursive Algorithm to compute all Combinations of a String

Imagine you're me, and you studied Permutations and Combinations in your high school maths and after so many years, you happen to know that to solve a certain problem, you need to apply Combinations. You do your revision and confidently open your favourite IDE to code; after typing some usual lines, you pause and think, then you do the next best thing - search on Internet. You find out a nice recursive solution, which does the job well. Like the following: import java.util.ArrayList; import java.util.Date; public class Combination {    public ArrayList<ArrayList<String>> compute (ArrayList<String> restOfVals) {       if (restOfVals.size () < 2) {          ArrayList<ArrayList<String>> c = new ArrayList<ArrayList<String>> ();          c.add (restOfVals);          return c;       }       else {          ArrayList<ArrayList<String>> newList = new ArrayList<ArrayList<String>> ();          for (String

How to detach from Facebook... properly

Yesterday, I deactivated my Facebook account after using it for 10 years. Of course there had to be a very solid reason; there was, indeed... their privacy policy . If you go through this page, you might consider pulling off as well. Anyways, that's not what this blog post is about. What I learned from yesterday is that the so-called "deactivate" option on Facebook is nothing more than logging out. You can log in again without any additional step and resume from where you last left. Since I really wanted to remove myself from Facebook as much as I can, I investigated ways to actually delete a Facebook account. There's a plethora of blogs on the internet, which will tell you how you can simply remove Facebook account. But almost all of them will either tell you to use "deactivate" and "request delete" options. The problem with that is that Facebook still has a last reusable copy of your data. If you really want to be as safe from its s

A step-by-step guide to query data on Hadoop using Hive

Hadoop empowers us to solve problems that require intense processing and storage on commodity hardware harnessing the power of distributed computing, while ensuring reliability. When it comes to applicability beyond experimental purposes, the industry welcomes Hadoop with warm heart, as it can query their databases in realistic time regardless of the volume of data. In this post, we will try to run some experiments to see how this can be done. Before you start, make sure you have set up a Hadoop cluster . We will use Hive , a data warehouse to query large data sets and a adequate-sized sample data set, along with an imaginary database of a travelling agency on MySQL; the DB  consisting of details about their clients, including Flight bookings, details of bookings and hotel reservations. Their data model is as below: The number of records in the database tables are as: - booking: 2.1M - booking_detail: 2.1M - booking_hotel: 1.48M - city: 2.2K We will write a query that