Page 1458 of 1782 FirstFirst ... 4589581358140814481455145614571458145914601461146815081558 ... LastLast
Results 58,281 to 58,320 of 71256

Thread: Post Race!

  1. #58281
    Lively Member homer13j's Avatar
    Join Date
    Nov 2003
    Location
    Ohio Turnpike Exit 173
    Posts
    80

    Re: Post Race!

    Quote Originally Posted by dday9 View Post
    /* */ is CSS
    And C, C++, C#, etc...
    "Bones heal. Chicks dig scars. Pain is temporary. Glory is forever." - Robert Craig "Evel" Knievel
    “Leave me alone, I know what I’m doing.” - Kimi Raikkonen

  2. #58282
    Super Moderator dday9's Avatar
    Join Date
    Mar 2011
    Posts
    12,371

    Re: Post Race!

    I thought that C++ and C# were //
    "Code is like humor. When you have to explain it, it is bad." - Cory House
    VbLessons | HtmlLessons | CssLessons | Code Tags | Sword of Fury - Jameram

  3. #58283
    Super Moderator dday9's Avatar
    Join Date
    Mar 2011
    Posts
    12,371

    Re: Post Race!

    <!-- is there any body there -->
    "Code is like humor. When you have to explain it, it is bad." - Cory House
    VbLessons | HtmlLessons | CssLessons | Code Tags | Sword of Fury - Jameram

  4. #58284
    Super Moderator Shaggy Hiker's Avatar
    Join Date
    Aug 2002
    Location
    Idaho
    Posts
    40,104

    Re: Post Race!

    C started out with /* */. I believe it was C++ that added //. Naturally, the difference is between a single line comment and a block comment. It would be kind of nice if VB would add a block comment, but they haven't, so whatever.
    My usual boring signature: Nothing

  5. #58285
    WiggleWiggle dclamp's Avatar
    Join Date
    Aug 2006
    Posts
    3,527

    Re: Post Race!

    Quote Originally Posted by homer13j View Post
    And C, C++, C#, etc...
    and PHP...

  6. #58286
    Super Moderator dday9's Avatar
    Join Date
    Mar 2011
    Posts
    12,371

    Re: Post Race!

    I always read PCP when I see PHP.
    "Code is like humor. When you have to explain it, it is bad." - Cory House
    VbLessons | HtmlLessons | CssLessons | Code Tags | Sword of Fury - Jameram

  7. #58287
    Super Moderator dday9's Avatar
    Join Date
    Mar 2011
    Posts
    12,371

    Re: Post Race!

    Wishful thinking I suppose.
    "Code is like humor. When you have to explain it, it is bad." - Cory House
    VbLessons | HtmlLessons | CssLessons | Code Tags | Sword of Fury - Jameram

  8. #58288
    Super Moderator Shaggy Hiker's Avatar
    Join Date
    Aug 2002
    Location
    Idaho
    Posts
    40,104

    Re: Post Race!

    That's how I read it, too. I'm afraid to code in that language unless I get tested.
    My usual boring signature: Nothing

  9. #58289
    WiggleWiggle dclamp's Avatar
    Join Date
    Aug 2006
    Posts
    3,527

    Re: Post Race!

    Interesting that the [php][/php] and [highlight=php][/highlight] format differently...

    php Code:
    1. if ("PHP" == "PCP") {
    2.      echo "You're on the drugs";
    3. } else {
    4.      echo "You need the drugs";
    5. }

    PHP Code:

    if ("PHP" == "PCP") {
         echo 
    "You're on the drugs";
    } else {
         echo 
    "You need the drugs";


  10. #58290
    Super Moderator dday9's Avatar
    Join Date
    Mar 2011
    Posts
    12,371

    Re: Post Race!

    I haven't really done any PHP work, but that looks very similar to JavaScript.
    "Code is like humor. When you have to explain it, it is bad." - Cory House
    VbLessons | HtmlLessons | CssLessons | Code Tags | Sword of Fury - Jameram

  11. #58291
    WiggleWiggle dclamp's Avatar
    Join Date
    Aug 2006
    Posts
    3,527

    Re: Post Race!

    They are both based on C...

  12. #58292
    WiggleWiggle dclamp's Avatar
    Join Date
    Aug 2006
    Posts
    3,527

    Re: Post Race!

    My Arduino is programmed in C and its all the same looking.

  13. #58293
    WiggleWiggle dclamp's Avatar
    Join Date
    Aug 2006
    Posts
    3,527

    Re: Post Race!

    PHP Code:
    $something tacos;

    if (
    $something == "tacos") {
         
    // do something

    javascript Code:
    1. var something = "tacos";
    2.  
    3. if (something == "tacos") {
    4.      // do something
    5. }

    Arduino
    c Code:
    1. String something = "tacos";
    2.  
    3. if (something == "tacos") {
    4.      // do something
    5. }

  14. #58294
    Super Moderator dday9's Avatar
    Join Date
    Mar 2011
    Posts
    12,371

    Re: Post Race!

    I've edited your code. For some reason only PHP and HTML have their own BB code tags.
    "Code is like humor. When you have to explain it, it is bad." - Cory House
    VbLessons | HtmlLessons | CssLessons | Code Tags | Sword of Fury - Jameram

  15. #58295
    Super Moderator dday9's Avatar
    Join Date
    Mar 2011
    Posts
    12,371

    Re: Post Race!

    One thing I never understood, and this goes for older versions of BASIC too, is why in the world would you want to use symbols to represent type names. Like in your example you have:
    PHP Code:
    $something tacos
    Why does $ represent a string? It makes no sense to me.
    "Code is like humor. When you have to explain it, it is bad." - Cory House
    VbLessons | HtmlLessons | CssLessons | Code Tags | Sword of Fury - Jameram

  16. #58296
    WiggleWiggle dclamp's Avatar
    Join Date
    Aug 2006
    Posts
    3,527

    Re: Post Race!

    I was editing it too. As soon as it posted i fixed it. We probably edited it at the same time.

  17. #58297
    WiggleWiggle dclamp's Avatar
    Join Date
    Aug 2006
    Posts
    3,527

    Re: Post Race!

    Quote Originally Posted by dday9 View Post
    One thing I never understood, and this goes for older versions of BASIC too, is why in the world would you want to use symbols to represent type names. Like in your example you have:
    PHP Code:
    $something tacos
    Why does $ represent a string? It makes no sense to me.
    No clue...

  18. #58298
    WiggleWiggle dclamp's Avatar
    Join Date
    Aug 2006
    Posts
    3,527

    Re: Post Race!

    Anyone want to give me $600,000?

  19. #58299
    Super Moderator dday9's Avatar
    Join Date
    Mar 2011
    Posts
    12,371

    Re: Post Race!

    I would love to give you $600,000. The only issue is I don't have any money to give away(well $2.77, but that's there to keep me from overdrafting until Friday).
    "Code is like humor. When you have to explain it, it is bad." - Cory House
    VbLessons | HtmlLessons | CssLessons | Code Tags | Sword of Fury - Jameram

  20. #58300
    Super Moderator Shaggy Hiker's Avatar
    Join Date
    Aug 2002
    Location
    Idaho
    Posts
    40,104

    Re: Post Race!

    $ was used as a string from early in BASIC. It still seems like a stupid idea, but it is certainly historic.
    My usual boring signature: Nothing

  21. #58301
    Super Moderator dday9's Avatar
    Join Date
    Mar 2011
    Posts
    12,371

    Re: Post Race!

    Well y'all I have some good news and some bad news.
    "Code is like humor. When you have to explain it, it is bad." - Cory House
    VbLessons | HtmlLessons | CssLessons | Code Tags | Sword of Fury - Jameram

  22. #58302
    Super Moderator dday9's Avatar
    Join Date
    Mar 2011
    Posts
    12,371

    Re: Post Race!

    The good news is... I've been offered a programming job for $20 an hour even with my lack of experience and lack of education.
    "Code is like humor. When you have to explain it, it is bad." - Cory House
    VbLessons | HtmlLessons | CssLessons | Code Tags | Sword of Fury - Jameram

  23. #58303
    Super Moderator dday9's Avatar
    Join Date
    Mar 2011
    Posts
    12,371

    Re: Post Race!

    This is $6 an hour more than what I'm currently making.
    "Code is like humor. When you have to explain it, it is bad." - Cory House
    VbLessons | HtmlLessons | CssLessons | Code Tags | Sword of Fury - Jameram

  24. #58304
    Super Moderator dday9's Avatar
    Join Date
    Mar 2011
    Posts
    12,371

    Re: Post Race!

    However, the bad news is that the job is an hour away and I cannot finish my 8:30 - 5:30 job, then finish my night classes for college, and then drive an hour to work the programming job.
    "Code is like humor. When you have to explain it, it is bad." - Cory House
    VbLessons | HtmlLessons | CssLessons | Code Tags | Sword of Fury - Jameram

  25. #58305
    Super Moderator dday9's Avatar
    Join Date
    Mar 2011
    Posts
    12,371

    Re: Post Race!

    It just puts too much of a strain on my wife.
    "Code is like humor. When you have to explain it, it is bad." - Cory House
    VbLessons | HtmlLessons | CssLessons | Code Tags | Sword of Fury - Jameram

  26. #58306
    Super Moderator dday9's Avatar
    Join Date
    Mar 2011
    Posts
    12,371

    Re: Post Race!

    So I'm forced to tell the employer that I'll have to decline his offer.
    "Code is like humor. When you have to explain it, it is bad." - Cory House
    VbLessons | HtmlLessons | CssLessons | Code Tags | Sword of Fury - Jameram

  27. #58307
    WiggleWiggle dclamp's Avatar
    Join Date
    Aug 2006
    Posts
    3,527

    Re: Post Race!

    Telecommute?

  28. #58308
    Super Moderator dday9's Avatar
    Join Date
    Mar 2011
    Posts
    12,371

    Re: Post Race!

    The whole reason why I approached him was because I figured that I could do most of it from my home and either Skype or get on a Teleconfrence when they had meetings. But he said that a lot of their databases contain sensitive information and would not allow for me to work on it from home.
    "Code is like humor. When you have to explain it, it is bad." - Cory House
    VbLessons | HtmlLessons | CssLessons | Code Tags | Sword of Fury - Jameram

  29. #58309
    WiggleWiggle dclamp's Avatar
    Join Date
    Aug 2006
    Posts
    3,527

    Re: Post Race!

    ******.

  30. #58310
    WiggleWiggle dclamp's Avatar
    Join Date
    Aug 2006
    Posts
    3,527

    Re: Post Race!

    Wow. Didnt know that was a bad word...

  31. #58311
    Super Moderator dday9's Avatar
    Join Date
    Mar 2011
    Posts
    12,371

    Re: Post Race!

    Spell it with underscores after each letter.
    "Code is like humor. When you have to explain it, it is bad." - Cory House
    VbLessons | HtmlLessons | CssLessons | Code Tags | Sword of Fury - Jameram

  32. #58312
    WiggleWiggle dclamp's Avatar
    Join Date
    Aug 2006
    Posts
    3,527

    Re: Post Race!

    Can you not see it either?

    w_a_n_k_e_r

  33. #58313
    Super Moderator dday9's Avatar
    Join Date
    Mar 2011
    Posts
    12,371

    Re: Post Race!

    Yeah, that's a bad word.
    "Code is like humor. When you have to explain it, it is bad." - Cory House
    VbLessons | HtmlLessons | CssLessons | Code Tags | Sword of Fury - Jameram

  34. #58314
    WiggleWiggle dclamp's Avatar
    Join Date
    Aug 2006
    Posts
    3,527

    Re: Post Race!

    Never use that word. Probably because I am American...

  35. #58315
    Super Moderator dday9's Avatar
    Join Date
    Mar 2011
    Posts
    12,371

    Re: Post Race!

    How many Mexican's does it take to put up a roof?
    "Code is like humor. When you have to explain it, it is bad." - Cory House
    VbLessons | HtmlLessons | CssLessons | Code Tags | Sword of Fury - Jameram

  36. #58316
    Super Moderator dday9's Avatar
    Join Date
    Mar 2011
    Posts
    12,371

    Re: Post Race!

    Just Juan!
    "Code is like humor. When you have to explain it, it is bad." - Cory House
    VbLessons | HtmlLessons | CssLessons | Code Tags | Sword of Fury - Jameram

  37. #58317
    Super Moderator dday9's Avatar
    Join Date
    Mar 2011
    Posts
    12,371

    Re: Post Race!

    I guess it takes Juan to know Juan.
    "Code is like humor. When you have to explain it, it is bad." - Cory House
    VbLessons | HtmlLessons | CssLessons | Code Tags | Sword of Fury - Jameram

  38. #58318
    WiggleWiggle dclamp's Avatar
    Join Date
    Aug 2006
    Posts
    3,527

    Re: Post Race!

    Jesus is going to cater my Christmas party next week...

  39. #58319
    Super Moderator dday9's Avatar
    Join Date
    Mar 2011
    Posts
    12,371

    Re: Post Race!

    Did you know that after singing the national anthem, Jose yells "I can see!"
    "Code is like humor. When you have to explain it, it is bad." - Cory House
    VbLessons | HtmlLessons | CssLessons | Code Tags | Sword of Fury - Jameram

  40. #58320
    Frenzied Member Gruff's Avatar
    Join Date
    Jan 2014
    Location
    Scappoose Oregon USA
    Posts
    1,293

    Re: Post Race!

    Left cheek or right?
    Burn the land and boil the sea
    You can't take the sky from me


    ~T

Page 1458 of 1782 FirstFirst ... 4589581358140814481455145614571458145914601461146815081558 ... LastLast

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width