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 6, 2016 at 4:02 PM
    #2241
    The_Hodge

    The_Hodge Volunteer Moderator

    Joined:
    Apr 27, 2007
    Member:
    #1432
    Messages:
    31,629
    Gender:
    Male
    SC
    Vehicle:
    15 Lariat Sport 5.0L
    Seeing the third gen section forced me to get a Ford...
    Haven't taken it, but damn SANS prices
     
  2. Jul 7, 2016 at 8:32 AM
    #2242
    bongwhisperer

    bongwhisperer Well-Known Member

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

    I know, I guess it must be in high demand if the can charge those prices. :/
     
  3. Jul 7, 2016 at 8:35 AM
    #2243
    The_Hodge

    The_Hodge Volunteer Moderator

    Joined:
    Apr 27, 2007
    Member:
    #1432
    Messages:
    31,629
    Gender:
    Male
    SC
    Vehicle:
    15 Lariat Sport 5.0L
    Seeing the third gen section forced me to get a Ford...
    i have never witnessed a job description requiring a SANS cert and only a SANS cert. usually they take other equivalents that are cheaper.
     
    digitaLbraVo likes this.
  4. Jul 7, 2016 at 8:41 AM
    #2244
    bongwhisperer

    bongwhisperer Well-Known Member

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

    I was actually reading a few job postings and they had mentioned GIAC certifications, so out of curiosity I googled it. I've seen it on a few job postings, but I do agree there are probably other certifications as well.

    I think the 5600 price tag is for the classes offered, not for taking the test.
     
  5. Jul 7, 2016 at 8:44 AM
    #2245
    The_Hodge

    The_Hodge Volunteer Moderator

    Joined:
    Apr 27, 2007
    Member:
    #1432
    Messages:
    31,629
    Gender:
    Male
    SC
    Vehicle:
    15 Lariat Sport 5.0L
    Seeing the third gen section forced me to get a Ford...

    yeah...the certification test itself is only $1150 it looks like.
     
    digitaLbraVo likes this.
  6. Jul 7, 2016 at 8:45 AM
    #2246
    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.
     
  7. Jul 7, 2016 at 8:46 AM
    #2247
    The_Hodge

    The_Hodge Volunteer Moderator

    Joined:
    Apr 27, 2007
    Member:
    #1432
    Messages:
    31,629
    Gender:
    Male
    SC
    Vehicle:
    15 Lariat Sport 5.0L
    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.
     
  8. Jul 12, 2016 at 1:26 PM
    #2248
    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;
    }
     
  9. Jul 12, 2016 at 1:26 PM
    #2249
    RynoDyno

    RynoDyno Well-Known Member

    Joined:
    Jun 25, 2016
    Member:
    #190495
    Messages:
    209
    Vehicle:
    2016 DCSB
    somebody help lol
     
    digitaLbraVo likes this.
  10. Jul 13, 2016 at 11:52 AM
    #2250
    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.
     
  11. Jul 13, 2016 at 1:00 PM
    #2251
    RynoDyno

    RynoDyno Well-Known Member

    Joined:
    Jun 25, 2016
    Member:
    #190495
    Messages:
    209
    Vehicle:
    2016 DCSB
    are you very good with c++?
     
  12. Jul 13, 2016 at 1:10 PM
    #2252
    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.
  13. Jul 13, 2016 at 1:11 PM
    #2253
    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
     
  14. Jul 13, 2016 at 1:12 PM
    #2254
    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.
     
  15. Jul 13, 2016 at 1:18 PM
    #2255
    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
     
  16. Jul 13, 2016 at 1:21 PM
    #2256
    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.
  17. Jul 13, 2016 at 1:22 PM
    #2257
    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.
     
  18. Jul 13, 2016 at 1:22 PM
    #2258
    bongwhisperer

    bongwhisperer Well-Known Member

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

    RynoDyno Well-Known Member

    Joined:
    Jun 25, 2016
    Member:
    #190495
    Messages:
    209
    Vehicle:
    2016 DCSB
  20. Jul 13, 2016 at 1:25 PM
    #2260
    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?
     

Products Discussed in

To Top