1. Welcome to Tacoma World!

    You are currently viewing as a guest! To get full-access, you need to register for a FREE account.

    As a registered member, you’ll be able to:
    • Participate in all Tacoma discussion topics
    • Communicate privately with other Tacoma owners from around the world
    • Post your own photos in our Members Gallery
    • Access all special features of the site

IT BS thread

Discussion in 'Technology' started by chadderkdawg, Jan 16, 2012.

  1. Jul 7, 2016 at 8:45 AM
    #2241
    bongwhisperer

    bongwhisperer Well-Known Member

    Joined:
    Jun 3, 2012
    Member:
    #80029
    Messages:
    488
    Gender:
    Male
    horn that plays "la cuka racha,"

    Lol....I didn't see that. I'm changing my name to Captain Obvious.
     
  2. Jul 7, 2016 at 8:46 AM
    #2242
    The_Hodge

    The_Hodge Volunteer Moderator

    Joined:
    Apr 27, 2007
    Member:
    #1432
    Messages:
    31,714
    Gender:
    Male
    SC
    Seeing the third gen section forced me to get a Ford...
    had to go off the main site to a different certification site in order to find the test pricing. even the pricing sheet is convoluted.
     
  3. Jul 12, 2016 at 1:26 PM
    #2243
    RynoDyno

    RynoDyno Well-Known Member

    Joined:
    Jun 25, 2016
    Member:
    #190495
    Messages:
    209
    Vehicle:
    2016 DCSB
    //System Libraries
    #include <iostream> //Input/Output Library

    usingnamespace std; //Namespace of the System Libraries
    //User Libraries

    //Global Constants

    //Function Prototypes

    //Execution Begins Here!
    int main(int argc, char** argv) {
    //Declare Variables
    unsignedshort x;
    unsignedchar n1000s,n100s,n10s,n1s;

    //Input Data

    cout<<"Input a four digit number to convert"<<endl;
    cout<<"to star power"<<endl;
    cin>>x;


    //Process the Data
    if(x<0||x>9999)return1;


    //Output the processed Data
    //Thousands Position
    n1000s=(x-x%1000)/1000;
    switch(n1000s){
    case9:cout<<"9 *********\n";break;
    case8:cout<<"8 ********\n";break;
    case7:cout<<"7 *******\n";break;
    case6:cout<<"6 ******\n";break;
    case5:cout<<"5 *****\n";break;
    case4:cout<<"4 ****\n";break;
    case3:cout<<"3 ***\n";break;
    case2:cout<<"2 **\n";break;
    case1:cout<<"1 *\n";break;
    case0:cout<<"0 \n";
    }

    //Hundreds Position
    x-=n1000s*1000;
    n100s=(x-x%100)/100;
    switch(n100s){
    case9:cout<<"9 *********\n";break;
    case8:cout<<"8 ********\n";break;
    case7:cout<<"7 *******\n";break;
    case6:cout<<"6 ******\n";break;
    case5:cout<<"5 *****\n";break;
    case4:cout<<"4 ****\n";break;
    case3:cout<<"3 ***\n";break;
    case2:cout<<"2 **\n";break;
    case1:cout<<"1 *\n";break;
    case0:cout<<"0 \n";
    }

    //Tens Position
    x-=n100s*100;
    n10s=(x-x%10)/10;
    switch(n10s){
    case9:cout<<"9 *********\n";break;
    case8:cout<<"8 ********\n";break;
    case7:cout<<"7 *******\n";break;
    case6:cout<<"6 ******\n";break;
    case5:cout<<"5 *****\n";break;
    case4:cout<<"4 ****\n";break;
    case3:cout<<"3 ***\n";break;
    case2:cout<<"2 **\n";break;
    case1:cout<<"1 *\n";break;
    case0:cout<<"0 \n";
    }

    //Ones Position
    x-=n10s*10;
    n1s=(x-x%1)/1;
    switch(n1s){
    case9:cout<<"9 *********\n";break;
    case8:cout<<"8 ********\n";break;
    case7:cout<<"7 *******\n";break;
    case6:cout<<"6 ******\n";break;
    case5:cout<<"5 *****\n";break;
    case4:cout<<"4 ****\n";break;
    case3:cout<<"3 ***\n";break;
    case2:cout<<"2 **\n";break;
    case1:cout<<"1 *\n";break;
    case0:cout<<"0 \n";break;
    }

    //Exit Stage Right!
    return0;
    }
     
  4. Jul 12, 2016 at 1:26 PM
    #2244
    RynoDyno

    RynoDyno Well-Known Member

    Joined:
    Jun 25, 2016
    Member:
    #190495
    Messages:
    209
    Vehicle:
    2016 DCSB
    somebody help lol
     
    digitaLbraVo likes this.
  5. Jul 13, 2016 at 11:52 AM
    #2245
    bongwhisperer

    bongwhisperer Well-Known Member

    Joined:
    Jun 3, 2012
    Member:
    #80029
    Messages:
    488
    Gender:
    Male
    horn that plays "la cuka racha,"

    I can help debug your "Hello world" code snippet.
     
  6. Jul 13, 2016 at 1:00 PM
    #2246
    RynoDyno

    RynoDyno Well-Known Member

    Joined:
    Jun 25, 2016
    Member:
    #190495
    Messages:
    209
    Vehicle:
    2016 DCSB
    are you very good with c++?
     
  7. Jul 13, 2016 at 1:10 PM
    #2247
    bongwhisperer

    bongwhisperer Well-Known Member

    Joined:
    Jun 3, 2012
    Member:
    #80029
    Messages:
    488
    Gender:
    Male
    horn that plays "la cuka racha,"
    Sorry, I was just trying to be a smart ass. I took a into class a year ago. I don't think I could help anyone though, I'd ask you for help most likely.
     
    RynoDyno[QUOTED] likes this.
  8. Jul 13, 2016 at 1:11 PM
    #2248
    RynoDyno

    RynoDyno Well-Known Member

    Joined:
    Jun 25, 2016
    Member:
    #190495
    Messages:
    209
    Vehicle:
    2016 DCSB
    hahaha its all good. this class is driving me nuts. lol
     
  9. Jul 13, 2016 at 1:12 PM
    #2249
    bongwhisperer

    bongwhisperer Well-Known Member

    Joined:
    Jun 3, 2012
    Member:
    #80029
    Messages:
    488
    Gender:
    Male
    horn that plays "la cuka racha,"

    Way more advanced than what I know. I need to learn to code, I should be trying to teach it to myself as we speak, but I'm a grasshopper.
     
  10. Jul 13, 2016 at 1:18 PM
    #2250
    RynoDyno

    RynoDyno Well-Known Member

    Joined:
    Jun 25, 2016
    Member:
    #190495
    Messages:
    209
    Vehicle:
    2016 DCSB
    get a Gaddis book, much easier to learn from then Savitch
     
  11. Jul 13, 2016 at 1:21 PM
    #2251
    BigDogsEatin91

    BigDogsEatin91 Member

    Joined:
    Mar 23, 2016
    Member:
    #182076
    Messages:
    17
    Gender:
    Male
    Pittsburgh
    Vehicle:
    2015 Tacoma Sport
    IT guys that drive trucks? FINALLY!
     
    digitaLbraVo likes this.
  12. Jul 13, 2016 at 1:22 PM
    #2252
    Ossaris

    Ossaris A Bad Person Doing Good Things

    Joined:
    Apr 27, 2016
    Member:
    #185437
    Messages:
    1,175
    Gender:
    Male
    First Name:
    Aliens
    SoCal
    Vehicle:
    2016 TRD OR 4x4 w/ 6112s & 5160s
    Lights for days! Sasquachified!
    I highly recommend Codecademy. It basically forces you to learn by doing. Totally free to use and has a BUNCH of different languages to figure out.
     
  13. Jul 13, 2016 at 1:22 PM
    #2253
    bongwhisperer

    bongwhisperer Well-Known Member

    Joined:
    Jun 3, 2012
    Member:
    #80029
    Messages:
    488
    Gender:
    Male
    horn that plays "la cuka racha,"
  14. Jul 13, 2016 at 1:23 PM
    #2254
    RynoDyno

    RynoDyno Well-Known Member

    Joined:
    Jun 25, 2016
    Member:
    #190495
    Messages:
    209
    Vehicle:
    2016 DCSB
  15. Jul 13, 2016 at 1:25 PM
    #2255
    bongwhisperer

    bongwhisperer Well-Known Member

    Joined:
    Jun 3, 2012
    Member:
    #80029
    Messages:
    488
    Gender:
    Male
    horn that plays "la cuka racha,"

    Thanks, what school are you at?
     
  16. Jul 13, 2016 at 1:26 PM
    #2256
    RynoDyno

    RynoDyno Well-Known Member

    Joined:
    Jun 25, 2016
    Member:
    #190495
    Messages:
    209
    Vehicle:
    2016 DCSB
    im no IT guy lol but my major is electrical engineering, so its pretty much integrated in my field. my focus is high voltage power and utilities.
     
    digitaLbraVo likes this.
  17. Jul 13, 2016 at 1:27 PM
    #2257
    RynoDyno

    RynoDyno Well-Known Member

    Joined:
    Jun 25, 2016
    Member:
    #190495
    Messages:
    209
    Vehicle:
    2016 DCSB
    im taking classes at RCC but getting ready to transfer to UCR, hopefully by next year if everything pans out
     
    Ossaris likes this.
  18. Jul 13, 2016 at 1:27 PM
    #2258
    Ossaris

    Ossaris A Bad Person Doing Good Things

    Joined:
    Apr 27, 2016
    Member:
    #185437
    Messages:
    1,175
    Gender:
    Male
    First Name:
    Aliens
    SoCal
    Vehicle:
    2016 TRD OR 4x4 w/ 6112s & 5160s
    Lights for days! Sasquachified!
    As seen by RynoDyno, there's a ton of different ways you can specialize in IT. IT is pretty generic and can vary from harware, to software, to design and CADs.
     
    RynoDyno[QUOTED] likes this.
  19. Jul 13, 2016 at 1:37 PM
    #2259
    bongwhisperer

    bongwhisperer Well-Known Member

    Joined:
    Jun 3, 2012
    Member:
    #80029
    Messages:
    488
    Gender:
    Male
    horn that plays "la cuka racha,"

    I was a finance major, switched my concentration in 2014 to cyber security after reading about all the hacks and finding my way to CSUSB's website, landed there cause I didn't have to start from square one to change. Transferred as a Business Admin with a Cyber Security concentration.
     
    RynoDyno[QUOTED] likes this.
  20. Jul 13, 2016 at 4:01 PM
    #2260
    digitaLbraVo

    digitaLbraVo Derka Derka

    Joined:
    Sep 6, 2012
    Member:
    #86398
    Messages:
    7,514
    Covered in stickers and chrome stick-ons for extra horse torques and foot powers. Icon sticker gets me tons of travel, dozens of milimeters.
    Welcome aboard, ol' chap!
    Agreed. Codecademy is great especially as a way to get yourself started, I go back and do the things I'm familiar with to see if I can fill in gaps or get a new perspective.
    :facepalm: Designers are often attached to us because they have fancy shmancy computers, they MUST be related to those guys! In reality, even your average software developer is now hipster codemonkey and hardly the old calloused-finger-tipped-mountain-dew-sucking slinger of the past.
     

Products Discussed in

To Top