PepsiCo: Day 3

So I’m continuing to work on the ASP.NET project and I learned a few things. Some are technical and some aren’t:

  1. (MS)SQL will return NOTHING with this query:
    SELECT DISTINCT column1, column2, column5
    FROM user1.[table1]
    WHERE column3 = 0
    AND column5 = NULL
    ORDER BY column1
  2. Using a 700 MHz with a 512 MB laptop isn’t too fun to use with Visual Studio .NET 2003
  3. My blood pressure is 151/98 which is kind of high, my cholesterol level is 192 which is desirable, and my glucose is 90 which is normal
  4. I bleed like crazy for these blood tests. The needle is so much better than this new thing that slices your finger
  5. Another intern showed me how to move ASP.NET pages from development to live: copy *.aspx and *.aspx.cs files and change the “codebehind” to “src”…it’s that easy.
  6. Frito Lay HQ has a better cafeteria than PepsiCo at Parkwood.
  7. Our restrooms are designated “Tornado Safe Room.”

2 thoughts on “PepsiCo: Day 3

  1. “Another intern showed me how to move ASP.NET pages from development to live: copy *.aspx and *.aspx.cs files and change the “codebehind” to “src”…it’s that easy.”

    umm… If you’re using compiled pages (as you should be) then you don’t need the cs files to be copied to the production servers. I assume that the src= attribute allows the pages to be compiled during a request, which is not only a lot slower, but it’s risky since it is easily editable. — maybe I misunderstood you though 🙂

Leave a Reply

Your email address will not be published. Required fields are marked *

Solve this: Time limit is exhausted. Please reload CAPTCHA.

This site uses Akismet to reduce spam. Learn how your comment data is processed.