Is it bent!? Am I too blind to see it?!

Hi, I recently got a 6. Great device, great upgrade from a 4S with iOS8. Apps load instantly, it's big, it's a nice phone... except for the bending issue.
Over the past month I've read a lot about the bend-gate, seen lots of reports. Some of them justified as to why the phone got bent, other people claiming they had their phone in a case, no pocket and it bent. Other people say it needs a reasonable amount of force to bend, others say it's very prone to bending and it can bend like that.
I'm a really OCD person and so I check my phone to see if it's bent almost every day. I know I have a problem. I have never put the phone inside a pocket, never stressed it. The only stress this thing has been under is switching cases and I do that with the most extreme care. For the life of me I cannot see a bend. I've looked at the phone under different light angles, I lay it face down on a surface, it's just dead flat. Pressing it doesn't make it move or wobble. I wasn't even going to stress this, however when I press the edge of the upper right corner, the bottom left corner is GENTLY raised up. Doesn't wobble, but the corner gets raised a bit. I think it's probably the curved screen but I don't know. I tried with my 4S which is obvs supposed to be flat but it does it too!! Weird thing is if I press the bottom left corner the upper right corner doesn't get raised. It's just this one. Other corners do not produce the problem either. Do you think I should be worried about this? Could it actually be a bend I just don't see? Like someone told me the phone is slightly bent and I almost lost my mind.
Ι googled this and found other people with the same thing, 5/5S users and 6/6 Plus too. Upper corner pressed, bottom gets slightly raised up, no visible bending.
I know it's one of these threads that have been created a million times. I'm sorry for taking a forum entry for this, but I would really like to see other people's inputs, if it does it and if it indeed is because of the curved screen. I do think the bending incident was blown out of proportion and I do think the phone won't bend just by sneezing, but when I saw my corner get kinda raised up I started worrying it might be bent and I'm too blind to see it. I'm too OCD for my own good when it comes to this.
Attaching some photos. Please take a look at them and tell me if you see a bend cos I honestly cannot.
http://bit.ly/1wwGCuv
http://bit.ly/1uFut2f
http://bit.ly/1A9BFIr

If you believe you have a hardware problem, make an appointment at the Genius Bar at your local Apple Store. If you can't even tell if there's something you should be worried about, you probably shouldn't be.

Similar Messages

  • Syntax error but I'm too blind to see...

    Using the below SQL from my usrStartFrm.ASP page to ORA 8i I have set a page variable = a session variable
    +++++++++++++++++++++++
    dim usrLoginID
    SUB usrStartFrm_onenter()
         usrLoginID = Session("LoginID")
    End SUB
    +++++++++++++++++++++++++
    But I cannot return records using the following syntax.
    SELECT DISTINCT
    L.LOGINID,
    B.BUSINESSSEGMENTNAME
    FROM SODA.ASSIGNMENTS_TB A,
    SODA.LOGINS_TB L,
    SODA.BUSSEGMENT_TB B
    WHERE A.FK_LOGIN_NO = L.LOGIN_NO
    AND
    A.FK_BUSSEGID = B.BUSSEGID AND
    (L.LOGINID = '" & usrLoginID &" ')
    ORDER BY B.BUSINESSSEGMENTNAME
    NOR DOES THIS
    ++++++++++++++++++++++++++++++++++++++++++++++++
    (L.LOGINID = '" & Session("LoginID") &" ')
    +++++++++++++++++++++++++++++++++++++++++++++++++
    BUT if I change the sytax to a hard code
    (L.LOGINID = 'ajgrasso')
    The query works.
    I know the page creates the variable because I print it out to the p;age as it loads..
    SO I figure it must be the bugaboo string single double qutes issue.
    Any Ideas.
    Thanks beforehand
    AJ

    It does help somewhat to see the complete code. I can now see and understand how you are building your select statement including your variable and storing the select statement to another variable to be executed. Unfortunately, I don't know enough about ASP and javascript and so forth to be certain of the correct code. However, I can see a lot of similarities between what you are doing and how we build a select statement in PL/SQL and store it to a variable for dynamic execution. There are various ways of including variables within that select statement. About the best I can do is offer various legitimate syntaxes in PL/SQL and hope that you can see the similarities and will be able to adapt one or more of them. In each of the examples below, which demonstrate slightly different methods, I have used current_user for the Oracle user, but you can substitute os_user for current_user in any of them if you want the operating system user. However, note that it will include the domain, like your_domain\ajgrasso so you may need to do some parsing for proper comparison. If you don't get any errors, but it also doesn't return any rows, it might be due to something like that. Notice that, when building a select statement and storing it to a variable, all single quotes within the string must be doubled. That is, replace each single quote with two single quotes (not double quotes) within the string. Also, in Oracle, || is the concatenation symbol, not &. However, because you are using ASP and javascript, if they require double quotes and &, then you may have to experiment with such substitutions. Please see what you can derive from the following and let us know. Also, if it doesn't work for you, please be specific as to whether it returns an error message or if it just doesn't return any rows. A cut and paste of the run, as I have done below, would help.
    SQL> -- test tables and data:
    SQL> SELECT * FROM scott.assignments_tb
      2  /
    FK_LOGIN_NO FK_BUSSEGID                                                        
              1           1                                                        
    SQL> SELECT * FROM scott.logins_tb
      2  /
      LOGIN_NO LOGINID                                                             
             1 SCOTT                                                               
    SQL> SELECT * FROM scott.bussegment_tb
      2  /
      BUSSEGID BUSINESSSEGMENTNAME                                                 
             1 SCOTT bussegname                                                    
    SQL>
    SQL>
    SQL> -- code samples using scott schema
    SQL> -- instead of soda schema:
    SQL>
    SQL>
    SQL> CREATE OR REPLACE PACKAGE types_pkg
      2  AS
      3    TYPE weak_ref_cursor_type IS REF CURSOR;
      4  END types_pkg;
      5  /
    Package created.
    SQL>
    SQL>
    SQL> CREATE OR REPLACE PROCEDURE test_procedure
      2    (p_weak_ref_cursor OUT types_pkg.weak_ref_cursor_type)
      3  AS
      4    CommandText VARCHAR2 (4000);
      5  BEGIN
      6    CommandText :=
      7    'SELECT      DISTINCT
      8             l.loginid,
      9             b.businesssegmentname
    10       FROM      scott.assignments_tb a,
    11             scott.logins_tb      l,
    12             scott.bussegment_tb  b
    13       WHERE      a.fk_login_no = l.login_no
    14       AND      a.fk_bussegid = b.bussegid
    15       AND      (l.loginid = SYS_CONTEXT (''USERENV'', ''CURRENT_USER''))
    16       ORDER BY b.businesssegmentname';
    17 
    18    OPEN p_weak_ref_cursor FOR CommandText;
    19  END test_procedure;
    20  /
    Procedure created.
    SQL> SHOW ERRORS
    No errors.
    SQL> VARIABLE g_ref REFCURSOR
    SQL> EXECUTE test_procedure (:g_ref)
    PL/SQL procedure successfully completed.
    SQL> PRINT g_ref
    LOGINID                        BUSINESSSEGMENTNAME                             
    SCOTT                          SCOTT bussegname                                
    SQL>
    SQL>
    SQL> CREATE OR REPLACE PROCEDURE test_procedure
      2    (p_weak_ref_cursor OUT types_pkg.weak_ref_cursor_type)
      3  AS
      4    CommandText VARCHAR2 (4000);
      5  BEGIN
      6    CommandText :=
      7    'SELECT      DISTINCT
      8             l.loginid,
      9             b.businesssegmentname
    10       FROM      scott.assignments_tb a,
    11             scott.logins_tb      l,
    12             scott.bussegment_tb  b
    13       WHERE      a.fk_login_no = l.login_no
    14       AND      a.fk_bussegid = b.bussegid
    15       AND      (l.loginid = ' || 'SYS_CONTEXT (''USERENV'', ''CURRENT_USER'')' || ')
    16       ORDER BY b.businesssegmentname';
    17 
    18    OPEN p_weak_ref_cursor FOR CommandText;
    19  END test_procedure;
    20  /
    Procedure created.
    SQL> SHOW ERRORS
    No errors.
    SQL> VARIABLE g_ref REFCURSOR
    SQL> EXECUTE test_procedure (:g_ref)
    PL/SQL procedure successfully completed.
    SQL> PRINT g_ref
    LOGINID                        BUSINESSSEGMENTNAME                             
    SCOTT                          SCOTT bussegname                                
    SQL>
    SQL>
    SQL> CREATE OR REPLACE PROCEDURE test_procedure
      2    (p_weak_ref_cursor OUT types_pkg.weak_ref_cursor_type)
      3  AS
      4    usrLoginID  VARCHAR2 (30);
      5    CommandText VARCHAR2 (4000);
      6  BEGIN
      7    usrLoginID := SYS_CONTEXT ('USERENV', 'CURRENT_USER');
      8 
      9    CommandText :=
    10    'SELECT      DISTINCT
    11             l.loginid,
    12             b.businesssegmentname
    13       FROM      scott.assignments_tb a,
    14             scott.logins_tb      l,
    15             scott.bussegment_tb  b
    16       WHERE      a.fk_login_no = l.login_no
    17       AND      a.fk_bussegid = b.bussegid
    18       AND      (l.loginid = ''' || usrLoginID || ''')
    19       ORDER BY b.businesssegmentname';
    20 
    21    OPEN p_weak_ref_cursor FOR CommandText;
    22  END test_procedure;
    23  /
    Procedure created.
    SQL> SHOW ERRORS
    No errors.
    SQL> VARIABLE g_ref REFCURSOR
    SQL> EXECUTE test_procedure (:g_ref)
    PL/SQL procedure successfully completed.
    SQL> PRINT g_ref
    LOGINID                        BUSINESSSEGMENTNAME                             
    SCOTT                          SCOTT bussegname                                
    SQL>
    SQL>
    SQL> CREATE OR REPLACE PROCEDURE test_procedure
      2    (p_weak_ref_cursor OUT types_pkg.weak_ref_cursor_type)
      3  AS
      4    usrLoginID  VARCHAR2 (30);
      5    CommandText VARCHAR2 (4000);
      6  BEGIN
      7    usrLoginID := SYS_CONTEXT ('USERENV', 'CURRENT_USER');
      8 
      9    CommandText :=
    10    'SELECT      DISTINCT
    11             l.loginid,
    12             b.businesssegmentname
    13       FROM      scott.assignments_tb a,
    14             scott.logins_tb      l,
    15             scott.bussegment_tb  b
    16       WHERE      a.fk_login_no = l.login_no
    17       AND      a.fk_bussegid = b.bussegid
    18       AND      (l.loginid = :usrLoginID)
    19       ORDER BY b.businesssegmentname';
    20 
    21    OPEN p_weak_ref_cursor FOR CommandText USING usrLoginID;
    22  END test_procedure;
    23  /
    Procedure created.
    SQL> SHOW ERRORS
    No errors.
    SQL> VARIABLE g_ref REFCURSOR
    SQL> EXECUTE test_procedure (:g_ref)
    PL/SQL procedure successfully completed.
    SQL> PRINT g_ref
    LOGINID                        BUSINESSSEGMENTNAME                             
    SCOTT                          SCOTT bussegname                                
    SQL>
    SQL>
    SQL> CREATE OR REPLACE PROCEDURE test_procedure
      2    (p_weak_ref_cursor OUT types_pkg.weak_ref_cursor_type,
      3       usrLoginID       IN  VARCHAR2)
      4  AS
      5    CommandText VARCHAR2 (4000);
      6  BEGIN
      7    CommandText :=
      8    'SELECT      DISTINCT
      9             l.loginid,
    10             b.businesssegmentname
    11       FROM      scott.assignments_tb a,
    12             scott.logins_tb      l,
    13             scott.bussegment_tb  b
    14       WHERE      a.fk_login_no = l.login_no
    15       AND      a.fk_bussegid = b.bussegid
    16       AND      (l.loginid = :usrLoginID)
    17       ORDER BY b.businesssegmentname';
    18 
    19    OPEN p_weak_ref_cursor FOR CommandText USING usrLoginID;
    20  END test_procedure;
    21  /
    Procedure created.
    SQL> SHOW ERRORS
    No errors.
    SQL> VARIABLE g_ref REFCURSOR
    SQL> VARIABLE usrLoginID VARCHAR2(30)
    SQL> EXECUTE :usrLoginID := SYS_CONTEXT ('USERENV', 'CURRENT_USER')
    PL/SQL procedure successfully completed.
    SQL> EXECUTE test_procedure (:g_ref, :usrLoginID)
    PL/SQL procedure successfully completed.
    SQL> PRINT g_ref
    LOGINID                        BUSINESSSEGMENTNAME                             
    SCOTT                          SCOTT bussegname                                

  • Spotlight is way too blind to find my file!

    Hi,
    I wonder why Spotlight just couldn't find a file. It exists, it's right there waiting to be found but somehow Spotlight is totally blind to see it. Screenshot is here:
    http://www.putfile.com/pic.php?img=7039969
    I've forced Spotlight to reindex using the "sudo mdutil -E /" command in terminal but to no result.
    Any ideas why?

    Try this:
    Leopard Spotlight Tips
    By Christopher Breen ([email protected])
    Mac 911 Hint of the Week
    Leopard shipped on Friday. You might have read something about that over at Macworld.com. Anyhow, as part of our coverage, I had a chance to get a debriefing from Apple on all that is Mac OS X 10.5, and I was able to ask one of the questions that had been perplexing me during my short time with the Leopard GM.
    Apple tells us that you can use Spotlight to search into the guts of the System and Library folders, but, for the life of me, I can't make it work. What's the secret?
    The answer is that you have to tell the Mac to do it. To do so, follow these steps:
    1. Produce a Searching window by typing Command-F while in the Finder.
    2. Choose Other from the Kind pop-up menu.
    3. In the sheet that appears, type System in the Search field.
    4. Select the single System Files entry that appears.
    5. Should you wish to conduct these deep searches in the future and want to make it easier to do (meaning you won't have to choose Other and look for the System Files entry), enable the In Menu option. System Files will now appear in the pop-up.
    6. Click OK.
    7. When you next wish to search every part of your Mac, select System Files from the Kind pop-up menu and in the pop-up menu next to it, choose Include. Your results will include not just the kind of Spotlight results you saw with Tiger but now also the files the Mac OS tries to keep from prying eyes.
    For tips on anything -- whether Leopard-themed or not -- visit the Mac 911 blog for weekly doses of helpful advice.

  • When I open a jpeg image at 100% is too large to see. How can I change the percentage to be able to view document?

    When I open a jpeg image at 100% is too large to see. How can I change the percentage to be able to view document?
    == This happened ==
    Every time Firefox opened

    You have to change the settings in whatever program you use to open the jpg. Firefox has no control over that. What program do you use to open jpg?

  • Screen too dark to see - it lights up when I plug it in a charger

    my screen is too dark to see - can see SOMETHING in background - but too dim.  I can plug into a charger and it gets normal brightness.  Sometimes it starts flashing crazily!  I am frustrated.  This phone is my third or fourth phone (lost track) and all have been manufacturing problems.  HELP!

    The screen needs to be replaced

  • Video playback for Amazon and Netflix are too dark to see. Running OSX 10.10.2

    When playing these streaming videos, the pictures are too dark to see much of anything. YouTube and Facebook videos are nice and bright. I tried "never activate" the plugins, but that made no difference.

    Hi rdocter,
    First please check to make sure your drivers are up to date: [[Upgrade your graphics drivers to use hardware acceleration and WebGL]]
    In order to better assist you with your issue please provide us with a screenshot. If you need help to create a screenshot, please see [[How do I create a screenshot of my problem?]]
    Once you've done this, attach the saved screenshot file to your forum post by clicking the '''Browse...''' button below the ''Post your reply'' box. This will help us to visualize the problem.
    Also please provide a link where this might be happening.
    Thank you!

  • I have a Mac Book Pro 17 which starts but the screen is too dark to see. I have an external monitor connected but no signal. I need help. Thanks.

    I have Mac Book Pro 17 which starts but the display is too dark to see. I have separate display connected, but no signal to it. I need help. Thanks.

    The tv is a extended display on your mac like a second moitor you want to mirror them (same thing on both)
    This should help you

  • I just bought a new Ipod classic and turned the brightness up to 100% but it's still almost too dark to see! Is this defunct or what?

    I just bought a new Ipod classic and turned the brightness up to 100% but it's still almost too dark to see! Is this defunct or what?

    What is the battery level?
    Charge the battery for at least 4 hours, before 1st use.
    Have a nice day!

  • How can I change the grey colour of all window headings they're too hard to see?

    how can I change the grey colour of all window headings they're too hard to see?

    Hi Chris,
    The only way that I know of to change the colour of the window headings, these,
    is in the System Preferences > Universal Access > Seeing > Display and change the White on Black settings, using grey scale in there to helps, but it also opens a hole lot of other issues as it reverses all colours throughout the system. You can switch it back and forth as shown on this setup screen.
    Other than that, maybe changing the screen resolution so that all items are larger or zooming the screen when you require it by holding the Control button and scrolling the mouse or two finger scroll on the trackpad.
    There may be, of course, a third party app that changes the colours by searching google.
    Hope this helps

  • How do you fix scaling issue with any video playback control bar (too small to see) on Firefox 28?

    Using a 3200x1800 dpi resolution lap top (Samsung Ultrabook 9 series), when I want to play videos on a webpage, the playback control bar (runs across the bottom of a given video for settings like play, pause, sound level, etc.) is too small to see. I tried scaling using various methods, Windows 8.1 OS, Firefox ad-ons like No squint with no success. Of course, these tools work to rescale everything else but the playback control bar. This is not a problem on IE as when you rescale, everything including the playback control bar
    rescales. Thanks

    You can set the layout.css.devPixelsPerPx pref on the <b>about:config</b> page to 1.0 or on Windows 8 to 1.25 and if necessary adjust layout.css.devPixelsPerPx starting from 1.0 in 0.1 or 0.05 steps (1.1 or 0.9) to make icons show correctly.
    *http://kb.mozillazine.org/about:config
    See also:
    *https://support.mozilla.org/kb/forum-response-Zoom-feature-on-Firefox-22
    Use an extension to adjust the text size in the user interface and the page zoom in the browser window.
    You can look at this extension to adjust the font size for the user interface.
    *Theme Font & Size Changer: https://addons.mozilla.org/firefox/addon/theme-font-size-changer/
    You can look at the Default FullZoom Level or NoScript extension if web pages need to be adjusted after changing layout.css.devPixelsPerPx.
    *Default FullZoom Level: https://addons.mozilla.org/firefox/addon/default-fullzoom-level/
    *NoSquint: https://addons.mozilla.org/firefox/addon/nosquint/

  • Thumbnails in "OPEN" dialog box too small to see!

    The thumbnails are  too small in the open dialog box so that I can't see the file I want to open.  Yes, you can make them bigger in finder itself...but I am always opening pictures and I just can't see them!
    Almost as frustrating as the column issue.   The name column is very very wide when I try to open a file.. so I can't sort by the other columns without dragging over the bar at the bottom of the screen.  THis is so so frustrating.  I resize but it doesn't stick to the next session.
    Apple invented the finder.  Why is it so inferior to windows explorer?

    The only solution to enlarging the icons in an application open dialog window is to use the Accessibility panel in System Preferences. Under Zoom, enable Use keyboard shortcuts to zoom.
    The first time you have an application open dialog, you press the keys: option + command + =  as many times as you want to zoom in. This will enlarge the open dialog window and its contents. When done, press option + command + 8 to restore normal window size. Subsequently, you can alternatively press option + command + 8 to zoom to the previous setting, or return to normal zoom.
    This is as good as it is going to get. The applications (not just Apple’s) only use a subset of Finder’s settings in the open dialogs, and these do not include icon enlargement settings, which as you realize, are part of the actual Finder’s settings. The application development frameworks, and not Finder, are remiss in not providing icon size adjustments in open dialog windows.
    You can provide feedback to Apple regarding OS X.

  • Ipad icons too big to see full screen after updating to IOS 8?

    I have an IPAD Retina (4th generation) and after I updated to IOS 8, it worked fine for 2 or 3 days. Yesterday my screen went too large to display the full screen (icons are also large). When I open an app, everything is large. I tried changing the font seize but no change. I rebooted my ipad a great number of times, no change. I've searched Google but I haven't seen anyone talking about this problem. Any ideas?
    Thanks

    Should it happen again double tap the screen with three fingers. Then go to settings> general> accessibility> zoom> off.

  • Mafia Wars can not load completely because you are missing a plugin, pop up is too small to see the missing pluging, how do I find out what it is?

    Yesterday, while playing Mafia Wars, I kept getting a bar notification that "The game can not load completely because you are missing a plugin? When I clicked on the box I got an 1/2" popup, which probably contains the information I need but it is too small to find out what it is. You can not maximize it. The is nothing visible to click on. Flash and Java are all up to date, as well as all other plugins. No plugins are disabled. How can I find what I am missing?

    Try a program such as Disk Inventory X or OmniDiskSweeper.
    (50778)

  • Why my screen is too dim to see anything?

    As the title, and it seems that all other parts works well. Plus, helped by a external strong light, i tried to turn off the auto-brightness, and it did not work too.
    Please help me.
    thank you so much!

    Apple prices are here:
    Apple - Support - iPod - Repair pricing
    Third-party places:
    iPhone Repair, Service & Parts: iPod Touch, iPad, MacBook Pro Screens
    DigiExpress.us - The iPad Repair Professionals
    iPod Touch Glass Replacement

  • FB3 IDE 'Content Assist' bg color too light to see.

    Hey all,
    The bg color for selected row on Content Assist (Code
    Hinting) in FB3 IDE is too light for me to distinguish.
    Does anyone know where this setting can be changed? I have
    checked everywhere in the "Preferences" area, can't find it.
    Thanks,
    Huntër

    Try with this
    Windows -> Prefrences -> General -> Editors -> Text Editors -> Annotations -> Right side there is list from which select -> Actionscript occurance.

Maybe you are looking for

  • How can a JMS Listener Notified get when a Topic Server Goes Down?

    I'm in the process of looking into pub/sub model for a centeralized data source where vertical applications subscribe to a topic to get updates on person demographic information.           I was playing with the JMS topic examples and noticed that wh

  • Handling blank in transformation file

    I am trying to use if statement in a transformation file. I have got data set where members in one of column (Column 3-INTCO in this example) are empty so I want to map these missing ones to a specific dimension member. For other (non-missing) ones I

  • Error Propogation after Dynamic Routing

    Hi All, I'm having difficulty propagating SOAP Faults generated as the result of a dynamic routing call to another Proxy Service. In my Service Error Handler, I can Log the $fault variable. I've even attempted to replace the contents of $body with $f

  • How do I move my event photos to iPhoto onto new Macbook pro

    I have my old iPhoto event photos on my iPhone 4 and I want to move them onto iPhoto on my Macbook Pro, which has OS X Mountain Lion.  When I plug in my phone, it prompts saying that I will lose my photos on my phone.  How do I move my old event phot

  • Tiger Server Panther Clients Word v.X problem saving autorecovery

    Dear All, We were running 10.3.9 server and clients untill this weekend when I updated to 10.4.3, now amungst the other problems we had that I fixed is one I cannot fix. Word keeps running into problems saving it's autorecovery information when using