• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Time to play....Name that (Programming) Language

Alkesh

Golden Member

libname atot=u:\Anandtech\atot;

proc sort atot.users;
by 'PostCount';
run;

data = atot.users
nodupkey;
if 'PostCount' > 10000;
then = 'Lifer';
run;

 
Originally posted by: diegoalcatraz
Originally posted by: Alkesh
Damn you're good. Winnar!

Googled the keywords (proc, nodupkey). I've never actually heard of or used the language before.

And this is why as soon as they can hook a search engine into our brains, all kids will start passing classes with A's
 
for ($i=0; $i<=(count($titles)-1); $i++) {
$_xml .= "<image>\r\n";
$_xml .= "<title>" . $titles[$i] . "</title>\r\n";
$_xml .= "<author>" . $authors[$i] . "</author>\r\n";
$_xml .= "<description>" . $descriptions[$i] . "</description>\r\n";
$_xml .= "<date>" . $submission_date[$i] . "</date>\r\n";
$_xml .= "<path>" . $imgpath[$i] . "</path>\r\n";
$_xml .= "<thumb>" . $thumbpath[$i] . "</thumb>\r\n";
$_xml .= "</image>\r\n";
}
 
Originally posted by: poopygood
for ($i=0; $i<=(count($titles)-1); $i++) {
$_xml .= "<image>\r\n";
$_xml .= "<title>" . $titles[$i] . "</title>\r\n";
$_xml .= "<author>" . $authors[$i] . "</author>\r\n";
$_xml .= "<description>" . $descriptions[$i] . "</description>\r\n";
$_xml .= "<date>" . $submission_date[$i] . "</date>\r\n";
$_xml .= "<path>" . $imgpath[$i] . "</path>\r\n";
$_xml .= "<thumb>" . $thumbpath[$i] . "</thumb>\r\n";
$_xml .= "</image>\r\n";
}

PHP?
 
Back
Top