Skip to main content

Transport Layer Protocols

There are two fundamental protocols in the transport layer  1. TCP Transmission Control Protocol-- connection-oriented protocol 2. UDP User Datagram Protocol -- connectionless protocol Connection-oriented communication : establishes a logical (virtual) connection prior to sending data. Connectionless communication : sends data right away without establishing a logical connection Qn why do we have transport layer protocal?  IP provides a weak, but efficient service model (best-effort ) How should hosts send into the network?      i.)Flow Control      ii.) Too fast is bad; too slow is not efficient IP packets are addressed to a host           How to decide which application gets which packets?         NOTE TRASPORT LAYER IS RESPONSIBLE FOR PROCESS TO PROCESS DELIVERY PORTS port is a communication endpoints  Since there are many applications running on a co...

How to Open an iPhone

1.Turn off the iPhone. Press and hold the iPhone's Power button, then swipe the slide to power off switch at the top of the screen right. This will turn off your iPhone, thereby minimizing the chance of an electric shock.
2.

Remove your iPhone's SIM card. There is a small hole on the right side of your iPhone, a bit below the Power button; insert a thin object, such as a bent paperclip or a pin, into this hole to eject the SIM tray. Once the SIM tray pops out, simply remove the SIM card and push the tray back in.
  • Make sure you store the SIM card in a dry, clean place. If you have a small plastic bag or container, it's best to store the SIM card there.

3.Prepare a work surface. You'll want a clean, well-lit, level surface on which to remove your iPhone's display. It will also help to have a soft item, such as a clean microfiber towel, on which you can rest your iPhone screen side-down.
  • Consider giving the surface a good wipe-down with a damp rag and letting it dry before you begin working on your iPhone. This will get rid of dust and other tiny bits of foreign matter.

4

Gather your tools. You will need the following tools in order to open up an iPhone 7 or iPhone 6S:
  • P2 Pentalobe screwdriver - This screwdriver is used for most iPhone repairs and teardowns.
  • Phillips #000 screwdriver (iPhone 6 only) - Make sure this one has a + shaped head and not a flathead.
  • Tripoint Y000 screwdriver (iPhone 7 only) - This is used for some of the iPhone 7's unique screws.
  • Spudger - This thin, plastic lever is used to pry the display and connectors up. You can also use a similar item, such as a guitar pick.
  • Heat source - Tech outlets provide different versions of the same general product, which is a gel- or sand-filled bag that you heat up in the microwave and then place on the iPhone to loosen the display adhesive.
  • Suction cup - You'll need this in order to pull the iPhone's screen off.
  • Plastic bags - These are for any screws or other components you remove. You can also use tupperware containers or bowls if need be.

Comments

Popular posts from this blog

Simple Android RecyclerView example

  Start with an empty activity. You will perform the following tasks to add the RecyclerView. All you need to do is copy and paste the code in each section. Later you can customize it to fit your needs. Add dependencies to gradle Add the xml layout files for the activity and for the RecyclerView row Make the RecyclerView adapter Initialize the RecyclerView in your activity Update Gradle dependencies Make sure the following dependencies are in your app  gradle.build  file: implementation 'com.android.support:appcompat-v7:28.0.0' implementation 'com.android.support:recyclerview-v7:28.0.0' Create activity layout Add the  RecyclerView  to your xml layout. activity_main.xml <?xml version="1.0" encoding="utf-8"?> < RelativeLayout xmlns:android = "http://schemas.android.com/apk/res/android" android:layout_width = "match_parent" android:layout_height = "match_parent" > < androi...