SoCal General Chat

Collapse
This is a sticky topic.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Anguz
    E30 Fanatic
    • Jun 2010
    • 1394

    #26521
    yea shes my daily gurl

    Comment

    • MR 325
      Moderator
      • Oct 2003
      • 37825

      #26522
      If your car is your dd, don't turbo it.
      BimmerHeads
      Classic BMW Specialists
      Santa Clarita, CA

      www.BimmerHeads.com

      Comment

      • Anguz
        E30 Fanatic
        • Jun 2010
        • 1394

        #26523
        I have that in mind as well Matt. i have 95% of the turbo stuff at home. Something is telling me to sell the kit and build my 2.8 m20

        Comment

        • blackhawkimpact
          R3VLimited
          • Apr 2010
          • 2415

          #26524
          What's wrong with having a turbo car as DD?

          Comment

          • azael325i
            E30 Fanatic
            • Dec 2009
            • 1258

            #26525
            ^ Yeah, Nigel and me had our cars turbo and they were DD.


            http://www.r3vlimited.com/board/show...46#post3229446

            Comment

            • Anguz
              E30 Fanatic
              • Jun 2010
              • 1394

              #26526
              well you guys vote.

              tarbo @ 6psi?

              built 2.8 stroka?

              Comment

              • thebutcher37
                R3VLimited
                • Aug 2008
                • 2877

                #26527
                Sup


                jou ma se poes in 'n fishpaste jar.
                ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~

                Transaction Feedback

                Comment

                • jaywood
                  R3V Elite
                  • Jul 2010
                  • 4528

                  #26528
                  Well, I have a DD m20 turbo. If I were to do it again I would probably do a swap.

                  Comment

                  • einstein57
                    R3V OG
                    • Jun 2007
                    • 10780

                    #26529
                    Originally posted by rlddlr53
                    Im trying to find a nice red late model 325is. Pref 90+ for airbag

                    Stock!
                    Lol

                    Originally posted by Anguz
                    well i dont wana go thru the trouble of changing my headgasket. i read that 6psi is safe.

                    am i right or wrong?
                    If you do it right and have a good tune 10psi is fine for a daily. Anything more then that will require a new clutch soon. I put 15k trouble free and hard miles on my setup at 14k. I'm going to up the boost to 20 soon and drive it till I finish my 2.8. Then add more boost. :evil:
                    Your signature picture has been removed since it contained the Photobucket "upgrade your account" image.

                    www.gecoils.com
                    My euro 316 project Transaction Feedback

                    Comment

                    • Balleristic31
                      R3V Elite
                      • Aug 2009
                      • 4198

                      #26530

                      -NICK

                      Comment

                      • Ayman
                        R3V Elite
                        • Apr 2011
                        • 4190

                        #26531
                        You cut your hair. Mcbiebz is no longer :(


                        Originally posted by yert315
                        Your mother is plug n play

                        Comment

                        • Balleristic31
                          R3V Elite
                          • Aug 2009
                          • 4198

                          #26532
                          Its not too short lol.

                          -NICK

                          Comment

                          • ethrtyiS
                            R3V OG
                            • May 2010
                            • 8147

                            #26533
                            //Roche, Travis
                            //888375331
                            //3.24.12
                            //Lab 3
                            //P0247

                            #include <iostream>
                            #include <iomanip>
                            #include <string>

                            using namespace std;

                            int main()

                            {
                            char initial1, initial2, initial3;
                            int side1, side2, side3;

                            cout << "Enter your initials: ";
                            cin >> initial1 >> initial2 >> initial3;

                            //initials part
                            //if-else statement

                            if ((initial1 >= 'A' && initial1 <= 'Z') || (initial1 >= 'a' && initial1 <= 'z')) //if #1
                            if ((initial2 >= 'A' && initial2 <= 'Z') || (initial2 >= 'a' && initial2 <= 'z')) // if #2
                            if ((initial3 >= 'A' && initial3 <= 'Z') || (initial3 >= 'a' && initial3 <= 'z')); //if #3
                            else
                            cout << "Invalid character for initial 1. Program is now terminating..."; //else #3
                            else
                            cout << "Invalid character for initial 2. Program is now terminating..."; //else #2
                            else
                            cout << "Invalid character for initial 3. Program is now terminating..."; //else #1

                            //triangle part
                            //if-else statement

                            cout << "Enter three sides of a triangle: " << endl;
                            cin >> side1 >> side2 >> side3;

                            /*Only do work if all three sides are positive non-zero values*/
                            if((side1 >= 0) && (side2 >= 0) && (side3 >= 0))
                            {
                            /*Next we check if the triangle inequality property is respected*/
                            if( (side1+side2 > side3) && (side2+side3 > side1) && (side1+side3 > side2))
                            {
                            /*Next we check for special triangles - Isosceles or Equilaterals*/
                            if((side1 == side2) || (side2 == side3) || (side3 == side1))
                            {
                            /*Check for special case of Isosceles ALL lenths are equal*/
                            if((side1 == side2) && (side2 == side3) && (side3 == side1))
                            {
                            cout << "\nThis is an Equilateral Triangle. " << endl;
                            }
                            /*Otherwise it's just a regular Isosceles*/
                            else
                            {
                            cout << "\nThis is an Isosceles Triangle. " << endl;
                            /*Next we check for right angles in Isoceles*/
                            /* applying pythagorean here as (a*a + b*b = c*c) */
                            if( (side1*side1 + side2*side2 == side3*side3) || (side1*side1 + side3*side3 == side2*side2) || (side3*side3 + side2*side2 == side1*side1))
                            {
                            cout << "\nThis Isosceles Triangle has a right angle. " << endl;
                            }
                            }
                            }
                            /*If neither of the 3 sides are equal pairs then this is a regular triangle*/
                            else
                            {
                            cout << "This is a Scalene Triangle. " << endl;
                            /*Next we check for right angles in Scalenes*/
                            /* applying pythagorean here as (a*a + b*b = c*c) */
                            if( (side1*side1 + side2*side2 == side3*side3) || (side1*side1 + side3*side3 == side2*side2) || (side3*side3 + side2*side2 == side1*side1))
                            {
                            cout << "\nThis Scalenes Triangle has a right angle. " << endl;
                            }
                            }
                            }
                            /*Otherwise we print an inequality error message */
                            else
                            {
                            cout << "\nA triangle's three sides must respect the triangle inequality. " << endl;
                            }
                            }
                            /*Otherwise print a negatiev-sides error message*/
                            else
                            {
                            cout << "\nA triangle needs to have 3 sides of non-negative length. " << endl;
                            }

                            system("pause");
                            return 0;

                            }
                            can someone tell me why the hell if i enter in incorrect data it doesn't terminate the program automatically. i'm pulling my hair out.

                            '89 BMW 325is | '02 Mitsubishi Montero Limited | '2005 GMC Sierra 2500 Duramax | 2007 BMW M5
                            my feedback thread

                            Comment

                            • e30trooper
                              R3V OG
                              • Mar 2009
                              • 11576

                              #26534
                              Originally posted by Balleristic31
                              mclovin :rofl:

                              Comment

                              • womensecks
                                Noobie
                                • Mar 2012
                                • 33

                                #26535
                                Is there anywhere relatively close to OC that carries IS lips?
                                1988 E30 M3, Alpineweiss ///


                                iloveyou

                                Comment

                                Working...