Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
J

jcmaida

@jcmaida
About
Posts
8
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Suggestions for graphing software...
    J jcmaida

    convert non-linear to linear via log base 10, base 2, etc.

    The Lounge data-structures help

  • Programming Lesson of the Day
    J jcmaida

    How this difference can hurt. m is length of string = 3; *b is first character in string say "xyz" while( *b & m-- ) { b++; } is not the same as while( *b && m-- ) {b++;} because while( *b & m-- ) { b++; } fails when *b is null tested AND m is decremented at the same time ergo m is off by 1 while( *b && m-- ) { b++; } fails when *b is null tested. m is not decremented because of the short circuit test of *b stops the evaluation ergo m has the correct character count so yes & and && are not the same so be careful of the logic when using C

    The Lounge c++ question

  • How To Use Session Variables
    J jcmaida

    There are millions of write only variables in code is use daily. I bet you have some in your own code right now. For the database problem, someone intended to use the variable, but either forgot it was there or it was unknown to next programmer in line.

    The Weird and The Wonderful database tutorial

  • how many times in your life have you implemented recursive methods
    J jcmaida

    In compiler design, recursion is quite useful. It can get overly complicated though. For example: subroutine A and subroutine B are both recursive and call each other. You can see how complicated it can get tracing the execution path. Really not as bad it seems, but you better have your recursion hat on.

    The Lounge

  • Some info about Linux Distro
    J jcmaida

    Tom, Where did you integer signature quote come from?

    The Lounge linux question

  • Straw Poll: Return True or False?
    J jcmaida

    5. return False This provides more information than TRUE. You may need the information that the item is not there. This is true whether the delete function does the search itself or it's done outside the function.

    The Lounge question csharp c++ asp-net com

  • Firefox 2.0 Extensions Backup
    J jcmaida

    Have you tried backup/restore of the Firefox folder in documents and settings under your name and application data? Worked for me.

    The Lounge help announcement learning

  • Name Conventions
    J jcmaida

    Nilesh, Your comments about naming conventions are exactly correct. Good words.:) Maida

    The Lounge question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups