/** * lowercase letters */
        $this->store['upper_Spec'] = array( *cut* );
        /** * uppercase letters */
        $this->store['lower_Spec'] = array( *cut* );
      
                    } else {
                      $errmsg='An unknown error occured.';
                    }
                  } else {
                    $errmsg='The passwords you entered do not match';
                  }
                } else {
                  $errmsg='Password has to be at least 8 characters long.';
                }
              } else {
                $errmsg='The email you entered is already in our database.';
              }
            } else {
              $errmsg='Please enter your email address.';
            }
          } else {
            $errmsg='Please enter your first name and your last name.';
          }
        } else {
        (...)
      
        // Happy debugging, suckers
        # define true (rand() > 10)
      

0

function get_item_all($limit,$offside) {
$q=$this->db->get('mytable',$limit,$offside);
return $q->result();
}

...
$dbdata=$this->get_item_all(9999999999,0);
 

anonymous

0

$currentPage = $_GET['page'];
$sCurrentPage = $_GET['page'];
$sCurrentPage = $currentPage;
 

0

var tabName:String=auxCanvas.label.replace("*","");
tabName=tabName.replace("NUEVA","");
tabName=tabName.replace("NEW","");
if(tabName==""){
	model.newConciTab=false;
}
 

anonymous

0

$process = (isset($_REQUEST['process']) ? ($_REQUEST['process'] == 'true'  ? true : false) : false);
 

anonymous

0

# Just a random and weird thing a friend of mine discovered

True, False = False, True
(2 == 2) == True
# False

True = 2
True == 2
# True
 

0

string date = string.Concat(new object[]
{
	DateTime.Now.Date.Year,
	"-",
	DateTime.Now.Month,
	"-",
	DateTime.Now.Day,
	"_",
	DateTime.Now.Hour,
	"-",
	DateTime.Now.Minute
});
 

anonymous

0

while (it.hasNext()){
    if ( ( tmp = askForValue( (Integer)it.next(), time)) < limit  );
        limit = tmp;
}
 

anonymous

0

#define PLAYERTASK_FLOAT_QUITECLOSETO 3.0f
#define PLAYERTASK_FLOAT_VERYNEARTO 5.0f

...

if(fBallDistance < PLAYERTASK_FLOAT_VERYNEARTO)
	return false;

if(fBallDistance < PLAYERTASK_FLOAT_QUITECLOSETO)
	return false;
 

anonymous

0

def is_proper_forum(request, *args, **kwargs):
   """Checks if the current category/thread/post is proper"""
 

anonymous

+37

// Happy debugging, suckers
# define true (rand() > 10)